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

Unified Diff: third_party/WebKit/LayoutTests/animations/animation-none-keyword.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/animation-none-keyword.html
diff --git a/third_party/WebKit/LayoutTests/animations/animation-none-keyword.html b/third_party/WebKit/LayoutTests/animations/animation-none-keyword.html
index bb9c51dbae5602854ecd85036109b30ac03fe6f1..da37b38d700cd418f0fba3b655592ca7e06d07c9 100644
--- a/third_party/WebKit/LayoutTests/animations/animation-none-keyword.html
+++ b/third_party/WebKit/LayoutTests/animations/animation-none-keyword.html
@@ -5,12 +5,12 @@
<style>
#test {
max-width: none;
- -webkit-animation-duration: 2s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-name: none-test;
+ animation-duration: 2s;
+ animation-timing-function: linear;
+ animation-name: none-test;
}
- @-webkit-keyframes none-test {
+ @keyframes none-test {
25% { max-width: 10px; }
75% { max-width: 10px; }
}

Powered by Google App Engine
This is Rietveld 408576698