blob: c9d2f33da621886d0a1b29f38c230f24e3124f4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html>
<head>
<script>
function boom()
{
document.body.appendChild(document.createTextNode("a"));
document.body.appendChild(document.createTextNode("b"));
document.body.appendChild(document.createTextNode("c"));
}
</script>
</head>
<body onload="boom();" style="display: table-row; text-indent: 17895702px;"></body>
</html>
|