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

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

Issue 200633005: [CSS Shapes] Remove deprecated shapes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix test expectations 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-outside.html
diff --git a/LayoutTests/fast/shapes/parsing/parsing-shape-outside.html b/LayoutTests/fast/shapes/parsing/parsing-shape-outside.html
index 9b6d462633b8433073a852cdee5a4c73794e4b3b..0db4d45216d3ab061ddcf3f88b73458efc6999b3 100644
--- a/LayoutTests/fast/shapes/parsing/parsing-shape-outside.html
+++ b/LayoutTests/fast/shapes/parsing/parsing-shape-outside.html
@@ -29,10 +29,10 @@ testShapePropertyParsingFailure("shape-outside", "outside-shape", "none");
applyToEachArglist(
testNotInheritedShapeProperty,
[// [property, parentValue, childValue, expectedValue]
- ["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)"],
+ ["-webkit-shape-outside", "none", "circle(30px at 10px 20px)", "parent: none, child: circle(30px at 10px 20px)"],
+ ["-webkit-shape-outside", "circle(30px at 10px 20px)", "initial", "parent: circle(30px at 10px 20px), child: none"],
+ ["-webkit-shape-outside", "circle(30px at 10px 20px)", "", "parent: circle(30px at 10px 20px), child: none"],
+ ["-webkit-shape-outside", "circle(30px at 10px 20px)", "inherit", "parent: circle(30px at 10px 20px), child: circle(30px at 10px 20px)"],
["shape-outside", "", "inherit", "parent: none, child: none"],
["shape-outside", "none", "inherit", "parent: none, child: none"]]
);

Powered by Google App Engine
This is Rietveld 408576698