зеркало из https://github.com/mozilla/gecko-dev.git
20 строки
325 B
HTML
20 строки
325 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
window.onload = function(){
|
|
let x = document.getElementsByTagName("iframe")[0];
|
|
let w = window.open();
|
|
let o = window.frames[0];
|
|
x.remove();
|
|
o.requestIdleCallback(function(){});
|
|
w.close();
|
|
};
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<iframe></iframe>
|
|
</body>
|
|
</html>
|