OLD | NEW |
| 1 CONSOLE WARNING: Attr child nodes are deprecated and will be removed in M45, aro
und August 2015. Please use 'Attr.value' instead. |
1 Test WebKitMutationObserver.observe on attributes | 2 Test WebKitMutationObserver.observe on attributes |
2 | 3 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 5 |
5 | 6 |
6 Testing basic aspects of attribute observation. | 7 Testing basic aspects of attribute observation. |
7 ...can attribute changes be observed at all | 8 ...can attribute changes be observed at all |
8 PASS mutations.length is 2 | 9 PASS mutations.length is 2 |
9 PASS mutations[0].type is "attributes" | 10 PASS mutations[0].type is "attributes" |
10 PASS mutations[0].attributeName is "foo" | 11 PASS mutations[0].attributeName is "foo" |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 PASS mutations[0].oldValue is "foo" | 228 PASS mutations[0].oldValue is "foo" |
228 PASS mutations[1].target is div | 229 PASS mutations[1].target is div |
229 PASS mutations[1].type is "attributes" | 230 PASS mutations[1].type is "attributes" |
230 PASS mutations[1].attributeName is "data-test" | 231 PASS mutations[1].attributeName is "data-test" |
231 PASS mutations[1].oldValue is "bar" | 232 PASS mutations[1].oldValue is "bar" |
232 | 233 |
233 PASS successfullyParsed is true | 234 PASS successfullyParsed is true |
234 | 235 |
235 TEST COMPLETE | 236 TEST COMPLETE |
236 | 237 |
OLD | NEW |