зеркало из https://github.com/mozilla/pjs.git
Bug 728893 - Allow mochitest iframe to go fullscreen. r=ctalbert
This commit is contained in:
Родитель
8e5a2dc231
Коммит
156539e715
|
@ -82,7 +82,7 @@ function loadTests()
|
||||||
</div>
|
</div>
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
<div class="frameholder">
|
<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>
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
<div class="toggle">
|
<div class="toggle">
|
||||||
|
|
|
@ -43,7 +43,7 @@ function loadTests()
|
||||||
</div>
|
</div>
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
<div class="frameholder">
|
<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>
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
<div class="toggle">
|
<div class="toggle">
|
||||||
|
|
|
@ -653,7 +653,7 @@ function testListing(metadata, response)
|
||||||
),
|
),
|
||||||
DIV({class: "clear"}),
|
DIV({class: "clear"}),
|
||||||
DIV({class: "frameholder"},
|
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: "clear"}),
|
||||||
DIV({class: "toggle"},
|
DIV({class: "toggle"},
|
||||||
|
|
|
@ -60,6 +60,7 @@ _TEST_FILES = \
|
||||||
test_SpecialPowersExtension.html \
|
test_SpecialPowersExtension.html \
|
||||||
test_SpecialPowersExtension2.html \
|
test_SpecialPowersExtension2.html \
|
||||||
file_SpecialPowersFrame1.html \
|
file_SpecialPowersFrame1.html \
|
||||||
|
test_cancelFullScreen.html \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
ifneq ($(OS_TARGET),Android)
|
ifneq ($(OS_TARGET),Android)
|
||||||
|
|
|
@ -680,6 +680,10 @@ SimpleTest.executeSoon = function(aFunc) {
|
||||||
* SimpleTest.waitForExplicitFinish() has been invoked.
|
* SimpleTest.waitForExplicitFinish() has been invoked.
|
||||||
**/
|
**/
|
||||||
SimpleTest.finish = function () {
|
SimpleTest.finish = function () {
|
||||||
|
// Cancel element fullscreen mode due to Bug 728893
|
||||||
|
if (document && document.mozFullScreenElement) {
|
||||||
|
document.mozCancelFullScreen();
|
||||||
|
}
|
||||||
if (SimpleTest._expectingUncaughtException) {
|
if (SimpleTest._expectingUncaughtException) {
|
||||||
SimpleTest.ok(false, "expectUncaughtException was called but no uncaught exception was detected!");
|
SimpleTest.ok(false, "expectUncaughtException was called but no uncaught exception was detected!");
|
||||||
}
|
}
|
||||||
|
|
|
@ -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>
|
Загрузка…
Ссылка в новой задаче