gecko-dev/layout/generic/crashtests/810303.html

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

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

2014-10-18 21:08:23 +04:00
<!DOCTYPE html>
<html>
<head>
<script>
window.onload = function() {
document.removeChild(document.documentElement);
var oFrameset1 = document.createElement('frameset'),
oFrameset2 = document.createElement('frameset');
document.appendChild(oFrameset1);
oFrameset1.appendChild(oFrameset2);
oFrameset2.offsetWidth;
};
</script>
</head>
</html>