Index: LayoutTests/fast/shapes/parsing/parsing-shape-padding.html |
diff --git a/LayoutTests/fast/shapes/parsing/parsing-shape-padding.html b/LayoutTests/fast/shapes/parsing/parsing-shape-padding.html |
deleted file mode 100644 |
index 852067ca83ad262a41101b1d91096de07e416c97..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/shapes/parsing/parsing-shape-padding.html |
+++ /dev/null |
@@ -1,43 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="../../../resources/js-test.js"></script> |
-</head> |
-<body> |
-<script src="parsing-test-utils.js"></script> |
-<script> |
-description('Test parsing of the CSS shape-padding property.'); |
- |
-// The test functions and globals used here are defined parsing-test-utils.js. |
- |
-validShapeLengths.forEach(function(value, i, a) { |
- testShapeSpecifiedProperty("shape-padding", value, value); |
-}); |
- |
-testShapeSpecifiedProperty("shape-padding", "0", "0px"); |
- |
-invalidShapeLengths.forEach(function(value, i, a) { |
- testShapeSpecifiedProperty("shape-padding", value, ""); |
-}); |
- |
-applyToEachArglist( |
- testShapeComputedProperty, |
- [// [property, value, expectedValue] |
- ["shape-padding", "0", "0px"], |
- ["shape-padding", "1px", "1px"], |
- ["shape-padding", "-5em", "0px"], |
- ["shape-padding", "identifier", "0px"], |
- ["shape-padding", "\'string\'", "0px"]] |
-); |
- |
-applyToEachArglist( |
- testNotInheritedShapeChildProperty, |
- [// [property, parentValue, childValue, expectedChildValue] |
- ["shape-padding", "0", "0", "0px"], |
- ["shape-padding", "0", "1px", "1px"], |
- ["shape-padding", "1px", "-1em", "0px"], |
- ["shape-padding", "2px", "1px", "1px"]] |
-); |
-</script> |
-</body> |
-</html> |