OLD | NEW |
---|---|
1 SVG 1.1 dynamic update tests | 1 Verify that IndexedDB is functional in a ServiceWorker |
2 | 2 |
3 Tests dynamic updates of the 'x' attribute of the SVGFEPointLightElement object. | |
4 | |
5 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 ". |
6 | 4 |
7 | 5 |
8 PASS pointLight.getAttribute('x') is "50" | 6 messageChannel = new MessageChannel() |
9 PASS pointLight.getAttribute('x') is "100" | 7 messageChannel.port1.onmessage = onMessageHandler |
8 | |
9 navigator.serviceWorker.register('indexeddb-worker.js') | |
10 FAIL DisabledError | |
marja
2014/03/17 09:29:22
Why DisabledError? (I don't really understand the
kinuko
2014/03/17 09:32:55
Currently the feature's not enabled by default, so
| |
10 PASS successfullyParsed is true | 11 PASS successfullyParsed is true |
11 | 12 |
12 TEST COMPLETE | 13 TEST COMPLETE |
13 | 14 |
OLD | NEW |