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

Unified Diff: chrome/test/data/media/test_key_system_instantiation.html

Issue 408993002: Have media content and chrome browser tests load data from media/test/data (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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
« no previous file with comments | « chrome/test/data/media/mse_config_change.html ('k') | content/browser/media/encrypted_media_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/media/test_key_system_instantiation.html
diff --git a/chrome/test/data/media/test_key_system_instantiation.html b/chrome/test/data/media/test_key_system_instantiation.html
deleted file mode 100644
index d3fb0e33ba630c4dedb6d7162f6a6e3d12077610..0000000000000000000000000000000000000000
--- a/chrome/test/data/media/test_key_system_instantiation.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
- <body>
- <video controls="" name="video">
- <!-- This test doesn't play the video, so any file will do
- as long as it can be loaded. -->
- <source src="bear-320x240-av-enc_a.webm" type="video/webm">
- </video>
- <script type="text/javascript">
- function testKeySystemInstantiation(keySystem) {
- var video = document.getElementsByTagName('video')[0];
- var initData = new Uint8Array([0x41, 0x42, 0x43]);
- try {
- video.webkitGenerateKeyRequest(keySystem, initData);
- return 'success';
- } catch (err) {
- return err.name;
- }
- }
- </script>
- </body>
-</html>
« no previous file with comments | « chrome/test/data/media/mse_config_change.html ('k') | content/browser/media/encrypted_media_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698