blob: 3a363005b60f4758650dfdfab4c6ceda003bda73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function boom()
{
var i = document.getElementById("i");
i.contentDocument.designMode = "on";
i.previousSibling.data += "x\n";
i.style.counterReset = "c";
}
</script>
</head>
<body onload="boom();">‮<iframe id="i" src="data:text/html,a"></body>
</html>
|