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

Unified Diff: third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-onencrypted.html

Issue 2084053002: EME: Update tests so 'audioCapabilities' always provided (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: changes (+rebase) Created 4 years, 5 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: third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-onencrypted.html
diff --git a/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-onencrypted.html b/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-onencrypted.html
index f0bf60a138079383b594f9f2ae49c61642fdc785..d7f6ec5305435330e7c95ae95684b4d97721c8c2 100644
--- a/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-onencrypted.html
+++ b/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-onencrypted.html
@@ -18,6 +18,7 @@
async_test(function(test)
{
var video = document.getElementById('testVideo');
+ var content = '../content/test-encrypted.webm';
var onEncrypted = function(event)
{
@@ -32,7 +33,7 @@
};
waitForEventAndRunStep('encrypted', video, onEncrypted, test);
- video.src = '../content/test-encrypted.webm';
+ video.src = content;
}, 'encrypted fired on encrypted media file.');
</script>
</body>

Powered by Google App Engine
This is Rietveld 408576698