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

Unified Diff: third_party/WebKit/LayoutTests/transitions/transition-end-event-window.html

Issue 2602163002: CSS Transitions: Reduce time taken by transition-end-event tests (Closed)
Patch Set: Created 4 years 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
Index: third_party/WebKit/LayoutTests/transitions/transition-end-event-window.html
diff --git a/third_party/WebKit/LayoutTests/transitions/transition-end-event-window.html b/third_party/WebKit/LayoutTests/transitions/transition-end-event-window.html
index f355c5178ea7723b54792e9e541cf3de6c26349d..a0ba4306062cb30b3f7a3560ccde560b558e368a 100644
--- a/third_party/WebKit/LayoutTests/transitions/transition-end-event-window.html
+++ b/third_party/WebKit/LayoutTests/transitions/transition-end-event-window.html
@@ -9,7 +9,7 @@
margin: 10px;
background-color: blue;
-webkit-transition-property: left;
- -webkit-transition-duration: 0.5s;
+ -webkit-transition-duration: 0.1s;
}
</style>
<script src="transition-end-event-helpers.js"></script>
@@ -17,7 +17,7 @@
var expectedEndEvents = [
// [property-name, element-id, elapsed-time, listen]
- ["left", "box1", 0.5, false]
+ ["left", "box1", 0.1, false]
];
function setupTest()
@@ -33,7 +33,7 @@
</head>
<body>
-<p>Initiating a 500ms transition on the left property of box1 and catching it on the window.</p>
+<p>Initiating a 100ms transition on the left property of box1 and catching it on the window.</p>
<div id="container">
<div id="box1" class="box"></div>

Powered by Google App Engine
This is Rietveld 408576698