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

Side by Side Diff: LayoutTests/media/encrypted-media/encrypted-media-v2-events.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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Verify v2 events</title> 4 <title>Verify v2 events</title>
5 <script src="encrypted-media-utils.js"></script> 5 <script src="encrypted-media-utils.js"></script>
6 <script src="../../resources/testharness.js"></script> 6 <script src="../../resources/testharness.js"></script>
7 <script src="../../resources/testharnessreport.js"></script> 7 <script src="../../resources/testharnessreport.js"></script>
8 </head> 8 </head>
9 <body> 9 <body>
10 <div id="log"></div> 10 <div id="log"></div>
(...skipping 16 matching lines...) Expand all
27 return mediaKeys.createSession(initDataType, getInitData(ini tDataType)); 27 return mediaKeys.createSession(initDataType, getInitData(ini tDataType));
28 }).then(function(result) { 28 }).then(function(result) {
29 mediaKeySession = result; 29 mediaKeySession = result;
30 waitForEventAndRunStep('message', mediaKeySession, processMe ssage, test); 30 waitForEventAndRunStep('message', mediaKeySession, processMe ssage, test);
31 }).catch(function(error) { 31 }).catch(function(error) {
32 forceTestFailureFromPromise(test, error); 32 forceTestFailureFromPromise(test, error);
33 }); 33 });
34 }, 'Verify v2 events.'); 34 }, 'Verify v2 events.');
35 </script> 35 </script>
36 </body> 36 </body>
37 </html> 37 </html>
ddorwin 2014/07/16 22:34:57 ? This file probably doesn't belong in this CL.
jrummell 2014/07/18 21:56:00 Removed. The file is missing \n at the end, which
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698