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

Unified Diff: LayoutTests/animations/interpolation/shape-outside.html

Issue 115253003: Layout support for new circle shape syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use FloatSize/FloatPoint's more 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 bb8f8fb240aecfd85e000d92f2fa87ba24dee1b6..6684f88893ad1ebc720a3d3e3301aa2f24fb3b93 100644
--- a/LayoutTests/animations/interpolation/shape-outside.html
+++ b/LayoutTests/animations/interpolation/shape-outside.html
@@ -31,15 +31,15 @@ assertInterpolation({
assertInterpolation({
property: 'shape-outside',
- from: 'circle(0%, 0%, 100%)',
- to: 'circle(25%, 25%, 50%)',
+ from: 'circle(100% at 0% 0%)',
+ to: 'circle(50% at 25% 25%)',
}, [
- {at: -0.3, is: 'circle(-7.5%, -7.5%, 115%)'},
- {at: 0, is: 'circle(0%, 0%, 100%)'},
- {at: 0.3, is: 'circle(7.5%, 7.5%, 85%)'},
- {at: 0.6, is: 'circle(15%, 15%, 70%)'},
- {at: 1, is: 'circle(25%, 25%, 50%)'},
- {at: 1.5, is: 'circle(37.5%, 37.5%, 25%)'}
+ {at: -0.3, is: 'circle(115% at -7.5% -7.5%)'},
+ {at: 0, is: 'circle(100% at 0% 0%)'},
+ {at: 0.3, is: 'circle(85% at 7.5% 7.5%)'},
+ {at: 0.6, is: 'circle(70% at 15% 15%)'},
+ {at: 1, is: 'circle(50% at 25% 25%)'},
+ {at: 1.5, is: 'circle(25% at 37.5% 37.5%)'}
]);
assertInterpolation({

Powered by Google App Engine
This is Rietveld 408576698