mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 00:47:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
36
dom/base/test/test_orientation_sandbox_no_lock.html
Normal file
36
dom/base/test/test_orientation_sandbox_no_lock.html
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>Test for ScreenOrientation API</title>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="orientationcommon.js"></script>
|
||||
<div id="log"></div>
|
||||
<iframe sandbox="allow-scripts" id="frame"></iframe>
|
||||
<script>
|
||||
async_test(function(t) {
|
||||
var originalOrientation = screen.orientation.type;
|
||||
var alternateOrientation = originalOrientation == "portrait-primary" ?
|
||||
"landscape-primary" : "portrait-primary";
|
||||
|
||||
var orientationChanges = [];
|
||||
window.screen.orientation.onchange = function() {
|
||||
orientationChanges.push(screen.orientation.type);
|
||||
};
|
||||
|
||||
window.addEventListener("message", function(event) {
|
||||
t.step(function() {
|
||||
assert_equals(event.data, "error");
|
||||
assert_array_equals(orientationChanges, []);
|
||||
t.done();
|
||||
});
|
||||
}, false);
|
||||
|
||||
var frame = document.getElementById("frame");
|
||||
frame.src = "http://example.com/tests/dom/base/test/file_lock_orientation.html";
|
||||
|
||||
frame.onload = function() {
|
||||
assert_array_equals(orientationChanges, []);
|
||||
frame.contentWindow.postMessage(alternateOrientation, "*");
|
||||
};
|
||||
}, "Test orientation lock from within a frame without sandbox permission.");
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue