diff options
Diffstat (limited to 'layout/reftests/mathml/shadow-dom-1.html')
-rw-r--r-- | layout/reftests/mathml/shadow-dom-1.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/layout/reftests/mathml/shadow-dom-1.html b/layout/reftests/mathml/shadow-dom-1.html new file mode 100644 index 000000000..547253a3c --- /dev/null +++ b/layout/reftests/mathml/shadow-dom-1.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html class="reftest-wait"> +<meta charset="utf-8"> +<title>Test for bug 1066554 - Shadow DOM loads MathML stylesheets as needed</title> +<body> + <div id="x"></div> + <script> + function insertShadowMathML() { + var x = document.getElementById("x"); + x.createShadowRoot(); + x.shadowRoot.innerHTML = + '<math><msup><mi>X</mi><mi>X</mi></msup></math>'; + document.documentElement.removeAttribute("class"); + } + window.addEventListener("MozReftestInvalidate", insertShadowMathML, false); + </script> +</body> +</html> |