mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
18 lines
281 B
HTML
18 lines
281 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var f = document.getElementById("f");
|
||
|
var w = f.contentWindow;
|
||
|
f.parentNode.removeChild(f);
|
||
|
w.localStorage;
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
<body onload="boom();"><iframe id="f" src="data:text/html,1"></iframe></body>
|
||
|
</html>
|