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

Unified Diff: third_party/WebKit/ManualTests/transition-events.html

Issue 2715113003: CSS manual tests: reduce usage of webkit prefix (Closed)
Patch Set: Created 3 years, 10 months 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/ManualTests/transition-events.html
diff --git a/third_party/WebKit/ManualTests/transition-events.html b/third_party/WebKit/ManualTests/transition-events.html
index 36cf940b106b32b7b68251ef812d280206f1d05b..4c2ef17236b301a65080696c580d0f5dcc508f7d 100644
--- a/third_party/WebKit/ManualTests/transition-events.html
+++ b/third_party/WebKit/ManualTests/transition-events.html
@@ -13,8 +13,8 @@
margin: 10px;
background-color: blue;
z-index: 0;
- -webkit-transition-property: left;
- -webkit-transition-duration: 2s;
+ transition-property: left;
+ transition-duration: 2s;
left: 0px;
}
@@ -25,8 +25,8 @@
margin: 10px;
background-color: red;
z-index: 0;
- -webkit-transition-property: left;
- -webkit-transition-duration: 2s;
+ transition-property: left;
+ transition-duration: 2s;
left: 0px;
}
@@ -43,7 +43,7 @@
var switch1 = true;
var switch2 = false;
- document.addEventListener('webkitTransitionEnd', function(e) {
+ document.addEventListener('transitionend', function(e) {
var id = "1";
if (switch1) {
id = "2";
« no previous file with comments | « third_party/WebKit/ManualTests/svg-css-transition-compound.html ('k') | third_party/WebKit/ManualTests/transition-left.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698