Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-counter-styles/cssom/cssom-pad-setter-invalid.html
<!DOCTYPE html> <title>CSSCounterStyleRule pad setter with invalid values</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-pad-setter-ref.html"> <style id="sheet"> @counter-style foo { system: extends decimal; pad: 3 '0'; } </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]; // Invalid values should be ignored foo_rule.pad = '-1 "0"'; foo_rule.pad = '3'; foo_rule.pad = '3 "X" "Y"'; </script>
/css/css-counter-styles/cssom/cssom-pad-setter-ref.html
<!DOCTYPE html> <title>CSSCounterStyleRule pad setter</title> <ol> <div>001.</div> <div>002.</div> <div>003.</div> </ol>