Bug 1395719: Crashtest. r=bz

MozReview-Commit-ID: C6mrfNC84s5
This commit is contained in:
Emilio Cobos Álvarez 2017-09-07 16:04:52 +02:00
parent 6d5e03f58b
commit b82bf02bb5
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,19 @@
<script>
o = []
window.onload = () => {
a = document.createElement("body");
b = document.createElementNS("http://www.w3.org/1998/Math/MathML", "math");
b.setAttributeNS(null, "display", "block");
c = document.createElementNS("http://www.w3.org/1998/Math/MathML", "munderover");
d = document.createTextNode("\n ");
c.appendChild(d);
c.appendChild(document.createElementNS("http://www.w3.org/1998/Math/MathML", "mo"));
b.appendChild(c);
a.appendChild(b);
document.documentElement.appendChild(a);
a.style.display = "inline";
setTimeout(() => {
d.data = "\u934F" + d.data;
}, 100)
}
</script>

View File

@ -214,3 +214,4 @@ load 1395725.html
load 1396041.html
load 1397363-1.html
load 1397439-1.html
load 1395719.html