summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-pseudo/marker-variable-computed-style.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-pseudo/marker-variable-computed-style.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-pseudo/marker-variable-computed-style.html')
-rw-r--r--testing/web-platform/tests/css/css-pseudo/marker-variable-computed-style.html44
1 files changed, 44 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-pseudo/marker-variable-computed-style.html b/testing/web-platform/tests/css/css-pseudo/marker-variable-computed-style.html
new file mode 100644
index 0000000000..c706edc02f
--- /dev/null
+++ b/testing/web-platform/tests/css/css-pseudo/marker-variable-computed-style.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+ <meta charset="UTF-8" />
+ <link rel="author" title="Karl Dubost" href="https://github.com/karlcow" />
+ <link rel="help" href="https://drafts.csswg.org/css-pseudo/#marker-pseudo" />
+ <link rel="help" href="https://drafts.csswg.org/css-variables/#defining-variables" />
+ <script src="/resources/testharness.js"></script>
+ <script src="/resources/testharnessreport.js"></script>
+ <title>::marker with variables</title>
+ <style>
+ .firstTest::marker {
+ --alpha: 0.75;
+ color: rgba(0 128 0 / var(--alpha));
+ }
+
+ .secondTest::marker {
+ --color: rgb(0 128 0);
+ color: var(--color);
+ }
+ </style>
+</head>
+
+<body>
+ <ul>
+ <li class="firstTest">Item 1</li>
+ <li class="secondTest">Item 2</li>
+ </ul>
+ <script>
+ test(() => {
+ let firstTest = document.querySelector('.firstTest');
+ let markerStyle = getComputedStyle(firstTest, '::marker');
+ assert_equals(markerStyle.color, "rgba(0, 128, 0, 0.75)", "color is green with 0.75 opacity.");
+ }, `getComputedStyle() for opacity defined by variable in ::marker`);
+ test(() => {
+ let secondTest = document.querySelector('.secondTest');
+ let markerStyle = getComputedStyle(secondTest, '::marker');
+ assert_equals(markerStyle.color, "rgb(0, 128, 0)", "color is green.");
+ }, `getComputedStyle() for color defined by variable in ::marker`);
+ </script>
+</body>
+
+</html> \ No newline at end of file