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

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

Issue 144373002: [CSS Shapes] Basic shapes' computed position should be a horizontal and vertical offset (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT Created 6 years, 10 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 63aeba475e998f752f9f23c3a0f622569617afec..a8fd191cd4eccc0756083907e57d7acb19a392f9 100644
--- a/LayoutTests/animations/interpolation/shape-outside.html
+++ b/LayoutTests/animations/interpolation/shape-outside.html
@@ -93,5 +93,15 @@ assertInterpolation({
{at: 1, is: 'ellipse(100% 100% at 0% 0%)'},
{at: 1.5, is: 'ellipse(100% 100% at 0% 0%)'}
]);
+
+// TODO: add intermediate keyframe tests when CSS shapes position computed values are cleaned up
dstockwell 2014/02/28 01:57:53 I think it's better to add these now and check in
+assertInterpolation({
+ property: 'shape-outside',
+ from: 'circle(20% at right 10% bottom 20px)',
+ to: 'circle(30% at right 20% bottom 30px)',
+}, [
+ {at: 0, is: 'circle(20% at right 10% bottom 20px)'},
+ {at: 1, is: 'circle(30% at right 20% bottom 30px)'},
+]);
</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