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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/responsive/animations-responsive-to-style-change.html

Issue 2973013002: Group all responsive animation tests together (Closed)
Patch Set: Rebase Created 3 years, 5 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="../resources/testharness.js"></script> 2 <script src="../../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script> 3 <script src="../../resources/testharnessreport.js"></script>
4 4
5 <div id='container'> 5 <div id='container'>
6 <div id='element'></div> 6 <div id='element'></div>
7 </div> 7 </div>
8 8
9 <script> 9 <script>
10 var element = document.getElementById('element'); 10 var element = document.getElementById('element');
11 var container = document.getElementById('container'); 11 var container = document.getElementById('container');
12 12
13 test(function() { 13 test(function() {
(...skipping 21 matching lines...) Expand all
35 test(function() { 35 test(function() {
36 element.style.fontSize = '1px'; 36 element.style.fontSize = '1px';
37 var player = element.animate([{lineHeight: '9'}, {lineHeight: '13'}], 10); 37 var player = element.animate([{lineHeight: '9'}, {lineHeight: '13'}], 10);
38 player.pause(); 38 player.pause();
39 player.currentTime = 2.5; 39 player.currentTime = 2.5;
40 element.style.fontSize = '7px'; 40 element.style.fontSize = '7px';
41 assert_equals(getComputedStyle(element).lineHeight, '70px'); 41 assert_equals(getComputedStyle(element).lineHeight, '70px');
42 }, 'Numbers responsive to style changes'); 42 }, 'Numbers responsive to style changes');
43 43
44 </script> 44 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698