Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: LayoutTests/fullscreen/fullscreen-child-not-allowed-crash.html

Issue 440673003: Rename a prefixed fullscreen test to full-screen-* for consistency (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <script src="full-screen-test.js"></script>
4 <body onload="init()">
5 <p>Test passes if it does not crash.</p>
6 <div id="div1">
7 <script>
8 var init = function() {
9 // Bail out early if the full screen API is not enabled or is missing:
10 if (Element.prototype.webkitRequestFullScreen == undefined) {
11 logResult(false, "Element.prototype.webkitRequestFullScreen == undefined ");
12 endTest();
13 } else {
14 runWithKeyDown(function() { div1.webkitRequestFullScreen() });
15 }
16
17 frameset1 = document.createElementNS("http://www.w3.org/1999/xhtml", "frames et");
18 document.body.appendChild(frameset1);
19 setTimeout("crash()", 0);
20 };
21
22 function crash() {
23 frameset1.appendChild(div1);
24 if (window.eventSender)
25 eventSender.keyDown("X");
26 endTest();
27 }
28 </script>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698