mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|