Index: third_party/WebKit/LayoutTests/fast/css/webkit-text-display-none.html |
diff --git a/third_party/WebKit/LayoutTests/fast/css/webkit-text-display-none.html b/third_party/WebKit/LayoutTests/fast/css/webkit-text-display-none.html |
deleted file mode 100644 |
index 3b2314665dc888a0a60deba40fd4700776b7411b..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/css/webkit-text-display-none.html |
+++ /dev/null |
@@ -1,19 +0,0 @@ |
-<html> |
-<head> |
-<script src="../../resources/js-test.js"></script> |
-</head> |
-<body style="display:none"> |
-<script type="text/javascript"> |
-description("This test checks that setting display to none on the body element does not change -webkit-text."); |
- |
-document.body.style.color = "green"; |
- |
-var d = document.createElement("div"); |
-d.style.color = "-webkit-text"; |
-document.documentElement.appendChild(d); |
- |
-shouldBe("getComputedStyle(d).getPropertyValue('color')", "'rgb(0, 128, 0)'"); |
-document.body.style.display = "block"; |
-</script> |
-</body> |
-</html> |