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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/opacity-transform-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 type="text/css" media="screen"> 4 <style type="text/css" media="screen">
5 .target { 5 .target {
6 position: absolute; 6 position: absolute;
7 top: 100px; 7 top: 100px;
8 left: 0; 8 left: 0;
9 height: 100px; 9 height: 100px;
10 width: 100px; 10 width: 100px;
11 } 11 }
12 #box { 12 #box {
13 background-color: green; 13 background-color: green;
14 transform: translateX(200px) scale(1) translateZ(0); 14 transform: translateX(200px) scale(1) translateZ(0);
15 opacity: 0.5; 15 opacity: 0.5;
16 } 16 }
17 #indicator { 17 #indicator {
18 left: 200px; 18 left: 200px;
19 background-color: red; 19 background-color: red;
20 } 20 }
21 </style> 21 </style>
22 </head> 22 </head>
23 <body> 23 <body>
24 <div class="target" id="indicator"></div> 24 <div class="target" id="indicator"></div>
25 <div class="target" id="box"></div> 25 <div class="target" id="box"></div>
26 <div id="result"> 26 <div id="result">
27 PASS - "webkitTransform.4" property for "box" element at 0.5s saw something clos e to: 200</div> 27 PASS - "transform.4" property for "box" element at 0.5s saw something close to: 200</div>
28 </body> 28 </body>
29 </html> 29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698