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

Unified Diff: third_party/WebKit/LayoutTests/animations/animation-name-none.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-name-none.html
diff --git a/third_party/WebKit/LayoutTests/animations/animation-name-none.html b/third_party/WebKit/LayoutTests/animations/animation-name-none.html
index 96f04a6819ed2c5210eb6e9f4b2f7fa4c50d859e..9a3d87edf789d64637b50b7ac3ea93aa11732c6a 100644
--- a/third_party/WebKit/LayoutTests/animations/animation-name-none.html
+++ b/third_party/WebKit/LayoutTests/animations/animation-name-none.html
@@ -3,9 +3,9 @@
<head>
<title>Test setting animation name to none</title>
<style>
- @-webkit-keyframes test {}
+ @keyframes test {}
#test {
- -webkit-animation-name: test;
+ animation-name: test;
}
</style>
<script>
@@ -14,9 +14,9 @@
</script>
</head>
<body>
-<div id="test">This tests setting -webkit-animation-name to none, it passes if it does not crash.</div>
+<div id="test">This tests setting animation-name to none, it passes if it does not crash.</div>
<script>
- document.querySelector('#test').style.webkitAnimationName = 'none'
+ document.querySelector('#test').style.animationName = 'none'
</script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698