mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 728893 - Allow mochitest iframe to go fullscreen. r=ctalbert
This commit is contained in:
parent
10113aabe9
commit
a80f370e8f
@ -82,7 +82,7 @@ function loadTests()
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<div class="frameholder">
|
||||
<iframe type="content" scrolling="no" id="testframe" width="550" height="350"></iframe>
|
||||
<iframe type="content" scrolling="no" id="testframe" width="550" height="350" mozallowfullscreen="true"></iframe>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<div class="toggle">
|
||||
|
@ -43,7 +43,7 @@ function loadTests()
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<div class="frameholder">
|
||||
<iframe type="content" scrolling="no" id="testframe" width="550" height="350"></iframe>
|
||||
<iframe type="content" scrolling="no" id="testframe" width="550" height="350" mozallowfullscreen="true"></iframe>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<div class="toggle">
|
||||
|
@ -653,7 +653,7 @@ function testListing(metadata, response)
|
||||
),
|
||||
DIV({class: "clear"}),
|
||||
DIV({class: "frameholder"},
|
||||
IFRAME({scrolling: "no", id: "testframe", width: "500", height: "300"})
|
||||
IFRAME({scrolling: "no", id: "testframe", width: "500", height: "300", mozallowfullscreen: "true"})
|
||||
),
|
||||
DIV({class: "clear"}),
|
||||
DIV({class: "toggle"},
|
||||
|
@ -60,6 +60,7 @@ _TEST_FILES = \
|
||||
test_SpecialPowersExtension.html \
|
||||
test_SpecialPowersExtension2.html \
|
||||
file_SpecialPowersFrame1.html \
|
||||
test_cancelFullScreen.html \
|
||||
$(NULL)
|
||||
|
||||
ifneq ($(OS_TARGET),Android)
|
||||
|
@ -680,6 +680,10 @@ SimpleTest.executeSoon = function(aFunc) {
|
||||
* SimpleTest.waitForExplicitFinish() has been invoked.
|
||||
**/
|
||||
SimpleTest.finish = function () {
|
||||
// Cancel element fullscreen mode due to Bug 728893
|
||||
if (document && document.mozFullScreenElement) {
|
||||
document.mozCancelFullScreen();
|
||||
}
|
||||
if (SimpleTest._expectingUncaughtException) {
|
||||
SimpleTest.ok(false, "expectUncaughtException was called but no uncaught exception was detected!");
|
||||
}
|
||||
|
51
testing/mochitest/tests/test_cancelFullScreen.html
Normal file
51
testing/mochitest/tests/test_cancelFullScreen.html
Normal file
@ -0,0 +1,51 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>Test for Bug 728893</title>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
||||
</head>
|
||||
<body onload="start()">
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=728893">
|
||||
Mozilla Bug
|
||||
</a>
|
||||
<div id="div">
|
||||
</div>
|
||||
<pre id="test">
|
||||
<script class="testbody" type="text/javascript">
|
||||
|
||||
/** Test for Bug 728893
|
||||
Checks if SimpleTest.finish cancels fullscreen mode
|
||||
The assertion happens after calling SimpleTest.finish
|
||||
Running the test without the harness won't work
|
||||
**/
|
||||
|
||||
SpecialPowers.setBoolPref("full-screen-api.enabled", true);
|
||||
SpecialPowers.setBoolPref("full-screen-api.allow-trusted-requests-only",
|
||||
false);
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
|
||||
var div = document.getElementById("div");
|
||||
|
||||
document.addEventListener("mozfullscreenchange", function (e) {
|
||||
if (document.mozFullScreenElement === div) {
|
||||
SimpleTest.finish();
|
||||
}
|
||||
else {
|
||||
is(false, document.mozFullScreen,
|
||||
"SimpleTest.finish should cancel fullscreen mode");
|
||||
}
|
||||
}, false);
|
||||
|
||||
function start() {
|
||||
SimpleTest.waitForFocus(function() {
|
||||
div.mozRequestFullScreen();
|
||||
});
|
||||
}
|
||||
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user