Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / pointer-lock / iframe-sandboxed-nested-disallow-then-allow-pointer-lock.html
blobc9d8a6b67174a34ceec51e2a6c3e312cd0eb3fca
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <script src="/js-test-resources/js-test.js"></script>
5 <script src="../resources/pointer-lock/pointer-lock-test-harness.js"></script>
6 </head>
7 <body>
8 <div>
9 <div id="target1"></div>
10 <iframe src="../resources/pointer-lock/iframe-allows-inner-iframe.html" sandbox="allow-scripts" onload="doNextStepWithUserGesture()"></iframe>
11 </div>
12 <script>
13 description("Test nested sandboxed iframes without and then with allow-pointer-lock disallow pointer lock.");
14 window.jsTestIsAsync = true;
16 targetDiv1 = document.getElementById("target1");
17 iframe = document.getElementsByTagName("iframe")[0];
19 todo = [
20 function () {
21 iframe.contentWindow.postMessage(["pass message down", "eval", 'document.body.requestPointerLock()'], "*");
22 window.onmessage = function (messageEvent) {
23 message = messageEvent.data;
24 shouldBeEqualToString("message", "inner-iframe.html onpointerlockerror");
25 window.onmessage = null;
26 doNextStep();
30 // doNextStep() called by iframe onload handler.
31 </script>
32 </body>
33 </html>