mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
443 B
HTML
24 lines
443 B
HTML
<HTML>
|
|
<HEAD>
|
|
|
|
<SCRIPT>
|
|
function loadFrames(){
|
|
top.frames[1].document.open();
|
|
top.frames[1].document.write
|
|
("This message doesn't appear on the screen.");
|
|
top.frames[1].document.close();
|
|
};
|
|
</SCRIPT>
|
|
|
|
</HEAD>
|
|
<FRAMESET ROWS = 25,25 onLoad=loadFrames()>
|
|
<FRAME SRC=about:blank>
|
|
<FRAME SRC=about:blank>
|
|
</FRAMESET>
|
|
|
|
<NOFRAMES>
|
|
<BODY> <P> </BODY>
|
|
</NOFRAMES>
|
|
|
|
</HTML>
|