OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script> | 4 <script> |
5 var runPixelTests = true; | 5 var runPixelTests = true; |
6 | 6 |
7 function init() { | 7 function init() { |
8 // Bail out early if the full screen API is not enabled or is mi
ssing: | 8 // Bail out early if the full screen API is not enabled or is mi
ssing: |
9 if (Element.prototype.webkitRequestFullScreen == undefined) { | 9 if (Element.prototype.webkitRequestFullScreen == undefined) { |
10 logResult(false, "Element.prototype.webkitRequestFullScreen
== undefined"); | 10 logResult(false, "Element.prototype.webkitRequestFullScreen
== undefined"); |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 </head> | 53 </head> |
54 <body onload="init()"> | 54 <body onload="init()"> |
55 <div>This tests that a full screen element in a lower stacking context b
locks a sibling in a higher stacking context. | 55 <div>This tests that a full screen element in a lower stacking context b
locks a sibling in a higher stacking context. |
56 After entering full screen mode, only a black box should be visible
. | 56 After entering full screen mode, only a black box should be visible
. |
57 Click <button onclick="goFullScreen()">go full screen</button> to r
un the test.</div> | 57 Click <button onclick="goFullScreen()">go full screen</button> to r
un the test.</div> |
58 <div id="one"></div> | 58 <div id="one"></div> |
59 <div id="zero"> | 59 <div id="zero"> |
60 <video id="video"></video> | 60 <video id="video"></video> |
61 </div> | 61 </div> |
62 </body> | 62 </body> |
| 63 </html> |
OLD | NEW |