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

Unified Diff: third_party/WebKit/LayoutTests/transitions/transition-end-event-transform.html

Issue 2521493002: CSS Transitions: Reduce usage of -webkit prefix in layout tests (Closed)
Patch Set: Created 4 years, 1 month 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-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);

Powered by Google App Engine
This is Rietveld 408576698