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

Unified Diff: third_party/WebKit/LayoutTests/compositing/animation/busy-indicator.html

Issue 2518273002: Remove unnecessary webkit prefixes from animation layout tests (Closed)
Patch Set: remove trailing space 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/animation/busy-indicator.html
diff --git a/third_party/WebKit/LayoutTests/compositing/animation/busy-indicator.html b/third_party/WebKit/LayoutTests/compositing/animation/busy-indicator.html
index a3cac1a7a880046d9230491abc52ef4584dc612a..73aa31389920a2b87097abebb5a5094775ae099d 100644
--- a/third_party/WebKit/LayoutTests/compositing/animation/busy-indicator.html
+++ b/third_party/WebKit/LayoutTests/compositing/animation/busy-indicator.html
@@ -26,32 +26,32 @@
width: 18px;
height: 30px;
opacity: 0;
- -webkit-animation-duration: 2.4s;
+ animation-duration: 2.4s;
}
.progress-indicator.visible .progress-indicator0 {
left: 0px;
- -webkit-animation-delay: 0.4s;
+ animation-delay: 0.4s;
}
.progress-indicator.visible .progress-indicator1 {
left: 19px;
- -webkit-animation-delay: 0.8s;
+ animation-delay: 0.8s;
}
.progress-indicator.visible .progress-indicator2 {
left: 38px;
- -webkit-animation-delay: 1.2s;
+ animation-delay: 1.2s;
}
.progress-indicator.visible .progress-indicator3 {
left: 57px;
- -webkit-animation-delay: 1.6s;
+ animation-delay: 1.6s;
}
.progress-indicator.visible .progress-indicator4 {
left: 76px;
- -webkit-animation-delay: 2s;
+ animation-delay: 2s;
}
.progress-indicator.visible { display: block; }
- .progress-indicator.visible > div { -webkit-animation-play-state: running; }
+ .progress-indicator.visible > div { animation-play-state: running; }
- @-webkit-keyframes spinner {
+ @keyframes spinner {
0% {
transform: scale(0.7);
opacity: 1;
@@ -74,7 +74,7 @@
}
}
.progress-indicator.visible > div {
- -webkit-animation-name: spinner;
+ animation-name: spinner;
}
</style>
<script type="text/javascript" charset="utf-8">
@@ -90,7 +90,7 @@
testRunner.waitUntilDone();
document.getElementById('app-loading-progress').addEventListener(
- 'webkitAnimationEnd', testEnded, false);
+ 'animationend', testEnded, false);
}
window.addEventListener('load', startTest, false);

Powered by Google App Engine
This is Rietveld 408576698