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

Unified Diff: third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-update-disallowed-input.html

Issue 2342953002: Update EME errors to use TypeError (Closed)
Patch Set: changes Created 4 years, 2 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-update-disallowed-input.html
diff --git a/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-update-disallowed-input.html b/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-update-disallowed-input.html
index e605bf66f9b464dd447cc946be37df16c45c43c3..2467aea9daffcf07ba758f8aeac7c9eeefe8b582 100644
--- a/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-update-disallowed-input.html
+++ b/third_party/WebKit/LayoutTests/media/encrypted-media/encrypted-media-update-disallowed-input.html
@@ -48,7 +48,7 @@
mediaKeySession.update(jwkSetArray).then(function() {
forceTestFailureFromPromise(test, 'Error: update() succeeded');
}, function(error) {
- assert_equals(error.name, 'InvalidAccessError');
+ assert_equals(error.name, 'TypeError');
test.done();
});
}

Powered by Google App Engine
This is Rietveld 408576698