summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-properties-values-api/registered-property-change-style-002-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-properties-values-api/registered-property-change-style-002-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-properties-values-api/registered-property-change-style-002-ref.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-properties-values-api/registered-property-change-style-002-ref.html b/testing/web-platform/tests/css/css-properties-values-api/registered-property-change-style-002-ref.html
new file mode 100644
index 0000000000..758e769d78
--- /dev/null
+++ b/testing/web-platform/tests/css/css-properties-values-api/registered-property-change-style-002-ref.html
@@ -0,0 +1,25 @@
+<!DOCTYPE HTML>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <title>Invalidation after CSS.registerProperty (reference)</title>
+ <style>
+ .failure {
+ background: pink;
+ }
+ #visibility {
+ visibility: hidden;
+ }
+ #display {
+ display: none;
+ }
+ </style>
+ </head>
+ <body>
+ <p>This test PASS if you see no red in the list below.</p>
+ <ul>
+ <li>visibility <span id="visibility" class="failure">FAIL</span></li>
+ <li>display <span id="display" class="failure">FAIL</span></li>
+ </ul>
+ </body>
+</html>