Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / events / constructors / webkit-animation-event-constructor-expected.txt
blob5c9bfebe659a52a6a08174efa6ba8cbfaf030a94
1 This tests the constructor for the WebKitAnimationEvent DOM class.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 PASS new WebKitAnimationEvent('eventType').bubbles is false
7 PASS new WebKitAnimationEvent('eventType').cancelable is false
8 PASS new WebKitAnimationEvent('eventType').animationName is ""
9 PASS new WebKitAnimationEvent('eventType').elapsedTime is 0
10 PASS new WebKitAnimationEvent('eventType', { bubbles: false }).bubbles is false
11 PASS new WebKitAnimationEvent('eventType', { bubbles: true }).bubbles is true
12 PASS new WebKitAnimationEvent('eventType', { cancelable: false }).cancelable is false
13 PASS new WebKitAnimationEvent('eventType', { cancelable: true }).cancelable is true
14 PASS new WebKitAnimationEvent('eventType', { animationName: 'doremi' }).animationName is "doremi"
15 PASS new WebKitAnimationEvent('eventType', { animationName: '' }).animationName is ""
16 PASS new WebKitAnimationEvent('eventType', { animationName: undefined }).animationName is ""
17 PASS new WebKitAnimationEvent('eventType', { animationName: null }).animationName is "null"
18 PASS new WebKitAnimationEvent('eventType', { animationName: false }).animationName is "false"
19 PASS new WebKitAnimationEvent('eventType', { animationName: true }).animationName is "true"
20 PASS new WebKitAnimationEvent('eventType', { animationName: 12345 }).animationName is "12345"
21 PASS new WebKitAnimationEvent('eventType', { animationName: 18446744073709551615 }).animationName is "18446744073709552000"
22 PASS new WebKitAnimationEvent('eventType', { animationName: NaN }).animationName is "NaN"
23 PASS new WebKitAnimationEvent('eventType', { animationName: [] }).animationName is ""
24 PASS new WebKitAnimationEvent('eventType', { animationName: [1, 2, 3] }).animationName is "1,2,3"
25 PASS new WebKitAnimationEvent('eventType', { animationName: {doremi: 12345} }).animationName is "[object Object]"
26 PASS new WebKitAnimationEvent('eventType', { animationName: {valueOf: function () { return 'doremi'; } } }).animationName is "[object Object]"
27 PASS new WebKitAnimationEvent('eventType', { elapsedTime: 0 }).elapsedTime is 0
28 PASS new WebKitAnimationEvent('eventType', { elapsedTime: 123.45 }).elapsedTime is 123.45
29 PASS new WebKitAnimationEvent('eventType', { elapsedTime: -123.45 }).elapsedTime is -123.45
30 PASS new WebKitAnimationEvent('eventType', { elapsedTime: 18446744073709551615 }).elapsedTime is 18446744073709551615
31 PASS new WebKitAnimationEvent('eventType', { elapsedTime: NaN }).elapsedTime threw exception TypeError: Failed to construct 'AnimationEvent': The provided double value is non-finite..
32 PASS new WebKitAnimationEvent('eventType', { elapsedTime: Infinity }).elapsedTime threw exception TypeError: Failed to construct 'AnimationEvent': The provided double value is non-finite..
33 PASS new WebKitAnimationEvent('eventType', { elapsedTime: -Infinity }).elapsedTime threw exception TypeError: Failed to construct 'AnimationEvent': The provided double value is non-finite..
34 PASS new WebKitAnimationEvent('eventType', { elapsedTime: undefined }).elapsedTime is 0
35 PASS new WebKitAnimationEvent('eventType', { elapsedTime: null }).elapsedTime is 0
36 PASS new WebKitAnimationEvent('eventType', { elapsedTime: false }).elapsedTime is 0
37 PASS new WebKitAnimationEvent('eventType', { elapsedTime: true }).elapsedTime is 1
38 PASS new WebKitAnimationEvent('eventType', { elapsedTime: '' }).elapsedTime is 0
39 PASS new WebKitAnimationEvent('eventType', { elapsedTime: 'doremi' }).elapsedTime threw exception TypeError: Failed to construct 'AnimationEvent': The provided double value is non-finite..
40 PASS new WebKitAnimationEvent('eventType', { elapsedTime: [] }).elapsedTime is 0
41 PASS new WebKitAnimationEvent('eventType', { elapsedTime: [123.45] }).elapsedTime is 123.45
42 PASS new WebKitAnimationEvent('eventType', { elapsedTime: [123.45, 678.90] }).elapsedTime threw exception TypeError: Failed to construct 'AnimationEvent': The provided double value is non-finite..
43 PASS new WebKitAnimationEvent('eventType', { elapsedTime: {doremi: 123.45} }).elapsedTime threw exception TypeError: Failed to construct 'AnimationEvent': The provided double value is non-finite..
44 PASS new WebKitAnimationEvent('eventType', { elapsedTime: {valueOf: function () { return 123.45 } } }).elapsedTime is 123.45
45 PASS new WebKitAnimationEvent('eventType', { bubbles: true, cancelable: true, animationName: 'doremi', elapsedTime: 123.45 }).bubbles is true
46 PASS new WebKitAnimationEvent('eventType', { bubbles: true, cancelable: true, animationName: 'doremi', elapsedTime: 123.45 }).cancelable is true
47 PASS new WebKitAnimationEvent('eventType', { bubbles: true, cancelable: true, animationName: 'doremi', elapsedTime: 123.45 }).animationName is 'doremi'
48 PASS new WebKitAnimationEvent('eventType', { bubbles: true, cancelable: true, animationName: 'doremi', elapsedTime: 123.45 }).elapsedTime is 123.45
49 PASS successfullyParsed is true
51 TEST COMPLETE