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

Unified Diff: LayoutTests/animations/interpolation/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/animations/interpolation/shape-outside.html
diff --git a/LayoutTests/animations/interpolation/shape-outside.html b/LayoutTests/animations/interpolation/shape-outside.html
index 36b813d8d4d6da4e3aea9e645ee07dace6419ca5..6a0953e44f93b8d83e0b7c3ca3fbf8930538ae8c 100644
--- a/LayoutTests/animations/interpolation/shape-outside.html
+++ b/LayoutTests/animations/interpolation/shape-outside.html
@@ -70,12 +70,12 @@ assertInterpolation({
assertInterpolation({
property: 'shape-outside',
- from: 'auto',
+ from: 'none',
to: 'ellipse(100% 100% at 0% 0%)',
}, [
- {at: -0.3, is: 'auto'},
- {at: 0, is: 'auto'},
- {at: 0.3, is: 'auto'},
+ {at: -0.3, is: 'none'},
+ {at: 0, is: 'none'},
+ {at: 0.3, is: 'none'},
{at: 0.6, is: 'ellipse(100% 100% at 0% 0%)'},
{at: 1, is: 'ellipse(100% 100% at 0% 0%)'},
{at: 1.5, is: 'ellipse(100% 100% at 0% 0%)'}

Powered by Google App Engine
This is Rietveld 408576698