| Index: third_party/WebKit/LayoutTests/transitions/transition-end-event-container.html
|
| diff --git a/third_party/WebKit/LayoutTests/transitions/transition-end-event-container.html b/third_party/WebKit/LayoutTests/transitions/transition-end-event-container.html
|
| index f0ee7ddbd19ec11e86e653c7ba178c3e09a01208..c66df04b6d367d3e25c1c899e408d73b277de684 100644
|
| --- a/third_party/WebKit/LayoutTests/transitions/transition-end-event-container.html
|
| +++ b/third_party/WebKit/LayoutTests/transitions/transition-end-event-container.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 parent.</p>
|
| +<p>Initiating a 100ms transition on the left property of box1 and catching it on the parent.</p>
|
|
|
| <div id="container">
|
| <div id="box1" class="box"></div>
|
|
|