Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Unified Diff: LayoutTests/fast/shapes/parsing/parsing-shape-padding.html

Issue 216793009: Remove shape-padding (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove m_padding Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698