Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!doctype html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <title>The video-specific prefixed fullscreen API should not be supporte d.</title> | |
| 5 <script src="../resources/testharness.js"></script> | |
| 6 <script src="../resources/testharnessreport.js"></script> | |
| 7 </head> | |
| 8 <body> | |
| 9 <div id="log"></div> | |
| 10 <script> | |
| 11 var video = document.createElement('video'); | |
| 12 function t(property) | |
| 13 { | |
| 14 test(function() | |
| 15 { | |
| 16 assert_false(property in video); | |
| 17 }, 'video.' + property + ' should not be supported'); | |
| 18 } | |
| 19 t('webkitSupportsFullscreen'); | |
|
acolwell GONE FROM CHROMIUM
2014/02/25 17:37:43
Why create a test that verifies that you successfu
philipj_slow
2014/02/25 18:00:39
OK, I'll remove the test.
| |
| 20 t('webkitDisplayingFullscreen'); | |
| 21 t('webkitEnterFullscreen'); | |
| 22 t('webkitExitFullscreen'); | |
| 23 t('webkitEnterFullScreen'); | |
| 24 t('webkitExitFullScreen'); | |
| 25 </script> | |
| 26 </body> | |
| 27 </html> | |
| OLD | NEW |