| Index: third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-length.html
|
| diff --git a/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-length.html b/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-length.html
|
| index 0f8b0ce58359913c8d3021d48e7a305785a0bc60..b1c4c04395ec52884af5574509de2de0fb8443bb 100644
|
| --- a/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-length.html
|
| +++ b/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-length.html
|
| @@ -10,7 +10,7 @@
|
| width: 100px;
|
| margin: 10px;
|
| background-color: blue;
|
| - -webkit-transition: left 1s linear;
|
| + transition: left 1s linear;
|
| }
|
| .animating > .box {
|
| left: 400px;
|
| @@ -41,10 +41,10 @@
|
| </head>
|
| <body>
|
| <div id="container">
|
| - <div class="box" id="box1" style="-webkit-transition-timing-function: cubic-bezier(0.3, 1.5, 0.8, 1.5);"></div>
|
| - <div class="box" id="box2" style="-webkit-transition-timing-function: cubic-bezier(0.4, -0.8, 0.7, 1.7);"></div>
|
| - <div class="box" id="box3" style="-webkit-transition-timing-function: cubic-bezier(0.7, -2, 1, -1.5);"></div>
|
| - <div class="box" id="box4" style="-webkit-transition-timing-function: cubic-bezier(0, 4, 1, -3);"></div>
|
| + <div class="box" id="box1" style="transition-timing-function: cubic-bezier(0.3, 1.5, 0.8, 1.5);"></div>
|
| + <div class="box" id="box2" style="transition-timing-function: cubic-bezier(0.4, -0.8, 0.7, 1.7);"></div>
|
| + <div class="box" id="box3" style="transition-timing-function: cubic-bezier(0.7, -2, 1, -1.5);"></div>
|
| + <div class="box" id="box4" style="transition-timing-function: cubic-bezier(0, 4, 1, -3);"></div>
|
| </div>
|
| <div id="result"></div>
|
| </body>
|
|
|