mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
828 B
HTML
29 lines
828 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<!--
|
||
|
https://bugzilla.mozilla.org/show_bug.cgi?id=495219
|
||
|
-->
|
||
|
<head>
|
||
|
<title>Test for Bug 495219</title>
|
||
|
<script type="application/javascript" src="/MochiKit/packed.js"></script>
|
||
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||
|
</head>
|
||
|
<body>
|
||
|
<a target="_blank"
|
||
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=495219">Mozilla
|
||
|
Bug 495219</a>
|
||
|
<iframe onload="this.style.display='none'"></iframe>
|
||
|
<script type="application/javascript">
|
||
|
|
||
|
SimpleTest.waitForExplicitFinish();
|
||
|
window.onload = function () {
|
||
|
is(window.frames[0].innerWidth, 0, "width should be zero");
|
||
|
is(window.frames[0].innerHeight, 0, "height should be zero");
|
||
|
SimpleTest.finish();
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|