Index: LayoutTests/fast/media/mq-transition.html |
diff --git a/LayoutTests/fast/media/mq-transition.html b/LayoutTests/fast/media/mq-transition.html |
deleted file mode 100644 |
index 28ba01920fabc490bbf877052476bb9489b4c864..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/media/mq-transition.html |
+++ /dev/null |
@@ -1,22 +0,0 @@ |
-<html> |
-<head> |
-<title>CSS3 media query test: media query testing transition feature.</title> |
-<link rel="help" href="http://www.webkit.org/specs/MediaQueriesExtensions.html" /> |
-<style type="text/css"> |
-@media (-webkit-transition) { |
-#a { color: green } |
-} |
-@media (-webkit-transition: 1) { |
-#b { color: green } |
-} |
-#c { color: green; } |
-@media (-webkit-transition: 0) { |
-#c { color: red } |
-}</style> |
-</head> |
-<body> |
- <p id="a">This text should be green if running in a build of WebKit with transitions.</p> |
- <p id="b">This text should be green if running in a build of WebKit with transitions.</p> |
- <p id="c">This text should be green if running in a build of WebKit with transitions.</p> |
-</body> |
-</html> |