Index: LayoutTests/fast/css/image-value-type.html |
diff --git a/LayoutTests/fast/css/image-value-type.html b/LayoutTests/fast/css/image-value-type.html |
deleted file mode 100644 |
index 95ee74868bc38a8611bed36838b0e6af9831ee32..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/css/image-value-type.html |
+++ /dev/null |
@@ -1,24 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<meta charset="utf-8"> |
-<script src="../../resources/js-test.js"></script> |
-<style> |
-div#test { |
- background-image: url(stars.gif); |
-} |
-</style> |
-</head> |
-<body> |
-<script> |
- |
-description("Documents that CSS image values are not primitive values anymore."); |
- |
-var style = document.styleSheets[1].rules[0].style; |
-var imageValue = style.getPropertyCSSValue('background-image'); |
- |
-shouldBe("imageValue.cssValueType", "CSSValue.CSS_PRIMITIVE_VALUE"); |
- |
-</script> |
-</body> |
-</html> |