summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-content/quotes-slot-scoping-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-content/quotes-slot-scoping-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-content/quotes-slot-scoping-ref.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-content/quotes-slot-scoping-ref.html b/testing/web-platform/tests/css/css-content/quotes-slot-scoping-ref.html
new file mode 100644
index 0000000000..e3e907cba5
--- /dev/null
+++ b/testing/web-platform/tests/css/css-content/quotes-slot-scoping-ref.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Quote scope Shadow DOM and SLOT</title>
+ <link rel="author" title="Martin Robinson" href="mailto:mrobinson@igalia.com">
+ <link rel="help" href="https://www.w3.org/TR/css-content-3/#quote-values">
+ <style>
+ q {
+ quotes: '1''1''2''2''3''3';
+ }
+ </style>
+ </head>
+ <body>
+ <q>
+ <q>Quote</q>
+ </q>
+ </body>
+</html>