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

Side by Side Diff: LayoutTests/animations/keyframes-rule-expected.txt

Issue 16063006: Fix check in animations/keyframes-rule.html (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « LayoutTests/animations/keyframes-rule.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 This tests the WebKitCSSKeyframeRule and WebKitCSSKeyframesRule interfaces. 1 This tests the WebKitCSSKeyframeRule and WebKitCSSKeyframesRule interfaces.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS WebKitCSSKeyframeRule exists on Window object 6 PASS WebKitCSSKeyframeRule exists on Window object
7 PASS WebKitCSSKeyframesRule exists on Window object 7 PASS WebKitCSSKeyframesRule exists on Window object
8 PASS WEBKIT_KEYFRAME_RULE exists on Window.CSSRule object 8 PASS WEBKIT_KEYFRAME_RULE exists on Window.CSSRule object
9 PASS WEBKIT_KEYFRAMES_RULE exists on Window.CSSRule object 9 PASS WEBKIT_KEYFRAMES_RULE exists on Window.CSSRule object
10 10
(...skipping 18 matching lines...) Expand all
29 29
30 PASS rules2.length is 3 30 PASS rules2.length is 3
31 PASS rules2.item(0).type is window.CSSRule.WEBKIT_KEYFRAME_RULE 31 PASS rules2.item(0).type is window.CSSRule.WEBKIT_KEYFRAME_RULE
32 PASS rules2.item(0).keyText is '0%' 32 PASS rules2.item(0).keyText is '0%'
33 PASS rules2.item(1).keyText is '50%' 33 PASS rules2.item(1).keyText is '50%'
34 PASS rules2.item(2).keyText is '100%' 34 PASS rules2.item(2).keyText is '100%'
35 PASS rules2.item(0).cssText is '0% { left: 10px; }' 35 PASS rules2.item(0).cssText is '0% { left: 10px; }'
36 PASS rules2.item(1).cssText is '50% { left: 30px; }' 36 PASS rules2.item(1).cssText is '50% { left: 30px; }'
37 PASS rules2.item(2).cssText is '100% { left: 20px; }' 37 PASS rules2.item(2).cssText is '100% { left: 20px; }'
38 38
39 FAIL typeof(rules2.item(0).style) should be function. Was object. 39 PASS rules2.item(0).style is an instance of CSSStyleDeclaration
40 PASS rules2.item(0).style.length is 1 40 PASS rules2.item(0).style.length is 1
41 41
42 Find a rule 42 Find a rule
43 PASS rule.type is window.CSSRule.WEBKIT_KEYFRAME_RULE 43 PASS rule.type is window.CSSRule.WEBKIT_KEYFRAME_RULE
44 PASS rule.cssText is '50% { left: 30px; }' 44 PASS rule.cssText is '50% { left: 30px; }'
45 45
46 Find a rule using from and to 46 Find a rule using from and to
47 PASS keyframesFromTo.type is window.CSSRule.WEBKIT_KEYFRAMES_RULE 47 PASS keyframesFromTo.type is window.CSSRule.WEBKIT_KEYFRAMES_RULE
48 PASS rule.type is window.CSSRule.WEBKIT_KEYFRAME_RULE 48 PASS rule.type is window.CSSRule.WEBKIT_KEYFRAME_RULE
49 PASS rule.cssText is '0% { left: 10px; }' 49 PASS rule.cssText is '0% { left: 10px; }'
(...skipping 18 matching lines...) Expand all
68 Delete a rule that doesn't exist 68 Delete a rule that doesn't exist
69 PASS rules2.length is 2 69 PASS rules2.length is 2
70 PASS rules2.item(0).type is window.CSSRule.WEBKIT_KEYFRAME_RULE 70 PASS rules2.item(0).type is window.CSSRule.WEBKIT_KEYFRAME_RULE
71 PASS rules2.item(0).keyText is '0%' 71 PASS rules2.item(0).keyText is '0%'
72 PASS rules2.item(1).keyText is '100%' 72 PASS rules2.item(1).keyText is '100%'
73 73
74 PASS successfullyParsed is true 74 PASS successfullyParsed is true
75 75
76 TEST COMPLETE 76 TEST COMPLETE
77 77
OLDNEW
« no previous file with comments | « LayoutTests/animations/keyframes-rule.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698