Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android'
- Manifest: layout/base/tests/chrome/chrome.toml
<!DOCTYPE HTML>
<html>
<!--
-->
<head>
</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();
var win = window.browsingContext.topChromeWindow.openDialog("file_bug458898.html");
function loaded() {
var disableWindowResizePref = "dom.disable_window_move_resize";
SpecialPowers.pushPrefEnv({"set":[[disableWindowResizePref, false]]}, function() {
win.sizeToContent();
ok(win.innerWidth >= 100, "innerWidth: " + win.innerWidth + " >= 100 ?");
ok(win.innerHeight >= 200, "innerHeight: " + win.innerHeight + " >= 200 ?");
win.close();
SimpleTest.finish();
});
}
win.addEventListener("load", loaded);
</script>
</pre>
</body>
</html>