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

Unified Diff: LayoutTests/media/encrypted-media/encrypted-media-waiting-for-a-key.html

Issue 397463005: Change EME WebIDL to use ArrayBuffer/ArrayBufferView. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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: LayoutTests/media/encrypted-media/encrypted-media-waiting-for-a-key.html
diff --git a/LayoutTests/media/encrypted-media/encrypted-media-waiting-for-a-key.html b/LayoutTests/media/encrypted-media/encrypted-media-waiting-for-a-key.html
index f7a8c668eae8f8e92b949e2ecf658e5b55b1ef7d..b3b09055009b7d278cc0cb52ab123961ec1e70bf 100644
--- a/LayoutTests/media/encrypted-media/encrypted-media-waiting-for-a-key.html
+++ b/LayoutTests/media/encrypted-media/encrypted-media-waiting-for-a-key.html
@@ -47,7 +47,7 @@
assert_equals(event.target, mediaKeySession);
assert_equals(event.type, 'message');
- keyId = event.message;
+ keyId = decodeMessageAttribute(event);
setTimeout(verifyWaitingForKey, 250);
}

Powered by Google App Engine
This is Rietveld 408576698