blob: f33067cd4e1e93b9e7aca76726f5be541e50301b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function boom()
{
var s = document.getElementById("s");
document.body.removeChild(s);
document.body.appendChild(s);
}
window.addEventListener("load", boom, false);
</script>
</head>
<body>
<span style="word-spacing: -379660px">a </span>
<span id="s"><br style="clear: both;"/></span>
</body>
</html>
|