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

Side by Side 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 unified diff | Download patch
OLDNEW
1 description( 1 description(
2 'This test checks that the CSSRule RuleTypes for keyframe-related rules are what we expect.' 2 'This test checks that the CSSRule RuleTypes for keyframe-related rules are what we expect.'
3 ); 3 );
4 4
5 var ruleType = window.CSSRule.WEBKIT_KEYFRAMES_RULE; 5 var ruleType = window.CSSRule.KEYFRAMES_RULE;
6 shouldBe("ruleType", "7");
7 ruleType = window.CSSRule.WEBKIT_KEYFRAME_RULE;
8 shouldBe("ruleType", "8");
9 ruleType = window.CSSRule.KEYFRAMES_RULE;
10 shouldBe("ruleType", "7"); 6 shouldBe("ruleType", "7");
11 ruleType = window.CSSRule.KEYFRAME_RULE; 7 ruleType = window.CSSRule.KEYFRAME_RULE;
12 shouldBe("ruleType", "8"); 8 shouldBe("ruleType", "8");
13 9
14 debug('If we got to this point then we did not crash and the test has passed.'); 10 debug('If we got to this point then we did not crash and the test has passed.');
15 var successfullyParsed = true; 11 var successfullyParsed = true;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698