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

Side by Side Diff: LayoutTests/media/video-prefixed-fullscreen.html

Issue 178003008: Remove the HTMLVideoElement-specific prefixed fullscreen API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698