Chromium Code Reviews| OLD | NEW | 
|---|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> | 
| 2 <video></video> | |
| 3 <script> | 2 <script> | 
| 4 var runPixelTests = true; | 3 var runPixelTests = true; | 
| 4 | |
| 5 function init() { | |
| 6 waitForEventAndEnd(document, 'webkitfullscreenchange'); | |
| 7 runWithKeyDown(function() { | |
| 8 document.getElementById('video').webkitRequestFullScreen(); | |
| 9 }); | |
| 10 } | |
| 5 </script> | 11 </script> | 
| 6 <script src="full-screen-test.js"></script> | 12 <script src="full-screen-test.js"></script> | 
| 7 <script> | 13 <style> | 
| 8 document.onwebkitfullscreenchange = endTest; | 14 #video { | 
| 9 runWithKeyDown(function() { | 15 background-color: black; | 
| 
 
foolip
2016/07/06 13:19:43
This change seems to mask an actual regression in
 
dsinclair
2016/07/06 13:32:31
This is the expected file, so this is what the cl
 
foolip
2016/07/06 14:14:51
Right, but what I noticed when trying to simplify
 
dsinclair
2016/07/06 14:17:38
It wasn't deliberate. It sounds like there is an i
 
foolip
2016/07/06 15:20:27
I have a hard time deciding what would make most s
 
 | |
| 10 document.querySelector("video").webkitRequestFullScreen(); | 16 } | 
| 11 }); | 17 </style> | 
| 12 </script> | 18 <body onload="init()"> | 
| 19 <video id='video'></video> | |
| 20 </body> | |
| OLD | NEW |