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

Side by Side Diff: LayoutTests/web-animations-api/animations-responsive-borderRadius.html

Issue 273683005: Web Animations API: Deferred computation of interpolated values (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add missing test file Created 6 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script>
4 <div id='element'></div>
5 <script>
6
7 var element = document.getElementById('element');
8
9 test(function() {
10 var keyframes = [
11 {borderTopLeftRadius: '8% 16%', offset: 0},
12 {borderTopLeftRadius: '12% 24%', offset: 1}
13 ];
14
15 element.style.width = '100';
16 element.style.height = '200';
17 var player = element.animate(keyframes, 10);
18 player.pause();
19 player.currentTime = 5;
20 element.style.width = '300';
21 element.style.height = '600';
22 assert_equals(getComputedStyle(element).borderTopLeftRadius, '10% 20%');
23 }, 'Border radius percentages are supported');
24
25 test(function() {
26 var keyframes = [
27 {borderTopLeftRadius: '8em 16em', offset: 0},
28 {borderTopLeftRadius: '12em 24em', offset: 1}
29 ];
30
31 element.style.fontSize = '10px';
32 var player = element.animate(keyframes, 10);
33 player.pause();
34 player.currentTime = 5;
35 element.style.fontSize = '20px';
36 assert_equals(getComputedStyle(element).borderTopLeftRadius, '200px 400px');
37 }, 'Border radius lengths respond to style changes');
38
39 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698