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

Unified Diff: LayoutTests/fast/shapes/parsing/parsing-shape-outside.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-outside.html
diff --git a/LayoutTests/fast/shapes/parsing/parsing-shape-outside.html b/LayoutTests/fast/shapes/parsing/parsing-shape-outside.html
index 7527ffabfcb4878b327abbf4394532aae7dbcf4f..9b6d462633b8433073a852cdee5a4c73794e4b3b 100644
--- a/LayoutTests/fast/shapes/parsing/parsing-shape-outside.html
+++ b/LayoutTests/fast/shapes/parsing/parsing-shape-outside.html
@@ -21,20 +21,20 @@ validShapeValues.forEach(function(elt, i, a) {
testLocalURLShapeProperty("shape-outside", "url(\'image\')", "url(image)");
invalidShapeValues.forEach(function(value, i, a) {
- testShapePropertyParsingFailure("shape-outside", value, "auto")
+ testShapePropertyParsingFailure("shape-outside", value, "none")
});
-testShapePropertyParsingFailure("shape-outside", "outside-shape", "auto");
+testShapePropertyParsingFailure("shape-outside", "outside-shape", "none");
applyToEachArglist(
testNotInheritedShapeProperty,
[// [property, parentValue, childValue, expectedValue]
- ["shape-outside", "auto", "rectangle(10px, 20px, 30px, 40px)", "parent: auto, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)"],
- ["shape-outside", "rectangle(10px, 20px, 30px, 40px)", "initial", "parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: auto"],
- ["shape-outside", "rectangle(10px, 20px, 30px, 40px)", "", "parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: auto"],
+ ["shape-outside", "none", "rectangle(10px, 20px, 30px, 40px)", "parent: none, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)"],
+ ["shape-outside", "rectangle(10px, 20px, 30px, 40px)", "initial", "parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: none"],
+ ["shape-outside", "rectangle(10px, 20px, 30px, 40px)", "", "parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: none"],
["shape-outside", "rectangle(10px, 20px, 30px, 40px)", "inherit", "parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)"],
- ["shape-outside", "", "inherit", "parent: auto, child: auto"],
- ["shape-outside", "auto", "inherit", "parent: auto, child: auto"]]
+ ["shape-outside", "", "inherit", "parent: none, child: none"],
+ ["shape-outside", "none", "inherit", "parent: none, child: none"]]
);
</script>
</body>

Powered by Google App Engine
This is Rietveld 408576698