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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/transitions/move-after-transition-expected.html
diff --git a/third_party/WebKit/LayoutTests/transitions/move-after-transition-expected.html b/third_party/WebKit/LayoutTests/transitions/move-after-transition-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..2d0f3b85df70ad5ac1109573b5695558d5d8fd49
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/transitions/move-after-transition-expected.html
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+
+<html>
+<head>
+ <style>
+ #container {
+ position: relative;
+ width: 400px;
+ height: 100px;
+ border: 1px solid black;
+ }
+ .box {
+ position: absolute;
+ width: 100px;
+ height: 100px;
+ background-color: green;
+ }
+ .indicator {
+ left: 150px;
+ top: 0;
+ background-color: red;
+ }
+ #tester {
+ transform-style: preserve-3d;
+ transform: translateX(150px);
+ }
+ </style>
+</head>
+<body>
+
+ <p>At the end of the test the green box should obscure the red box.</p>
+ <div id="container">
+ <div class="indicator box"></div>
+ <div id="tester" class="hardware box"></div>
+ </div>
+
+ <div id="result">
+ </div>
+
+</body>
+</html>
« 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