| 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>
|
|
|