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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/prefixed/animation-inherit-initial-unprefixed.html

Issue 2970883003: Separate out animations tests with prefixing (Closed)
Patch Set: Rebaseline virtual/threaded version of test too 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 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../resources/js-test.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 <style> 5 <style>
6 #base { 6 #base {
7 animation-name: anim; 7 animation-name: anim;
8 animation-duration: 5s; 8 animation-duration: 5s;
9 animation-timing-function: linear; 9 animation-timing-function: linear;
10 animation-delay: 2s; 10 animation-delay: 2s;
11 animation-iteration-count: infinite; 11 animation-iteration-count: infinite;
12 animation-direction: alternate; 12 animation-direction: alternate;
13 animation-play-state: running; 13 animation-play-state: running;
14 } 14 }
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 shouldBe("computedStyle.animationDirection", "'normal'"); 93 shouldBe("computedStyle.animationDirection", "'normal'");
94 shouldBe("computedStyle.webkitAnimationDirection", "'normal'"); 94 shouldBe("computedStyle.webkitAnimationDirection", "'normal'");
95 95
96 shouldBe("computedStyle.animationPlayState", "'running'"); 96 shouldBe("computedStyle.animationPlayState", "'running'");
97 shouldBe("computedStyle.webkitAnimationPlayState", "'running'"); 97 shouldBe("computedStyle.webkitAnimationPlayState", "'running'");
98 98
99 document.body.removeChild(testContainer); 99 document.body.removeChild(testContainer);
100 </script> 100 </script>
101 </body> 101 </body>
102 </html> 102 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698