summaryrefslogtreecommitdiffstats
path: root/layout/reftests/generated-content/dynamic-attr-01.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/generated-content/dynamic-attr-01.html')
-rw-r--r--layout/reftests/generated-content/dynamic-attr-01.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/layout/reftests/generated-content/dynamic-attr-01.html b/layout/reftests/generated-content/dynamic-attr-01.html
new file mode 100644
index 0000000000..87240768d3
--- /dev/null
+++ b/layout/reftests/generated-content/dynamic-attr-01.html
@@ -0,0 +1,30 @@
+<!DOCTYPE HTML>
+<html class="reftest-wait">
+<head>
+ <title>CSS 2.1 Test Suite: generated content</title>
+ <link rel="author" title="Robert O'Callahan" href="mailto:robert@ocallahan.org" />
+ <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
+ <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#content"/>
+ <meta name="flags" content="dom" />
+<style>
+body {
+ font-family:sans-serif;
+}
+body::before {
+ content:attr(my-attr);
+}
+body::after {
+ content:attr(my-attr-2);
+}
+</style>
+<script>
+function fixupDOM() {
+ document.body.setAttribute("my-attr", "before");
+ document.body.setAttribute("my-attr-2", "after!");
+ document.documentElement.className = "";
+}
+</script>
+</head>
+<body my-attr-2="xyz" onload="fixupDOM()">
+</body>
+</html>