summaryrefslogtreecommitdiffstats
path: root/layout/reftests/usercss/usercss-moz-document.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/usercss/usercss-moz-document.html')
-rw-r--r--layout/reftests/usercss/usercss-moz-document.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/layout/reftests/usercss/usercss-moz-document.html b/layout/reftests/usercss/usercss-moz-document.html
new file mode 100644
index 0000000000..c57c6db02d
--- /dev/null
+++ b/layout/reftests/usercss/usercss-moz-document.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+<head>
+<style>
+p {
+ background-color: red;
+}
+.reftest-xdomain {
+ background: lime;
+}
+</style>
+</head>
+<body>
+<p class="reftest-domain">@-moz-document rules should be applied.</p>
+<p class="reftest-xdomain">@-moz-document rules should not be applied.</p>
+</body>
+</html>