summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-lists/change-list-style-type-001.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/css/css-lists/change-list-style-type-001.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-lists/change-list-style-type-001.html')
-rw-r--r--testing/web-platform/tests/css/css-lists/change-list-style-type-001.html72
1 files changed, 72 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-lists/change-list-style-type-001.html b/testing/web-platform/tests/css/css-lists/change-list-style-type-001.html
new file mode 100644
index 0000000000..9eacdd7092
--- /dev/null
+++ b/testing/web-platform/tests/css/css-lists/change-list-style-type-001.html
@@ -0,0 +1,72 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>CSS Lists: test the change of list-style-type</title>
+<link rel="match" href="change-list-style-type-001-ref.html">
+<link rel=help href="https://www.w3.org/TR/CSS22/generate.html#lists">
+<link rel=help href="https://bugs.chromium.org/p/chromium/issues/detail?id=966750">
+<style type="text/css">
+.inside {
+ list-style-position: inside;
+}
+
+.none2symbol {
+ list-style-type: none;
+}
+
+.symbol2none {
+ list-style-type: square;
+}
+
+.symbol2symbol {
+ list-style-type: disc;
+}
+
+.symbol2ordinal {
+ list-style-type: disc;
+}
+
+.ordinal2ordinal {
+ list-style-type: upper-roman;
+}
+</style>
+
+<ul class="inside"><li class="none2symbol">inside: none to square</li></ul>
+<ul><li class="none2symbol">outside: none to square</li></ul>
+
+<ul class="inside"><li class="symbol2none">inside: square to none</li></ul>
+<ul><li class="symbol2none">outside: square to none</li></ul>
+
+<ul class="inside"><li class="symbol2symbol">inside: disc to square</li></ul>
+<ul><li class="symbol2symbol">outside: disc to square</li></ul>
+
+<ul class="inside"><li class="symbol2ordinal">inside: disc to upper-roman</li></ul>
+<ul><li class="symbol2ordinal">outside: disc to upper-roman</li></ul>
+
+<ul class="inside"><li class="ordinal2ordinal">inside: upper-roman to decimal</li></ul>
+<ul><li class="ordinal2ordinal">outside: upper-roman to decimal</li></ul>
+
+<script>
+document.body.offsetLeft;
+</script>
+
+<style type="text/css">
+.none2symbol {
+ list-style-type: square;
+}
+
+.symbol2none {
+ list-style-type: none;
+}
+
+.symbol2symbol {
+ list-style-type: square;
+}
+
+.symbol2ordinal {
+ list-style-type: upper-roman;
+}
+
+.ordinal2ordinal {
+ list-style-type: decimal;
+}
+</style>