2008-12-08 16:33:46 -08:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<!--
|
|
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=458898
|
|
|
|
-->
|
|
|
|
<head>
|
|
|
|
<title>Test for Bug 458898</title>
|
2009-05-06 13:46:04 -07:00
|
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
2008-12-08 16:33:46 -08:00
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
|
|
<script type="application/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=458898">Mozilla Bug 458898</a>
|
|
|
|
<p id="display"></p>
|
|
|
|
<div id="content" style="display: none">
|
|
|
|
</div>
|
|
|
|
<pre id="test">
|
|
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
var win = window.openDialog("data:text/html,<div style='height:200px; width:100px;'>");
|
|
|
|
|
2008-12-21 04:42:15 -08:00
|
|
|
// doesn't succeed on SeaMonkey currently, see bug 469331
|
|
|
|
// mark it todo there instead
|
2008-12-23 07:03:25 -08:00
|
|
|
var testfunc_h = (navigator.userAgent.match(/ SeaMonkey\//)) ? todo : ok;
|
|
|
|
var testfunc_w = (navigator.userAgent.match(/Windows/)) ? ok : testfunc_h;
|
2008-12-21 04:42:15 -08:00
|
|
|
|
2008-12-08 16:33:46 -08:00
|
|
|
function loaded() {
|
|
|
|
win.sizeToContent();
|
2009-01-02 23:27:27 -08:00
|
|
|
testfunc_w(win.innerWidth >= 100, "innerWidth: " + win.innerWidth + " >= 100 ?");
|
|
|
|
testfunc_h(win.innerHeight >= 200, "innerHeight: " + win.innerHeight + " >= 200 ?");
|
2008-12-08 16:33:46 -08:00
|
|
|
win.close();
|
|
|
|
SimpleTest.finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
win.addEventListener("load", loaded, false);
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|