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

Side by Side Diff: third_party/WebKit/LayoutTests/fullscreen/full-screen-stacking-context-expected.html

Issue 1410833004: Revert "Implement FullScreen using top layer." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <video></video>
2 <script> 3 <script>
3 var runPixelTests = true; 4 var runPixelTests = true;
4
5 function init() {
6 waitForEventAndEnd(document, 'webkitfullscreenchange');
7 runWithKeyDown(function() {
8 document.getElementById('video').webkitRequestFullScreen();
9 });
10 }
11 </script> 5 </script>
12 <script src="full-screen-test.js"></script> 6 <script src="full-screen-test.js"></script>
13 <style> 7 <script>
14 #video { 8 document.onwebkitfullscreenchange = endTest;
15 background-color: black; 9 runWithKeyDown(function() {
16 } 10 document.querySelector("video").webkitRequestFullScreen();
17 </style> 11 });
18 <body onload="init()"> 12 </script>
19 <video id='video'></video>
20 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698