Index: LayoutTests/fast/media/viewport-in-standalone-media-document.html |
diff --git a/LayoutTests/fast/media/viewport-in-standalone-media-document.html b/LayoutTests/fast/media/viewport-in-standalone-media-document.html |
deleted file mode 100644 |
index a777146eb98eadced132ffdc6a9ff86dba0905ef..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/media/viewport-in-standalone-media-document.html |
+++ /dev/null |
@@ -1,35 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
- <head> |
- <script src="../../media/media-file.js"></script> |
- <script src="../../media/video-test.js"></script> |
- <script> |
- var metaElement; |
- var standaloneMediaDocument; |
- var skipOnFirstEmptyLoad = 0; |
- |
- function frameLoaded() |
- { |
- if (++skipOnFirstEmptyLoad == 1) |
- return; |
- |
- standaloneMediaDocument = document.getElementById("videoframe").contentDocument; |
- metaElement = standaloneMediaDocument.querySelector("meta"); |
- |
- testExpected("metaElement.name", "viewport"); |
- testExpected("metaElement.content", "width=device-width"); |
- |
- endTest(); |
- } |
- </script> |
- </head> |
- <body> |
- <p> |
- This tests that a standalone media document has viewport settings. |
- </p> |
- <iframe id="videoframe" onload="frameLoaded()"></iframe> |
- <script> |
- document.getElementById("videoframe").src = "../../media/" + findMediaFile("video", "content/test"); |
- </script> |
- </body> |
-</html> |