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

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

Issue 185133006: [CSS Shapes] Serialize circle/ellipse positions (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix test expectation 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-expected.txt
diff --git a/LayoutTests/fast/shapes/parsing/parsing-shape-outside-expected.txt b/LayoutTests/fast/shapes/parsing/parsing-shape-outside-expected.txt
index d4f19d47ad296a4dc854b4cf20789ce8b17ab9f8..f70147581de4b18505710bab0c2942af23f8bcdb 100644
--- a/LayoutTests/fast/shapes/parsing/parsing-shape-outside-expected.txt
+++ b/LayoutTests/fast/shapes/parsing/parsing-shape-outside-expected.txt
@@ -69,13 +69,13 @@ PASS getCSSText("shape-outside", "inset(10px 20px 30px 40px round 5px 6px 7px 8p
PASS getComputedStyleValue("shape-outside", "inset(10px 20px 30px 40px round 5px 6px 7px 8px / 50px 60px 70px 80px)") is "inset(10px 20px 30px 40px round 5px 6px 7px 8px / 50px 60px 70px 80px)"
PASS getCSSText("shape-outside", "circle(10px, 20px, 30px)") is "circle(10px, 20px, 30px)"
PASS getComputedStyleValue("shape-outside", "circle(10px, 20px, 30px)") is "circle(10px, 20px, 30px)"
-PASS getCSSText("shape-outside", "circle()") is "circle()"
+PASS getCSSText("shape-outside", "circle()") is "circle(at 50% 50%)"
PASS getComputedStyleValue("shape-outside", "circle()") is "circle(closest-side at 50% 50%)"
-PASS getCSSText("shape-outside", "circle(farthest-side)") is "circle(farthest-side)"
+PASS getCSSText("shape-outside", "circle(farthest-side)") is "circle(farthest-side at 50% 50%)"
PASS getComputedStyleValue("shape-outside", "circle(farthest-side)") is "circle(farthest-side at 50% 50%)"
-PASS getCSSText("shape-outside", "circle(closest-side)") is "circle(closest-side)"
+PASS getCSSText("shape-outside", "circle(closest-side)") is "circle(closest-side at 50% 50%)"
PASS getComputedStyleValue("shape-outside", "circle(closest-side)") is "circle(closest-side at 50% 50%)"
-PASS getCSSText("shape-outside", "circle(10px)") is "circle(10px)"
+PASS getCSSText("shape-outside", "circle(10px)") is "circle(10px at 50% 50%)"
PASS getComputedStyleValue("shape-outside", "circle(10px)") is "circle(10px at 50% 50%)"
PASS getCSSText("shape-outside", "circle(10px at 10px)") is "circle(10px at 10px 50%)"
PASS getComputedStyleValue("shape-outside", "circle(10px at 10px)") is "circle(10px at 10px 50%)"
@@ -89,19 +89,23 @@ PASS getCSSText("shape-outside", "circle(at top left)") is "circle(at 0% 0%)"
PASS getComputedStyleValue("shape-outside", "circle(at top left)") is "circle(closest-side at 0% 0%)"
PASS getCSSText("shape-outside", "circle(at right bottom)") is "circle(at 100% 100%)"
PASS getComputedStyleValue("shape-outside", "circle(at right bottom)") is "circle(closest-side at 100% 100%)"
-PASS getCSSText("shape-outside", "circle(10px at left top 10px)") is "circle(10px at left 0% top 10px)"
+PASS getCSSText("shape-outside", "circle(10px at left top 10px)") is "circle(10px at 0% 10px)"
PASS getComputedStyleValue("shape-outside", "circle(10px at left top 10px)") is "circle(10px at 0% 10px)"
-PASS getCSSText("shape-outside", "circle(10px at top 10px left 10px)") is "circle(10px at left 10px top 10px)"
+PASS getCSSText("shape-outside", "circle(10px at top 10px left 10px)") is "circle(10px at 10px 10px)"
PASS getComputedStyleValue("shape-outside", "circle(10px at top 10px left 10px)") is "circle(10px at 10px 10px)"
+PASS getCSSText("shape-outside", "circle(10px at right 10% bottom 10%)") is "circle(10px at 90% 90%)"
+PASS getComputedStyleValue("shape-outside", "circle(10px at right 10% bottom 10%)") is "circle(10px at 90% 90%)"
+PASS getCSSText("shape-outside", "circle(10px at right 0px bottom 0px)") is "circle(10px at 100% 100%)"
+PASS getComputedStyleValue("shape-outside", "circle(10px at right 0px bottom 0px)") is "circle(10px at 100% 100%)"
PASS getCSSText("shape-outside", "circle(10px at right 10px bottom 10px)") is "circle(10px at right 10px bottom 10px)"
PASS getComputedStyleValue("shape-outside", "circle(10px at right 10px bottom 10px)") is "circle(10px at right 10px bottom 10px)"
PASS getCSSText("shape-outside", "ellipse(10px, 20px, 30px, 40px)") is "ellipse(10px, 20px, 30px, 40px)"
PASS getComputedStyleValue("shape-outside", "ellipse(10px, 20px, 30px, 40px)") is "ellipse(10px, 20px, 30px, 40px)"
-PASS getCSSText("shape-outside", "ellipse()") is "ellipse()"
+PASS getCSSText("shape-outside", "ellipse()") is "ellipse(at 50% 50%)"
PASS getComputedStyleValue("shape-outside", "ellipse()") is "ellipse(closest-side closest-side at 50% 50%)"
-PASS getCSSText("shape-outside", "ellipse(10px)") is "ellipse(10px)"
+PASS getCSSText("shape-outside", "ellipse(10px)") is "ellipse(10px at 50% 50%)"
PASS getComputedStyleValue("shape-outside", "ellipse(10px)") is "ellipse(10px closest-side at 50% 50%)"
-PASS getCSSText("shape-outside", "ellipse(10px 20px)") is "ellipse(10px 20px)"
+PASS getCSSText("shape-outside", "ellipse(10px 20px)") is "ellipse(10px 20px at 50% 50%)"
PASS getComputedStyleValue("shape-outside", "ellipse(10px 20px)") is "ellipse(10px 20px at 50% 50%)"
PASS getCSSText("shape-outside", "ellipse(10px at 10px)") is "ellipse(10px at 10px 50%)"
PASS getComputedStyleValue("shape-outside", "ellipse(10px at 10px)") is "ellipse(10px closest-side at 10px 50%)"
@@ -117,15 +121,15 @@ PASS getCSSText("shape-outside", "ellipse(at top left)") is "ellipse(at 0% 0%)"
PASS getComputedStyleValue("shape-outside", "ellipse(at top left)") is "ellipse(closest-side closest-side at 0% 0%)"
PASS getCSSText("shape-outside", "ellipse(at right bottom)") is "ellipse(at 100% 100%)"
PASS getComputedStyleValue("shape-outside", "ellipse(at right bottom)") is "ellipse(closest-side closest-side at 100% 100%)"
-PASS getCSSText("shape-outside", "ellipse(10px at left top 10px)") is "ellipse(10px at left 0% top 10px)"
+PASS getCSSText("shape-outside", "ellipse(10px at left top 10px)") is "ellipse(10px at 0% 10px)"
PASS getComputedStyleValue("shape-outside", "ellipse(10px at left top 10px)") is "ellipse(10px closest-side at 0% 10px)"
-PASS getCSSText("shape-outside", "ellipse(10px at top 10px left 10px)") is "ellipse(10px at left 10px top 10px)"
+PASS getCSSText("shape-outside", "ellipse(10px at top 10px left 10px)") is "ellipse(10px at 10px 10px)"
PASS getComputedStyleValue("shape-outside", "ellipse(10px at top 10px left 10px)") is "ellipse(10px closest-side at 10px 10px)"
PASS getCSSText("shape-outside", "ellipse(10px at right 10px bottom 10px)") is "ellipse(10px at right 10px bottom 10px)"
PASS getComputedStyleValue("shape-outside", "ellipse(10px at right 10px bottom 10px)") is "ellipse(10px closest-side at right 10px bottom 10px)"
-PASS getCSSText("shape-outside", "ellipse(10px 20px at left top 10px)") is "ellipse(10px 20px at left 0% top 10px)"
+PASS getCSSText("shape-outside", "ellipse(10px 20px at left top 10px)") is "ellipse(10px 20px at 0% 10px)"
PASS getComputedStyleValue("shape-outside", "ellipse(10px 20px at left top 10px)") is "ellipse(10px 20px at 0% 10px)"
-PASS getCSSText("shape-outside", "ellipse(10px 20px at top 10px left 10px)") is "ellipse(10px 20px at left 10px top 10px)"
+PASS getCSSText("shape-outside", "ellipse(10px 20px at top 10px left 10px)") is "ellipse(10px 20px at 10px 10px)"
PASS getComputedStyleValue("shape-outside", "ellipse(10px 20px at top 10px left 10px)") is "ellipse(10px 20px at 10px 10px)"
PASS getCSSText("shape-outside", "ellipse(10px 20px at right 10px bottom 10px)") is "ellipse(10px 20px at right 10px bottom 10px)"
PASS getComputedStyleValue("shape-outside", "ellipse(10px 20px at right 10px bottom 10px)") is "ellipse(10px 20px at right 10px bottom 10px)"

Powered by Google App Engine
This is Rietveld 408576698