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

Unified Diff: third_party/WebKit/LayoutTests/animations/script-tests/animation-css-rule-types.js

Issue 2795223002: Remove WEBKIT_KEYFRAMES_RULE and WEBKIT_KEYFRAME_RULE (Closed)
Patch Set: changes in ui/filemanager/ Created 3 years, 8 months 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/script-tests/animation-css-rule-types.js
diff --git a/third_party/WebKit/LayoutTests/animations/script-tests/animation-css-rule-types.js b/third_party/WebKit/LayoutTests/animations/script-tests/animation-css-rule-types.js
index ba44e77e78a88988d48686309ef39daeea853a43..2d76deef2a7f4a97bd3ee33a7f2379e957a59fab 100644
--- a/third_party/WebKit/LayoutTests/animations/script-tests/animation-css-rule-types.js
+++ b/third_party/WebKit/LayoutTests/animations/script-tests/animation-css-rule-types.js
@@ -2,11 +2,7 @@ description(
'This test checks that the CSSRule RuleTypes for keyframe-related rules are what we expect.'
);
-var ruleType = window.CSSRule.WEBKIT_KEYFRAMES_RULE;
-shouldBe("ruleType", "7");
-ruleType = window.CSSRule.WEBKIT_KEYFRAME_RULE;
-shouldBe("ruleType", "8");
-ruleType = window.CSSRule.KEYFRAMES_RULE;
+var ruleType = window.CSSRule.KEYFRAMES_RULE;
shouldBe("ruleType", "7");
ruleType = window.CSSRule.KEYFRAME_RULE;
shouldBe("ruleType", "8");

Powered by Google App Engine
This is Rietveld 408576698