gecko/gfx/tests/crashtests/385423-2.html

17 lines
418 B
HTML
Raw Normal View History

2008-03-26 16:23:43 -07:00
<html class="reftest-wait">
<head>
<script>
function boom()
{
var div = document.getElementById("div")
div.appendChild(document.createTextNode(String.fromCharCode(0x076F) + String.fromCharCode(13) + String.fromCharCode(0x076F)));
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom, 10);">
<div style="text-transform: lowercase" id="div"></div>
</body>
</html>