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

Unified Diff: LayoutTests/media/video-enter-fullscreen-without-user-gesture.html

Issue 191273002: Revert "Remove the HTMLVideoElement-specific prefixed fullscreen API" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/media/video-enter-fullscreen-without-user-gesture.html
diff --git a/LayoutTests/media/video-enter-fullscreen-without-user-gesture.html b/LayoutTests/media/video-enter-fullscreen-without-user-gesture.html
index 01051f6b330079ddb42d5a357bf7512d7e0a6423..2763b8a6214517ad639161ce16cb7d463387a231 100644
--- a/LayoutTests/media/video-enter-fullscreen-without-user-gesture.html
+++ b/LayoutTests/media/video-enter-fullscreen-without-user-gesture.html
@@ -1,6 +1,6 @@
<html>
<head>
- <title>Test that video webkitRequestFullscreen() works without any user gesture if the requirement is removed.</title>
+ <title>Test that video webkitEnterFullScreen() works without any user gesture if the requirement is removed.</title>
<script src=media-controls.js></script>
<script src=media-file.js></script>
<script src=video-test.js></script>
@@ -13,7 +13,7 @@
consoleWrite("");
consoleWrite("* No user gesture initiated");
testExpected("video.paused", true);
- run("video.webkitRequestFullscreen()");
+ run("video.webkitEnterFullScreen()");
waitForEvent('webkitfullscreenchange', fullscreenchange);
}
@@ -32,7 +32,7 @@
</head>
<body onload="start()">
- <p>Test that video webkitRequestFullscreen() works without any user gesture if the requirement is removed.</p>
+ <p>Test that video webkitEnterFullScreen() works without any user gesture if the requirement is removed.</p>
<video controls></video>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698