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

Unified Diff: android_webview/test/shell/assets/full_screen_video_test_not_preloaded.html

Issue 2154883003: Make ContentVideoView progress view visible in WebView (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed Java continuation lines identation Created 4 years, 4 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: android_webview/test/shell/assets/full_screen_video_test_not_preloaded.html
diff --git a/android_webview/test/shell/assets/full_screen_video_test.html b/android_webview/test/shell/assets/full_screen_video_test_not_preloaded.html
similarity index 51%
copy from android_webview/test/shell/assets/full_screen_video_test.html
copy to android_webview/test/shell/assets/full_screen_video_test_not_preloaded.html
index 6d1979dbb25421b1fd425cb33449df6a7a86c6b5..25c4c6df6c8416420d7e7c8c6a115c7a32eb35d9 100644
--- a/android_webview/test/shell/assets/full_screen_video_test.html
+++ b/android_webview/test/shell/assets/full_screen_video_test_not_preloaded.html
@@ -1,4 +1,4 @@
-<!-- NOTE: The ids in this file must be kept in sync with AwContentsClientFullScreenTest
+<!-- NOTE: The ids in this file must be kept in sync with
and AwContentsClientGetVideoLoadingProgressViewTest -->
<html>
@@ -6,9 +6,9 @@
<script src="full_screen_video.js"></script>
</head>
<body>
-<button id="fullscreenControl" autofocus style ='padding:10px 10px;' onclick="goFullscreen('video'); return false">Go fullscreen</button>
+<button id="fullscreenControl" style ='padding:10px 10px;' onclick="goFullscreen('video'); return false">Go fullscreen</button>
<button id="playControl" style='padding:10px 10px;' onclick="playVideo(); return false">Play</button>
-<video style = 'width: 10px; height: 10px;' id='video' controls>
+<video style = 'width: 10px; height: 10px;' id='video' controls preload="none">
<source src="video.webm" type="video/webm">
</video>
</body>

Powered by Google App Engine
This is Rietveld 408576698