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

Unified Diff: third_party/WebKit/LayoutTests/transitions/transition-end-event-unprefixed-01.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-unprefixed-01.html
diff --git a/third_party/WebKit/LayoutTests/transitions/transition-end-event-unprefixed-01.html b/third_party/WebKit/LayoutTests/transitions/transition-end-event-unprefixed-01.html
index 37710cfc584f1ba2000bc3ea75ae65aeccdc83cc..188d6394e99c50fa865ad9a045212a34f2c5d4d2 100644
--- a/third_party/WebKit/LayoutTests/transitions/transition-end-event-unprefixed-01.html
+++ b/third_party/WebKit/LayoutTests/transitions/transition-end-event-unprefixed-01.html
@@ -10,9 +10,9 @@
margin: 10px;
background-color: blue;
transition-property: left;
- transition-duration: 0.5s;
+ transition-duration: 0.05s;
-webkit-transition-property: left;
- -webkit-transition-duration: 0.5s;
+ -webkit-transition-duration: 0.05s;
}
</style>
<script src="transition-end-event-helpers.js"></script>
@@ -20,7 +20,7 @@
var expectedEndEvents = [
// [property-name, element-id, elapsed-time, listen]
- ["left", "box1", 0.5, false]
+ ["left", "box1", 0.05, false]
];
function setupTest()

Powered by Google App Engine
This is Rietveld 408576698