gecko-dev/layout/base/crashtests/455623-1.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 строки
352 B
HTML
Исходник Обычный вид История

2010-06-09 04:53:08 +04:00
<!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();">&#x202E;<iframe id="i" src="data:text/html,a"></body>
</html>