diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /testing/web-platform/tests/css/css-counter-styles/cssom/cssom-name-setter.html | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-counter-styles/cssom/cssom-name-setter.html')
-rw-r--r-- | testing/web-platform/tests/css/css-counter-styles/cssom/cssom-name-setter.html | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-counter-styles/cssom/cssom-name-setter.html b/testing/web-platform/tests/css/css-counter-styles/cssom/cssom-name-setter.html new file mode 100644 index 0000000000..4cb926dd12 --- /dev/null +++ b/testing/web-platform/tests/css/css-counter-styles/cssom/cssom-name-setter.html @@ -0,0 +1,43 @@ +<!DOCTYPE html> +<title>CSSCounterStyleRule name 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-name-setter-ref.html"> +<style id="sheet"> +@counter-style foo { + system: fixed; + symbols: A B C; +} + +@counter-style bar { + system: fixed; + symbols: '1' '2' '3'; +} + +@counter-style foo { + system: fixed; + symbols: X Y Z; +} +</style> + +<ol style="list-style-type: foo; list-style-position: inside"> + <li></li> + <li></li> + <li></li> +</ol> + +<ol style="list-style-type: bar; list-style-position: inside"> + <li></li> + <li></li> + <li></li> +</ol> + +<script> +// Force layout update before changing the rule +document.body.offsetWidth; + +// Change the last counter style name from 'foo' to 'bar' +const sheet = document.getElementById('sheet'); +const rule = sheet.sheet.rules[2]; +rule.name = 'bar'; +</script> |