1
0
Fork 0
firefox/layout/forms/crashtests/626014.xhtml
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

20 lines
406 B
HTML

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
<![CDATA[
function boom()
{
document.getElementById("i").selectionEnd;
document.getElementById("a").appendChild(document.getElementById("b"));
}
]]>
</script>
</head>
<body onload="boom();">
<mrow xmlns="http://www.w3.org/1998/Math/MathML" id="a"><mrow id="b"/><input xmlns="http://www.w3.org/1999/xhtml" id="i" /></mrow>
</body>
</html>