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>
|
2019-04-16 06:53:28 +03:00
|
|
|
<script src="/tests/SimpleTest/EventUtils.js"></script>
|
2011-11-15 00:33:37 +04:00
|
|
|
<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) {
|
2018-02-09 19:17:09 +03:00
|
|
|
if (escKeyReceived == KeyboardEvent.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();
|
2018-02-14 22:15:39 +03:00
|
|
|
synthesizeKey("KEY_Escape");
|
2011-11-15 00:33:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
<p>Inner frame</p>
|
|
|
|
</body>
|
|
|
|
</html>
|