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

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

Issue 851693005: [CSS Shapes] Implement BasicShapeInset blending (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 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 afff17995dbb44f374de3cb01a40dec8d58bb033..01b275b60399335c8ebc27cbe0f2e1ee6a4c0f42 100644
--- a/LayoutTests/animations/interpolation/shape-outside.html
+++ b/LayoutTests/animations/interpolation/shape-outside.html
@@ -59,6 +59,19 @@ assertInterpolation({
assertInterpolation({
property: 'shape-outside',
+ from: 'inset(0%)',
+ to: 'inset(20%)',
+}, [
+ {at: -0.3, is: 'inset(-6%)'},
+ {at: 0, is: 'inset(0%)'},
+ {at: 0.3, is: 'inset(6%)'},
+ {at: 0.6, is: 'inset(12%)'},
+ {at: 1, is: 'inset(20%)'},
+ {at: 1.5, is: 'inset(30%)'},
+]);
+
+assertInterpolation({
+ property: 'shape-outside',
from: 'none',
to: 'ellipse(100% 100% at 0% 0%)',
}, [
« 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