blob: 7de8bdaaf69aa3c136bab0a934fd7324b9f5ed89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<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>
|