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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/custom-properties/registered-var-to-registered.html

Issue 2809063002: WIP Support var() references in registered custom property keyframes (Closed)
Patch Set: Rebased Created 3 years, 6 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/custom-properties/registered-var-to-registered-animating.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../../resources/testharness.js"></script>
3 <script src="../../resources/testharnessreport.js"></script>
4 <style>
5 #target {
6 --from: 100;
7 --to: 200;
8 }
9 </style>
10 <div id="target"></div>
11 <script>
12 for (let name of ['--test', '--from', '--to']) {
13 CSS.registerProperty({
14 name,
15 syntax: '<number>',
16 initialValue: '0',
17 });
18 }
19
20 test(() => {
21 let animation = target.animate({'--test': ['var(--from)', 'var(--to)']}, 100);
22
23 animation.currentTime = 25;
24 assert_equals(getComputedStyle(target).getPropertyValue('--test'), '125', 'tar get at 25%');
25
26 animation.currentTime = 75;
27 assert_equals(getComputedStyle(target).getPropertyValue('--test'), '175', 'tar get at 75%');
28 }, 'Registered custom property animation keyframes with var() references to regi stered custom properties');
29 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/custom-properties/registered-var-to-registered-animating.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698