Index: third_party/WebKit/LayoutTests/transitions/remove-accelerated-transition.html |
diff --git a/third_party/WebKit/LayoutTests/transitions/remove-accelerated-transition.html b/third_party/WebKit/LayoutTests/transitions/remove-accelerated-transition.html |
index a6fe5efb9b91ab323b04b721dfe83841b8091902..a7ed204dbac0b7c5b410d8fbb0c66c0d89b083d5 100644 |
--- a/third_party/WebKit/LayoutTests/transitions/remove-accelerated-transition.html |
+++ b/third_party/WebKit/LayoutTests/transitions/remove-accelerated-transition.html |
@@ -5,7 +5,7 @@ |
background-color: red; |
height: 100px; |
width: 100px; |
- -webkit-transition: height 0.5s linear; |
+ transition: height 0.5s linear; |
overflow: hidden; |
} |
@@ -13,7 +13,7 @@ |
background-color: blue; |
height: 100px; |
width: 100px; |
- -webkit-transition: -webkit-transform 0.5s linear; |
+ transition: transform 0.5s linear; |
} |
</style> |
<script> |
@@ -31,11 +31,11 @@ |
function startTest() { |
var a = document.getElementById("a"); |
var b = document.getElementById("b"); |
- a.addEventListener("webkitTransitionEnd", endTest, false); |
+ a.addEventListener("transitionend", endTest, false); |
// Trigger transitions. |
a.style.height = "0px"; |
- b.style.webkitTransform = "translateX(10px)"; |
+ b.style.transform = "translateX(10px)"; |
// Force layout. |
document.body.offsetHeight; |