summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/markup/test/doc_markup_anonymous.html
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--devtools/client/inspector/markup/test/doc_markup_anonymous.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/devtools/client/inspector/markup/test/doc_markup_anonymous.html b/devtools/client/inspector/markup/test/doc_markup_anonymous.html
new file mode 100644
index 0000000000..1be4594030
--- /dev/null
+++ b/devtools/client/inspector/markup/test/doc_markup_anonymous.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <title>Anonymous content test</title>
+ <style type="text/css">
+ #pseudo::before {
+ content: "before";
+ }
+ #pseudo::after {
+ content: "after";
+ }
+ #shadow::before {
+ content: "Testing ::before on a shadow host";
+ }
+ </style>
+</head>
+<body>
+ <div id="pseudo"><span>middle</span></div>
+
+ <div id="shadow">light dom</div>
+
+ <div id="native"><input type="file"></div>
+
+ <script>
+ "use strict";
+ var host = document.querySelector("#shadow");
+ var root = host.attachShadow({ mode: "open" });
+ root.innerHTML = "<h3>Shadow DOM</h3><select multiple></select>";
+ </script>
+</body>
+</html>