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