blob: a616a60e0b08759e8c07c01f643cd0f5e4005731 [file] [log] [blame]
<!DOCTYPE html>
<title>CSSCounterStyleRule system setter with 'fixed' system</title>
<link rel="help" href="https://www.w3.org/TR/css-counter-styles-3/#the-csscounterstylerule-interface">
<link rel="author" href="mailto:xiaochengh@chromium.org">
<link rel="match" href="cssom-system-setter-ref.html">
<style id="sheet">
@counter-style foo {
system: fixed;
symbols: A B C;
}
</style>
<ol style="list-style-type: foo; list-style-position: inside" start=0>
<li></li>
<li></li>
<li></li>
</ol>
<script>
// Force layout update before changing the rule
document.body.offsetWidth;
const sheet = document.getElementById('sheet');
const foo_rule = sheet.sheet.rules[0];
foo_rule.system = "fixed 0";
</script>