| Index: LayoutTests/transitions/color-transition-rounding.html
|
| diff --git a/LayoutTests/transitions/color-transition-rounding.html b/LayoutTests/transitions/color-transition-rounding.html
|
| index caaa11579f9b0df86e08194c0d90f1ddf8b50317..3366b61d67d891d12b54e87ae0b7fdd8bcdde165 100644
|
| --- a/LayoutTests/transitions/color-transition-rounding.html
|
| +++ b/LayoutTests/transitions/color-transition-rounding.html
|
| @@ -5,20 +5,20 @@
|
| <style>
|
| #test {
|
| color: #00F;
|
| - -webkit-transition: color 1s linear;
|
| + -webkit-transition: color 10s linear;
|
| }
|
|
|
| #test.changed {
|
| color: #F00;
|
| }
|
| </style>
|
| - <script src="resources/transition-test-helpers.js"></script>
|
| + <script src="../animations/resources/animation-test-helpers.js"></script>
|
| <script type="text/javascript">
|
| const expectedValues = [
|
| // [time, element-id, property, expected-value, tolerance, post-completion callback, should-be-transitioning]
|
| - [0.4998, 'test', 'color', [127, 0, 128], 0],
|
| - [0.5000, 'test', 'color', [128, 0, 128], 0],
|
| - [0.5002, 'test', 'color', [128, 0, 127], 0],
|
| + [4.998, 'test', 'color', [127, 0, 128], 0],
|
| + [5.000, 'test', 'color', [128, 0, 128], 0],
|
| + [5.002, 'test', 'color', [128, 0, 127], 0],
|
| ];
|
|
|
| function setupTest()
|
| @@ -37,4 +37,4 @@
|
|
|
| <div id="result"></div>
|
| </body>
|
| -</html>
|
| +</html>
|
|
|