Index: third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-color.html |
diff --git a/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-color.html b/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-color.html |
index 2c2e8b082622fcfb22ad34bc27a90213aa6ed213..5b64587c587c5da35de1e279db80298074689a0c 100644 |
--- a/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-color.html |
+++ b/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-color.html |
@@ -10,7 +10,7 @@ |
width: 100px; |
margin: 10px; |
background-color: #404040; |
- -webkit-transition: background-color 1s linear; |
+ transition: background-color 1s linear; |
} |
.animating > .box { |
background-color: #C0C0C0; |
@@ -44,10 +44,10 @@ |
</head> |
<body> |
<div id="container"> |
- <div class="box" id="box1" style="-webkit-transition-timing-function: cubic-bezier(0.3, 1.5, 0.8, 1.5);"></div> |
- <div class="box" id="box2" style="-webkit-transition-timing-function: cubic-bezier(0.4, -0.8, 0.7, 1.7);"></div> |
- <div class="box colored" id="box3" style="-webkit-transition-timing-function: cubic-bezier(0.7, -2, 1, -1.5);"></div> |
- <div class="box colored" id="box4" style="-webkit-transition-timing-function: cubic-bezier(0, 4, 1, -3);"></div> |
+ <div class="box" id="box1" style="transition-timing-function: cubic-bezier(0.3, 1.5, 0.8, 1.5);"></div> |
+ <div class="box" id="box2" style="transition-timing-function: cubic-bezier(0.4, -0.8, 0.7, 1.7);"></div> |
+ <div class="box colored" id="box3" style="transition-timing-function: cubic-bezier(0.7, -2, 1, -1.5);"></div> |
+ <div class="box colored" id="box4" style="transition-timing-function: cubic-bezier(0, 4, 1, -3);"></div> |
</div> |
<div id="result"></div> |
</body> |