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

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

Issue 357413002: 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: few merge fixes Created 6 years, 6 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: 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>

Powered by Google App Engine
This is Rietveld 408576698