blob: cd9f66d23860120cab626a3be309d50839201704 [file] [log] [blame]
<!DOCTYPE html>
<title>CSSCounterStyleRule symbols setter</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-symbols-setter-ref.html">
<style id="sheet">
@counter-style foo {
system: cyclic;
symbols: X Y Z;
}
</style>
<ol style="list-style-type: foo; list-style-position: inside">
<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.symbols = "A B C";
</script>