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

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: rebase 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..e6ae2353f76f5bb0224a27c3f0a9ac2a79980d4b 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 = new Uint8Array(event.message);
setTimeout(verifyWaitingForKey, 250);
}
« no previous file with comments | « LayoutTests/media/encrypted-media/encrypted-media-utils.js ('k') | Source/modules/encryptedmedia/MediaKeyMessageEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698