mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
775 B
HTML
24 lines
775 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<body>
|
|
<iframe id="foo"></iframe>
|
|
<script type="text/javascript">
|
|
var n = document.getElementById('foo');
|
|
var f = n.contentWindow;
|
|
f.document.open();
|
|
f.document.write('');
|
|
f.onload = function() {
|
|
f.document.designMode = 'on';
|
|
setTimeout(function() {
|
|
f.document.designMode='on';
|
|
f.location = 'data:text/html;charset=utf-8,<body>FAIL<script>document.body.innerHTML="PASS"<\/script>';
|
|
n.addEventListener("load",
|
|
function() { document.documentElement.className = ''; },
|
|
false);
|
|
}, 0);
|
|
};
|
|
f.document.close();
|
|
</script>
|
|
</body>
|
|
</html>
|