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

Side by Side Diff: third_party/WebKit/LayoutTests/media/encrypted-media/prefixed/encrypted-media-constants.html

Issue 1712903002: Remove prefixed EME. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix isRenewalMessage() in browser tests. Created 4 years, 10 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src=../../video-test.js></script>
5 <script type="text/javascript">
6 function doTest ()
7 {
8 testExpected("MediaKeyError.MEDIA_KEYERR_UNKNOWN", 1);
9 testExpected("MediaKeyError.MEDIA_KEYERR_CLIENT", 2);
10 testExpected("MediaKeyError.MEDIA_KEYERR_SERVICE", 3);
11 testExpected("MediaKeyError.MEDIA_KEYERR_OUTPUT", 4);
12 testExpected("MediaKeyError.MEDIA_KEYERR_HARDWARECHANGE", 5);
13 testExpected("MediaKeyError.MEDIA_KEYERR_DOMAIN", 6);
14 consoleWrite("");
15
16 endTest();
17 }
18 </script>
19 </head>
20 <body onload="doTest()">
21 <p>Test MediaKeyError constants and additional MediaError constant.</p>
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698