1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-20 15:28:50 +00:00
Files
UXP/layout/generic/crashtests/645072-2.html
T

18 lines
318 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
document.documentElement.offsetHeight;
document.getElementById("f").appendChild(document.createTextNode("\u00AD"));
document.documentElement.offsetHeight;
}
</script>
</head>
<body onload="boom();"><fieldset id="f"> </fieldset></body>
</html>