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

Unified Diff: third_party/WebKit/LayoutTests/fast/mediarecorder/MediaRecorder-isTypeSupported.html

Issue 1933463003: MediaRecorder LayoutTest: add H264 to isTypeSupported() test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/mediarecorder/MediaRecorder-isTypeSupported.html
diff --git a/third_party/WebKit/LayoutTests/fast/mediarecorder/MediaRecorder-isTypeSupported.html b/third_party/WebKit/LayoutTests/fast/mediarecorder/MediaRecorder-isTypeSupported.html
index 796935d536e2d5a33ecff9b4570db77b7dc02cdd..7b0c985629092efe1e01bee55cd1deea817b505f 100644
--- a/third_party/WebKit/LayoutTests/fast/mediarecorder/MediaRecorder-isTypeSupported.html
+++ b/third_party/WebKit/LayoutTests/fast/mediarecorder/MediaRecorder-isTypeSupported.html
@@ -18,12 +18,16 @@ test(function() {
assert_true(MediaRecorder.isTypeSupported("video/webm;codecs=vp9"));
assert_true(MediaRecorder.isTypeSupported("video/webm;codecs=vp8.0"));
assert_true(MediaRecorder.isTypeSupported("video/webm;codecs=vp9.0"));
+ assert_true(MediaRecorder.isTypeSupported("video/webm;codecs=h264"));
+ assert_true(MediaRecorder.isTypeSupported("video/webm;codecs=H264"));
// "video/webm" supports audio codec specification, see
// http://www.webmproject.org/docs/container/
assert_true(MediaRecorder.isTypeSupported("video/webm;codecs=vp8,opus"));
assert_true(MediaRecorder.isTypeSupported("video/WEBM;codecs=VP8,OPUS"));
assert_true(MediaRecorder.isTypeSupported("video/webm;codecs=vp9,opus"));
assert_true(MediaRecorder.isTypeSupported("video/webm;codecs=vp8,vp9,opus"));
+ assert_true(MediaRecorder.isTypeSupported("video/webm;codecs=h264,opus"));
+ assert_true(MediaRecorder.isTypeSupported("video/webm;codecs=h264,vp9,opus"));
}, 'check MediaRecorder.isTypeSupported() with valid video MIME types');
test(function() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698