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