OLD | NEW |
1 CONSOLE MESSAGE: DOMSubtreeModified is deprecated. Use MutationObservers instead
. | |
2 Test WebKitMutationObserver.observe on CharacterData nodes | 1 Test WebKitMutationObserver.observe on CharacterData nodes |
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 characterData observation. | 6 Testing basic aspects of characterData observation. |
8 ...can characterData changes be observed at all | 7 ...can characterData changes be observed at all |
9 PASS mutations.length is 1 | 8 PASS mutations.length is 1 |
10 PASS mutations[0].type is "characterData" | 9 PASS mutations[0].type is "characterData" |
11 PASS mutations[0].target is charDataNode | 10 PASS mutations[0].target is charDataNode |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 | 52 |
54 An observer with multiple observations will get characterDataOldValue if any ent
ries request it. | 53 An observer with multiple observations will get characterDataOldValue if any ent
ries request it. |
55 PASS mutations.length is 1 | 54 PASS mutations.length is 1 |
56 PASS mutations[0].type is "characterData" | 55 PASS mutations[0].type is "characterData" |
57 PASS mutations[0].oldValue is "foo" | 56 PASS mutations[0].oldValue is "foo" |
58 | 57 |
59 PASS successfullyParsed is true | 58 PASS successfullyParsed is true |
60 | 59 |
61 TEST COMPLETE | 60 TEST COMPLETE |
62 | 61 |
OLD | NEW |