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

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

Issue 124303002: Layout support for new ellipse shape syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT 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
« no previous file with comments | « no previous file | LayoutTests/animations/interpolation/shape-outside-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/animations/interpolation/shape-outside.html
diff --git a/LayoutTests/animations/interpolation/shape-outside.html b/LayoutTests/animations/interpolation/shape-outside.html
index 6684f88893ad1ebc720a3d3e3301aa2f24fb3b93..36b813d8d4d6da4e3aea9e645ee07dace6419ca5 100644
--- a/LayoutTests/animations/interpolation/shape-outside.html
+++ b/LayoutTests/animations/interpolation/shape-outside.html
@@ -44,15 +44,15 @@ assertInterpolation({
assertInterpolation({
property: 'shape-outside',
- from: 'ellipse(0%, 0%, 100%, 100%)',
- to: 'ellipse(25%, 25%, 50%, 50%)',
+ from: 'ellipse(100% 100% at 0% 0%)',
+ to: 'ellipse(50% 50% at 25% 25%)',
}, [
- {at: -0.3, is: 'ellipse(-7.5%, -7.5%, 115%, 115%)'},
- {at: 0, is: 'ellipse(0%, 0%, 100%, 100%)'},
- {at: 0.3, is: 'ellipse(7.5%, 7.5%, 85%, 85%)'},
- {at: 0.6, is: 'ellipse(15%, 15%, 70%, 70%)'},
- {at: 1, is: 'ellipse(25%, 25%, 50%, 50%)'},
- {at: 1.5, is: 'ellipse(37.5%, 37.5%, 25%, 25%)'}
+ {at: -0.3, is: 'ellipse(115% 115% at -7.5% -7.5%)'},
+ {at: 0, is: 'ellipse(100% 100% at 0% 0%)'},
+ {at: 0.3, is: 'ellipse(85% 85% at 7.5% 7.5%)'},
+ {at: 0.6, is: 'ellipse(70% 70% at 15% 15%)'},
+ {at: 1, is: 'ellipse(50% 50% at 25% 25%)'},
+ {at: 1.5, is: 'ellipse(25% 25% at 37.5% 37.5%)'}
]);
assertInterpolation({
@@ -71,14 +71,14 @@ assertInterpolation({
assertInterpolation({
property: 'shape-outside',
from: 'auto',
- to: 'ellipse(0%, 0%, 100%, 100%)',
+ to: 'ellipse(100% 100% at 0% 0%)',
}, [
{at: -0.3, is: 'auto'},
{at: 0, is: 'auto'},
{at: 0.3, is: 'auto'},
- {at: 0.6, is: 'ellipse(0%, 0%, 100%, 100%)'},
- {at: 1, is: 'ellipse(0%, 0%, 100%, 100%)'},
- {at: 1.5, is: 'ellipse(0%, 0%, 100%, 100%)'}
+ {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%)'}
]);
</script>
</body>
« no previous file with comments | « no previous file | LayoutTests/animations/interpolation/shape-outside-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698