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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/styles-2/keyframes-rules.html

Issue 2521163002: CSS Animations: Reduce usage of webkit prefix in 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/inspector/elements/styles-2/keyframes-rules.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-2/keyframes-rules.html b/third_party/WebKit/LayoutTests/inspector/elements/styles-2/keyframes-rules.html
index 3348dfd8db0e2a89694b9cb581f7b7e4a22854e0..3f857cebffe0c8981373b0a6a46edb72c47cd53d 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/styles-2/keyframes-rules.html
+++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-2/keyframes-rules.html
@@ -1,7 +1,7 @@
<html>
<head>
<style>
-@-webkit-keyframes fadeout {
+@keyframes fadeout {
from { background-color: black; }
to { background-color: white; }
}
@@ -33,7 +33,7 @@ function test()
<body onload="runTest()">
<p>
-Tests that source data is extracted correctly from stylesheets with @-webkit-keyframes rules.
+Tests that source data is extracted correctly from stylesheets with @keyframes rules.
</p>
<div id="inspected" style="background-color: white;">Content</div>

Powered by Google App Engine
This is Rietveld 408576698