mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
13 lines
243 B
HTML
13 lines
243 B
HTML
<html>
|
|
<head>
|
|
</head>
|
|
<body style="display: none;">
|
|
<iframe id="i" src="data:text/html,text">
|
|
<script>
|
|
var i = document.getElementById("i");
|
|
i.parentNode.style.display = "";
|
|
i.parentNode.style.display = "none";
|
|
</script>
|
|
</body>
|
|
</html>
|