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

Unified Diff: LayoutTests/media/video-document-types.html

Issue 14195011: Removed WONTFIX tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/video-document-types.html
diff --git a/LayoutTests/media/video-document-types.html b/LayoutTests/media/video-document-types.html
deleted file mode 100644
index b0fa40cbdc0226e7d5bcd4e1398878f543f4c49f..0000000000000000000000000000000000000000
--- a/LayoutTests/media/video-document-types.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<html>
- <head>
- <script>
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
-
- function log(msg)
- {
- document.getElementById('console').appendChild(document.createTextNode(msg + "\n"));
- }
-
- function test()
- {
- var video = document.getElementById('fr').contentDocument.getElementsByTagName('video')[0];
- if (video)
- log("PASS: <video> used");
- else
- log("FAIL: <video> NOT used");
-
- if (window.testRunner) {
- testRunner.notifyDone();
- }
- }
- </script>
- </head>
- <body onload="setTimeout(test, 250)">
- <iframe src="content/counting.mp4" id="fr" width=380 height=330></iframe>
- <p>This tests that a standalone MPEG-4 file with 'sdsm' and 'odsm' tracks is opened in a MediaDocument.</p>
- <pre id="console"></pre>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698