Status: FAIL | Duration: 9ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-counter-styles/cssom/cssom-negative-setter.html
<!DOCTYPE html> <title>CSSCounterStyleRule negative 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-negative-setter-ref.html"> <style id="sheet"> @counter-style foo { system: extends decimal; } </style> <ol style="list-style-type: foo; list-style-position: inside" start="-3"> <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.negative = '"(" ")"'; </script>
/css/css-counter-styles/cssom/cssom-negative-setter-ref.html
<!DOCTYPE html> <title>CSSCounterStyleRule negative setter</title> <ol> <div>(3).</div> <div>(2).</div> <div>(1).</div> </ol>