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

Side by Side Diff: LayoutTests/fullscreen/full-screen-remove-ancestor-during-transition.html

Issue 336313015: Remove the webkitallowfullscreen content attribute (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix quirks mode test Created 6 years, 5 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
1 <!DOCTYPE html>
1 <script src="../resources/js-test.js"></script> 2 <script src="../resources/js-test.js"></script>
2 <script> 3 <script>
3 if (window.testRunner) { 4 if (window.testRunner) {
4 testRunner.dumpAsText(); 5 testRunner.dumpAsText();
5 testRunner.waitUntilDone(); 6 testRunner.waitUntilDone();
6 } 7 }
7 8
8 function runWithKeyDown(fn) 9 function runWithKeyDown(fn)
9 { 10 {
10 document.addEventListener('keydown', function() { fn(); }, false); 11 document.addEventListener('keydown', function() { fn(); }, false);
(...skipping 21 matching lines...) Expand all
32 if (window.testRunner) { 33 if (window.testRunner) {
33 testRunner.notifyDone(); 34 testRunner.notifyDone();
34 } 35 }
35 }, 0); 36 }, 0);
36 }, 0); 37 }, 0);
37 element.webkitRequestFullScreen(); 38 element.webkitRequestFullScreen();
38 shouldNotBe("document.webkitFullscreenElement", "null"); 39 shouldNotBe("document.webkitFullscreenElement", "null");
39 } 40 }
40 </script> 41 </script>
41 <body onload="init()"> 42 <body onload="init()">
42 <iframe webkitallowfullscreen src="resources/inner.html" id="block1"></ifram e> 43 <iframe allowfullscreen src="resources/inner.html" id="block1"></iframe>
43 PASS 44 PASS
44 </body> 45 </body>
OLDNEW
« no previous file with comments | « LayoutTests/fullscreen/full-screen-iframe-zIndex.html ('k') | LayoutTests/fullscreen/full-screen-restrictions.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698