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

Unified Diff: third_party/WebKit/LayoutTests/transitions/transition-end-event-attributes.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-attributes.html
diff --git a/third_party/WebKit/LayoutTests/transitions/transition-end-event-attributes.html b/third_party/WebKit/LayoutTests/transitions/transition-end-event-attributes.html
index 6d1ad4d97a4d30a986519e9b20eebb63a739cef9..05129b6d582d0240be0a474a93a1118337a7e07f 100644
--- a/third_party/WebKit/LayoutTests/transitions/transition-end-event-attributes.html
+++ b/third_party/WebKit/LayoutTests/transitions/transition-end-event-attributes.html
@@ -8,8 +8,8 @@
width: 100px;
margin: 10px;
background-color: blue;
- -webkit-transition-property: left;
- -webkit-transition-duration: 0.5s;
+ transition-property: left;
+ transition-duration: 0.5s;
}
</style>
<script src="transition-end-event-helpers.js"></script>
@@ -34,7 +34,7 @@
<p>Initiating a 500ms transition on the left property of box1.</p>
<div id="container">
- <div id="box1" class="box" onwebkittransitionend="recordTransitionEndEvent(event);"></div>
+ <div id="box1" class="box" ontransitionend="recordTransitionEndEvent(event);"></div>
</div>
<div id="result"></div>

Powered by Google App Engine
This is Rietveld 408576698