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

Unified Diff: LayoutTests/media/media-can-play-webm.html

Issue 69453002: Updating WebM canPlayType Layout Tests to check VP9 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: adding opus and more cases Created 7 years, 1 month 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
« no previous file with comments | « no previous file | LayoutTests/media/media-can-play-webm-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/media/media-can-play-webm.html
diff --git a/LayoutTests/media/media-can-play-webm.html b/LayoutTests/media/media-can-play-webm.html
index 2ef0dbe905a459303ba2db1ec4f043c13b9fa403..4ae65f1b5f91fee111773f457a9b537555234f2d 100644
--- a/LayoutTests/media/media-can-play-webm.html
+++ b/LayoutTests/media/media-can-play-webm.html
@@ -11,6 +11,19 @@
testExpected("video.canPlayType('audio/webm; codecs=vorbis')", "probably");
testExpected("video.canPlayType('video/webm; codecs=vp8,vorbis')", "probably");
+ testExpected("video.canPlayType('video/webm; codecs=vp8')", "probably");
+ testExpected("video.canPlayType('video/webm; codecs=vp8.0')", "probably");
+ testExpected("video.canPlayType('video/webm; codecs=vp8.0,vorbis')", "probably");
+ testExpected("video.canPlayType('video/webm; codecs=vp8.1')", "");
+
+ testExpected("video.canPlayType('video/webm; codecs=vp9')", "probably");
+ testExpected("video.canPlayType('video/webm; codecs=vp9,vorbis')", "probably");
+ testExpected("video.canPlayType('video/webm; codecs=vp9.0')", "probably");
+ testExpected("video.canPlayType('video/webm; codecs=vp9.0,vorbis')", "probably");
+ testExpected("video.canPlayType('video/webm; codecs=vp9.1')", "");
+
+ testExpected("video.canPlayType('audio/webm; codecs=opus')", "");
+ testExpected("video.canPlayType('video/webm; codecs=vp9,opus')", "");
endTest();
}
« no previous file with comments | « no previous file | LayoutTests/media/media-can-play-webm-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698