Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
graouts authored Oct 19, 2024
1 parent 0da8f0a commit 5a9d934
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scroll-animations/css/animation-timeline-computed.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,8 @@
test_computed_value('animation-timeline', 'view(1px y)', 'view(y 1px)');
test_computed_value('animation-timeline', 'view(y auto)', 'view(y)');
test_computed_value('animation-timeline', 'view(y auto auto)', 'view(y)');
test_computed_value('animation-timeline', 'view(10% 10px)', 'view(10% 10px)');
test_computed_value('animation-timeline', 'view(auto calc(1% + 1px))');
test_computed_value('animation-timeline', 'view(2em calc(1% + 1em))', 'view(32px calc(1% + 16px))');

</script>
1 change: 1 addition & 0 deletions scroll-animations/css/animation-timeline-parsing.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
test_valid_value('animation-timeline', 'view(1px 1px)', 'view(1px)');
test_valid_value('animation-timeline', 'view(1px auto)');
test_valid_value('animation-timeline', 'view(auto calc(1% + 1px))');
test_valid_value('animation-timeline', 'view(2em calc(1% + 1em))');
test_valid_value('animation-timeline', 'view(auto)', 'view()');
test_valid_value('animation-timeline', 'view(auto auto)', 'view()');

Expand Down

0 comments on commit 5a9d934

Please sign in to comment.