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

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

Issue 112103012: Update default shape property value to 'none' (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Merging with new ellipse code Created 6 years, 11 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-inside.html
diff --git a/LayoutTests/fast/shapes/parsing/parsing-shape-inside.html b/LayoutTests/fast/shapes/parsing/parsing-shape-inside.html
index e83b7ed44b353a7c8b904928e4fcdfbf8c70eb66..fc1842642a663d2279e4b2f2537f1dbf96147db0 100644
--- a/LayoutTests/fast/shapes/parsing/parsing-shape-inside.html
+++ b/LayoutTests/fast/shapes/parsing/parsing-shape-inside.html
@@ -21,19 +21,19 @@ validShapeValues.concat("outside-shape").forEach(function(elt, i, a) {
testLocalURLShapeProperty("shape-inside", "url(\'image\')", "url(image)");
invalidShapeValues.forEach(function(value, i, a) {
- testShapePropertyParsingFailure("shape-inside", value, "auto")
+ testShapePropertyParsingFailure("shape-inside", value, "none")
});
applyToEachArglist(
testNotInheritedShapeProperty,
[// [property, parentValue, childValue, expectedValue]
- ["shape-inside", "auto", "rectangle(10px, 20px, 30px, 40px)", "parent: auto, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)"],
+ ["shape-inside", "none", "rectangle(10px, 20px, 30px, 40px)", "parent: none, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)"],
["shape-inside", "outside-shape", "rectangle(10px, 20px, 30px, 40px)", "parent: outside-shape, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)"],
- ["shape-inside", "rectangle(10px, 20px, 30px, 40px)", "initial", "parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: auto"],
- ["shape-inside", "rectangle(10px, 20px, 30px, 40px)", "", "parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: auto"],
+ ["shape-inside", "rectangle(10px, 20px, 30px, 40px)", "initial", "parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: none"],
+ ["shape-inside", "rectangle(10px, 20px, 30px, 40px)", "", "parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: none"],
["shape-inside", "rectangle(10px, 20px, 30px, 40px)", "inherit", "parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)"],
- ["shape-inside", "", "inherit", "parent: auto, child: auto"],
- ["shape-inside", "auto", "inherit", "parent: auto, child: auto"]]
+ ["shape-inside", "", "inherit", "parent: none, child: none"],
+ ["shape-inside", "none", "inherit", "parent: none, child: none"]]
);
</script>
</body>

Powered by Google App Engine
This is Rietveld 408576698