mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16 lines
327 B
HTML
16 lines
327 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<iframe id="inner" src="http://test1.example.com/tests/content/base/test/file_bug326337_inner.html"></iframe>
|
|
<script>
|
|
var t = setInterval(doCheck, 300);
|
|
function doCheck() {
|
|
if (location.hash) {
|
|
clearInterval(t);
|
|
window.opener.finishTest(location.hash);
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|