mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
714 B
HTML
26 lines
714 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<body>
|
||
|
<iframe id="foo" src="data:text/html,<body bgcolor='red'>FAIL</body>"></iframe>
|
||
|
<script type="text/javascript">
|
||
|
// Globals
|
||
|
var foo = document.getElementById('foo');
|
||
|
var win = foo.contentWindow;
|
||
|
|
||
|
// Start the chain of execution when iframe's window loads
|
||
|
win.onload = iframeWindowLoaded;
|
||
|
|
||
|
function iframeWindowLoaded() {
|
||
|
setTimeout("tweak()", 0);
|
||
|
}
|
||
|
function tweak() {
|
||
|
win.location ="data:text/html,<body bgcolor='lime'>PASS</body>";
|
||
|
foo.onload = snapshot;
|
||
|
}
|
||
|
function snapshot() {
|
||
|
document.documentElement.className = '';
|
||
|
}
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|