OLD | NEW |
1 CONSOLE MESSAGE: DOMSubtreeModified is deprecated. Use MutationObservers instead
. | |
2 Test WebKitMutationObserver.observe on attributes | 1 Test WebKitMutationObserver.observe on attributes |
3 | 2 |
4 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
". |
5 | 4 |
6 | 5 |
7 Testing basic aspects of attribute observation. | 6 Testing basic aspects of attribute observation. |
8 ...can attribute changes be observed at all | 7 ...can attribute changes be observed at all |
9 PASS mutations.length is 2 | 8 PASS mutations.length is 2 |
10 PASS mutations[0].type is "attributes" | 9 PASS mutations[0].type is "attributes" |
11 PASS mutations[0].attributeName is "foo" | 10 PASS mutations[0].attributeName is "foo" |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 PASS mutations[0].oldValue is "foo" | 227 PASS mutations[0].oldValue is "foo" |
229 PASS mutations[1].target is div | 228 PASS mutations[1].target is div |
230 PASS mutations[1].type is "attributes" | 229 PASS mutations[1].type is "attributes" |
231 PASS mutations[1].attributeName is "data-test" | 230 PASS mutations[1].attributeName is "data-test" |
232 PASS mutations[1].oldValue is "bar" | 231 PASS mutations[1].oldValue is "bar" |
233 | 232 |
234 PASS successfullyParsed is true | 233 PASS successfullyParsed is true |
235 | 234 |
236 TEST COMPLETE | 235 TEST COMPLETE |
237 | 236 |
OLD | NEW |