Skip to content

Commit 3d3e869

Browse files
ogerchikovchromium-wpt-export-bot
authored andcommitted
Updated transform-interpolation-computed-value.html with missing cases
Bug: 1181086 Change-Id: I155c8c6d707899d2260b60bcaea912b631bc0b44 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2909362 Reviewed-by: David Baron <[email protected]> Reviewed-by: Kevin Ellis <[email protected]> Commit-Queue: Olga Gerchikov <[email protected]> Cr-Commit-Position: refs/heads/master@{#886075}
1 parent 19c8f75 commit 3d3e869

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

css/css-transforms/animation/transform-interpolation-computed-value.html

+3
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@
5151
interpolation_test('translateX(50px)', 'translateZ(50px)', 'translate3d(25px, 0px, 25px)');
5252
interpolation_test('translateZ(50px)', 'translateX(50px)', 'translate3d(25px, 0px, 25px)');
5353
interpolation_test('translateZ(-50px)','translateZ(50px)', 'translateZ(0px)');
54+
interpolation_test('translate(0%)', 'translate(50%)', 'translate(25%)');
55+
interpolation_test('translate(50%)', 'translate(100%, 50%)', 'translate(75%, 25%)');
5456
interpolation_test('translate3d(0,0,-50px)','translateZ(50px)', 'translate3d(0px, 0px, 0px)');
5557

5658
interpolation_test('rotate(30deg)', 'rotate(90deg)', 'rotate(60deg)');
@@ -60,6 +62,7 @@
6062
interpolation_test('rotate(0deg)', 'rotateX(90deg)', 'rotate3d(1, 0, 0, 45deg)');
6163

6264
interpolation_test('scale(1)', 'scale(2)', 'scale(1.5)');
65+
interpolation_test('scale(1, 3)', 'scale(2)', 'scale(1.5, 2.5)');
6366
interpolation_test('scaleX(1)', 'scaleX(2)', 'scaleX(1.5)');
6467
interpolation_test('scaleY(1)', 'scaleY(2)', 'scaleY(1.5)');
6568
interpolation_test('scaleZ(1)', 'scaleZ(2)', 'scaleZ(1.5)');

0 commit comments

Comments
 (0)