2011-11-15 00:33:37 +04:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<!--
|
|
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=700764
|
|
|
|
|
|
|
|
Verify that an ESC key press in a subdoc of a full-screen doc causes us to
|
|
|
|
exit DOM full-screen mode.
|
|
|
|
|
|
|
|
-->
|
|
|
|
<head>
|
|
|
|
<title>Test for Bug 700764</title>
|
|
|
|
<script type="application/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
|
|
|
<style>
|
2016-02-17 03:47:11 +03:00
|
|
|
body:not(:fullscreen) {
|
2011-11-15 00:33:37 +04:00
|
|
|
background-color: blue;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<script type="application/javascript">
|
|
|
|
|
|
|
|
/** Test for Bug 700764 **/
|
|
|
|
|
|
|
|
function ok(condition, msg) {
|
|
|
|
parent.ok(condition, msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
function is(a, b, msg) {
|
|
|
|
parent.is(a, b, msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
var escKeyReceived = false;
|
|
|
|
var escKeySent = false;
|
|
|
|
|
|
|
|
function keyHandler(event) {
|
2012-09-24 16:46:29 +04:00
|
|
|
if (escKeyReceived == SpecialPowers.Ci.nsIDOMKeyEvent.DOM_VK_ESC) {
|
2011-11-15 00:33:37 +04:00
|
|
|
escKeyReceived = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
window.addEventListener("keydown", keyHandler, true);
|
|
|
|
window.addEventListener("keyup", keyHandler, true);
|
|
|
|
window.addEventListener("keypress", keyHandler, true);
|
|
|
|
|
|
|
|
function startTest() {
|
2016-02-17 03:47:11 +03:00
|
|
|
ok(!document.fullscreenElement, "Subdoc should not be in full-screen mode");
|
|
|
|
ok(parent.document.fullscreenElement, "Parent should be in full-screen mode");
|
2011-11-15 00:33:37 +04:00
|
|
|
escKeySent = true;
|
|
|
|
window.focus();
|
|
|
|
synthesizeKey("VK_ESCAPE", {});
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
<p>Inner frame</p>
|
|
|
|
</body>
|
|
|
|
</html>
|