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

Side by Side Diff: LayoutTests/animations/empty-keyframes-composited.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 2
3 <style> 3 <style>
4 p { 4 p {
5 -webkit-transform: rotateX(0deg); 5 transform: rotateX(0deg);
6 -webkit-animation: 1s test; 6 -webkit-animation: 1s test;
7 } 7 }
8 @-webkit-keyframes test { 8 @-webkit-keyframes test {
9 0% { 9 0% {
10 } 10 }
11 } 11 }
12 </style> 12 </style>
13 13
14 <p>Tests an animation where all keyframes are empty, applied to an element which is composited. 14 <p>Tests an animation where all keyframes are empty, applied to an element which is composited.
15 <p>This test passes if it doesn't crash. 15 <p>This test passes if it doesn't crash.
16 16
17 <script> 17 <script>
18 if (window.testRunner) 18 if (window.testRunner)
19 testRunner.dumpAsText(); 19 testRunner.dumpAsText();
20 </script> 20 </script>
OLDNEW
« no previous file with comments | « LayoutTests/animations/empty-keyframe-animation-composited.html ('k') | LayoutTests/animations/fill-mode-forwards2.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698