| Index: third_party/WebKit/LayoutTests/transitions/transition-end-event-transform.html
|
| diff --git a/third_party/WebKit/LayoutTests/transitions/transition-end-event-transform.html b/third_party/WebKit/LayoutTests/transitions/transition-end-event-transform.html
|
| index abd4e760fb24b127b217d9a7199f42685e3f6590..283348f365c497adcc18d3e92d46b5e45c4411f9 100644
|
| --- a/third_party/WebKit/LayoutTests/transitions/transition-end-event-transform.html
|
| +++ b/third_party/WebKit/LayoutTests/transitions/transition-end-event-transform.html
|
| @@ -8,8 +8,8 @@
|
| width: 100px;
|
| margin: 10px;
|
| background-color: blue;
|
| - -webkit-transition-property: transform;
|
| - -webkit-transition-duration: 0.5s;
|
| + transition-property: transform;
|
| + transition-duration: 0.5s;
|
| transform: translate(100px);
|
| }
|
| </style>
|
| @@ -24,7 +24,7 @@
|
| function setupTest()
|
| {
|
| var box = document.getElementById('box1');
|
| - box.style.webkitTransform = 'translate(200px)';
|
| + box.style.transform = 'translate(200px)';
|
| }
|
|
|
| runTransitionTest(expectedEndEvents, setupTest);
|
|
|