mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
15 lines
296 B
HTML
15 lines
296 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
function loaded() {
|
|
var f = document.getElementById("x");
|
|
f.removeChild(f.firstChild);
|
|
}
|
|
</script>
|
|
</head>
|
|
<frameset rows="*,*" id="x" onload="loaded()"
|
|
><frame src="data:text/plain,PASS"
|
|
><frame src="data:text/plain,PASS"></frameset>
|
|
</html>
|