Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<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">&#x76F;&#13;&#x76F;</div>
</body>
</html>