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