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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/change-transform-style-during-animation-expected.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 <style> 4 <style>
5 #container { 5 #container {
6 transform: translateZ(0px); 6 transform: translateZ(0px);
7 -webkit-perspective: 400; 7 perspective: 400;
8 } 8 }
9 9
10 #revealed { 10 #revealed {
11 position: absolute; 11 position: absolute;
12 left: 100px; 12 left: 100px;
13 height: 100px; 13 height: 100px;
14 width: 100px; 14 width: 100px;
15 background-color: green; 15 background-color: green;
16 } 16 }
17 17
18 #animated { 18 #animated {
19 position: absolute; 19 position: absolute;
20 left: 100px; 20 left: 100px;
21 height: 100px; 21 height: 100px;
22 width: 100px; 22 width: 100px;
23 background-color: red; 23 background-color: red;
24 transform: translateZ(200px) translateX(-200px); 24 transform: translateZ(200px) translateX(-200px);
25 -webkit-transform-style: preserve-3d; 25 transform-style: preserve-3d;
26 } 26 }
27 </style> 27 </style>
28 </head> 28 </head>
29 <body> 29 <body>
30 <div id="container"> 30 <div id="container">
31 <div id="revealed"></div> 31 <div id="revealed"></div>
32 <div id="animated"></div> 32 <div id="animated"></div>
33 </div> 33 </div>
34 <div id="result"> 34 <div id="result">
35 PASS - Computed final position is correct. 35 PASS - Computed final position is correct.
36 </div> 36 </div>
37 </body> 37 </body>
38 </html> 38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698