| OLD | NEW |
| 1 importScripts('interfaces.js'); | 1 importScripts('interfaces.js'); |
| 2 importScripts('worker-testharness.js'); | 2 importScripts('worker-testharness.js'); |
| 3 importScripts('/resources/testharness-helpers.js'); | 3 importScripts('/resources/testharness-helpers.js'); |
| 4 | 4 |
| 5 var EVENT_HANDLER = 'object'; | 5 var EVENT_HANDLER = 'object'; |
| 6 | 6 |
| 7 test(function() { | 7 test(function() { |
| 8 verify_interface('ServiceWorkerGlobalScope', | 8 verify_interface('ServiceWorkerGlobalScope', |
| 9 self, | 9 self, |
| 10 { | 10 { |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 addAll: 'function', | 65 addAll: 'function', |
| 66 put: 'function', | 66 put: 'function', |
| 67 delete: 'function', | 67 delete: 'function', |
| 68 keys: 'function' | 68 keys: 'function' |
| 69 }); | 69 }); |
| 70 }); | 70 }); |
| 71 }, 'Cache'); | 71 }, 'Cache'); |
| 72 | 72 |
| 73 test(function() { | 73 test(function() { |
| 74 assert_equals(new ExtendableEvent('ExtendableEvent').type, 'ExtendableEvent'
); | 74 assert_equals(new ExtendableEvent('ExtendableEvent').type, 'ExtendableEvent'
); |
| 75 assert_equals(new InstallEvent('InstallEvent').type, 'InstallEvent'); | |
| 76 | |
| 77 assert_equals(new InstallEvent('InstallEvent').cancelable, false); | |
| 78 assert_equals(new InstallEvent('InstallEvent').bubbles, false); | |
| 79 assert_equals(new InstallEvent('InstallEvent', { cancelable : true }).cancel
able, true); | |
| 80 assert_equals(new InstallEvent('InstallEvent', { bubbles : true }).bubbles,
true); | |
| 81 }, 'Event constructors'); | 75 }, 'Event constructors'); |
| OLD | NEW |