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

Unified Diff: third_party/WebKit/LayoutTests/compositing/geometry/partial-layout-update.html

Issue 2518943002: 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/compositing/geometry/partial-layout-update.html
diff --git a/third_party/WebKit/LayoutTests/compositing/geometry/partial-layout-update.html b/third_party/WebKit/LayoutTests/compositing/geometry/partial-layout-update.html
index c2e776a79d144756c7b95b60fbcc294213ea2c6e..515511015eece1a340d61ddae792eb4654f2ea9b 100644
--- a/third_party/WebKit/LayoutTests/compositing/geometry/partial-layout-update.html
+++ b/third_party/WebKit/LayoutTests/compositing/geometry/partial-layout-update.html
@@ -20,7 +20,7 @@
height: 200px;
z-index: 3;
background-color: #bbb;
- -webkit-transition: left 0.1s linear;
+ transition: left 0.1s linear;
}
.box {
@@ -47,7 +47,7 @@
function startProgram()
{
var panel = document.getElementById("panel");
- panel.addEventListener('webkitTransitionEnd', function() {
+ panel.addEventListener('transitionend', function() {
if (window.testRunner)
window.setTimeout(function() { testRunner.notifyDone(); }, 0);
}, false);

Powered by Google App Engine
This is Rietveld 408576698