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

Unified Diff: LayoutTests/platform/chromium/media/video-black-bg-in-media-document.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (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/platform/chromium/media/video-black-bg-in-media-document.html
diff --git a/LayoutTests/platform/chromium/media/video-black-bg-in-media-document.html b/LayoutTests/platform/chromium/media/video-black-bg-in-media-document.html
deleted file mode 100644
index 18c74b6eab9b7907c17d46d308cdb450964d17bd..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium/media/video-black-bg-in-media-document.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<html>
- <head>
- <script src="../../../media/media-file.js"></script>
- <script src="../../../media/video-test.js"></script>
- <script>
- function iframeLoad() {
- var iframe = document.querySelector("iframe");
- var iframeBody = iframe.contentDocument.querySelector("body");
-
- // Required to be global for testExpected() to work properly.
- iframeBodyStyle = iframe.contentDocument.defaultView.getComputedStyle(iframeBody, null);
- testExpected("iframeBodyStyle.backgroundColor", "rgb(0, 0, 0)");
- endTest();
- }
-
- function load() {
- var iframe = document.querySelector("iframe");
- iframe.onload = iframeLoad;
- iframe.src = findMediaFile("video", "../../../media/content/counting");
- }
- </script>
- </head>
-
- <body onload="load()">
- <p>Test that video media documents have a black background.</p>
- <iframe style="width: 200px; height: 200px;"></iframe>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698