summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-variables/variable-substitution-shadow-properties.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-variables/variable-substitution-shadow-properties.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-variables/variable-substitution-shadow-properties.html')
-rw-r--r--testing/web-platform/tests/css/css-variables/variable-substitution-shadow-properties.html57
1 files changed, 57 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-variables/variable-substitution-shadow-properties.html b/testing/web-platform/tests/css/css-variables/variable-substitution-shadow-properties.html
new file mode 100644
index 0000000000..f57afa2207
--- /dev/null
+++ b/testing/web-platform/tests/css/css-variables/variable-substitution-shadow-properties.html
@@ -0,0 +1,57 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>test shadow property variable substitution</title>
+
+ <meta rel="author" title="Kevin Babbitt">
+ <meta rel="author" title="Greg Whitworth">
+ <link rel="author" title="Microsoft Corporation" href="http://microsoft.com" />
+ <link rel="help" href="http://www.w3.org/TR/css-variables-1/#defining-variables">
+
+ <script src="/resources/testharness.js"></script>
+ <script src="/resources/testharnessreport.js"></script>
+ <style>
+ .testArea {
+ width: 100px;
+ height: 100px;
+ display: inline-block;
+ }
+ </style>
+</head>
+<body>
+ <div id="log"></div>
+ <div class="testArea" id="box-shadow" style="--foo: rgb(0, 128, 0); box-shadow: 1px 1px 1px 1px var(--foo);">box-shadow</div>
+ <div class="testArea" id="box-shadow-with-comment" style="--foo: 1px /* hello */ rgb(0, 128, 0); box-shadow: 1px 1px 1px var(--foo);">box-shadow</div>
+ <div class="testArea" id="text-shadow" style="--foo: rgb(0, 128, 0); text-shadow: 1px 1px 1px var(--foo);">text-shadow</div>
+ <script type="text/javascript">
+ "use strict";
+
+ let templates = [
+ {
+ testName:"box-shadow",
+ property:"box-shadow",
+ expectedValue:"rgb(0, 128, 0) 1px 1px 1px 1px",
+ },
+ {
+ testName:"box-shadow-with-comment",
+ property:"box-shadow",
+ expectedValue:"rgb(0, 128, 0) 1px 1px 1px 1px",
+ },
+ {
+ testName:"text-shadow",
+ property:"text-shadow",
+ expectedValue:"rgb(0, 128, 0) 1px 1px 1px",
+ },
+ ];
+
+ templates.forEach(function (template) {
+ test( function () {
+ let target = document.getElementById(template.testName);
+ let computedStyle = window.getComputedStyle(target);
+ let value = computedStyle.getPropertyValue(template.property);
+ assert_equals(value, template.expectedValue, "Expected Value should match actual value");
+ }, template.testName);
+ });
+ </script>
+</body>
+</html>