diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /dom/tests/mochitest/bugs/test_sizetocontent_clamp.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/tests/mochitest/bugs/test_sizetocontent_clamp.html')
-rw-r--r-- | dom/tests/mochitest/bugs/test_sizetocontent_clamp.html | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/dom/tests/mochitest/bugs/test_sizetocontent_clamp.html b/dom/tests/mochitest/bugs/test_sizetocontent_clamp.html new file mode 100644 index 000000000..90767e6fb --- /dev/null +++ b/dom/tests/mochitest/bugs/test_sizetocontent_clamp.html @@ -0,0 +1,74 @@ +<!DOCTYPE HTML> +<html> +<!-- +https://bugzilla.mozilla.org/show_bug.cgi?id=764240 +--> +<head> + <meta charset="utf-8"> + <title>Test for Bug 764240</title> + <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> + <script type="application/javascript" src="/tests/SimpleTest/EventUtils.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=764240">Mozilla Bug 764240</a> +<p id="display"></p> +<div id="content"> + <button onclick="test();">run test</button> +</div> +<pre id="test"> +<script type="application/javascript"> + +/** Test for Bug 764240 **/ + +SimpleTest.waitForExplicitFinish(); + +// Error margin allowed for the window's size. Windows has varying minimum +// sizes depending on the os due to outer window chrome. Unix is given 5 +// pixels to protect against minor variances. +var epsilon = navigator.platform.indexOf("Win") == -1 ? 5 : 20; + +// Windows 8 has a minimum 122 pixel inner window width due to +// outer window chrome. +var isWin8 = (navigator.userAgent.indexOf("Windows NT 6.2") != -1); + +var innerWidthMin = (isWin8 ? 120 : 100); +var innerWidthMax = (isWin8 ? 125 : 100); + +var isExecuted = false; + +function test() { + var w = window.open('data:text/html,null', null, 'width=300,height=300'); + + SimpleTest.waitForFocus(function() { + w.onresize = function() { + + if (w.innerWidth > 300 - epsilon || isExecuted) { + return; + } + + isExecuted = true; + + ok(w.innerWidth + epsilon >= innerWidthMin && w.innerWidth - epsilon <= innerWidthMax, + "innerWidth should be between " + innerWidthMin + " and " + innerWidthMax + " but it was: " + w.innerWidth); + ok(w.innerHeight + epsilon >= 100 && w.innerHeight - epsilon <= 100, + "innerHeight should be around 100" + " but it was: " + w.innerHeight); + + w.close(); + + SimpleTest.waitForFocus(function() { + SimpleTest.finish(); + }); + }; + w.sizeToContent(); + }, w); +} + +SimpleTest.waitForFocus(function() { + synthesizeMouseAtCenter(document.getElementsByTagName('button')[0], {}); +}); + +</script> +</pre> +</body> +</html> |