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

Unified Diff: third_party/WebKit/LayoutTests/animations/background-shorthand-crash.html

Issue 2513343006: CSS Animations: Remove unnecessary webkit prefixes from 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/animations/background-shorthand-crash.html
diff --git a/third_party/WebKit/LayoutTests/animations/background-shorthand-crash.html b/third_party/WebKit/LayoutTests/animations/background-shorthand-crash.html
index f1da6d76298f30e5373977e39eb6d0dfd3a157ed..3d01c87816c97eb378bb82249c38552f7a2341b4 100644
--- a/third_party/WebKit/LayoutTests/animations/background-shorthand-crash.html
+++ b/third_party/WebKit/LayoutTests/animations/background-shorthand-crash.html
@@ -2,10 +2,10 @@
<style>
body {
background: url('a'), url('b');
- -webkit-animation: test 1s;
+ animation: test 1s;
}
-@-webkit-keyframes test {
+@keyframes test {
to { background: url('a'), url('b'); }
}
</style>

Powered by Google App Engine
This is Rietveld 408576698