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

Side by Side Diff: third_party/WebKit/LayoutTests/transitions/move-after-transition-expected.html

Issue 2614883005: CSS Transitions: Fix flaky move-after-transition.html (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « third_party/WebKit/LayoutTests/transitions/move-after-transition.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <html>
4 <head>
5 <style>
6 #container {
7 position: relative;
8 width: 400px;
9 height: 100px;
10 border: 1px solid black;
11 }
12 .box {
13 position: absolute;
14 width: 100px;
15 height: 100px;
16 background-color: green;
17 }
18 .indicator {
19 left: 150px;
20 top: 0;
21 background-color: red;
22 }
23 #tester {
24 transform-style: preserve-3d;
25 transform: translateX(150px);
26 }
27 </style>
28 </head>
29 <body>
30
31 <p>At the end of the test the green box should obscure the red box.</p>
32 <div id="container">
33 <div class="indicator box"></div>
34 <div id="tester" class="hardware box"></div>
35 </div>
36
37 <div id="result">
38 </div>
39
40 </body>
41 </html>
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/transitions/move-after-transition.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698