| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <meta charset=utf-8> | 2 <meta charset=utf-8> |
| 3 <title>MutationObservers: characterData mutations</title> | 3 <title>MutationObservers: characterData mutations</title> |
| 4 <script src="/resources/testharness.js"></script> | 4 <script src="/resources/testharness.js"></script> |
| 5 <script src="/resources/testharnessreport.js"></script> | 5 <script src="/resources/testharnessreport.js"></script> |
| 6 <script src="mutationobservers.js"></script> | 6 <script src="mutationobservers.js"></script> |
| 7 <h1>MutationObservers: characterData mutations</h1> | 7 <h1>MutationObservers: characterData mutations</h1> |
| 8 <div id="log"></div> | 8 <div id="log"></div> |
| 9 | 9 |
| 10 <section style="display: none"> | 10 <section style="display: none"> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 <p id='n22'>CHANGED</p> | 22 <p id='n22'>CHANGED</p> |
| 23 | 23 |
| 24 <p id='n30'>CCCHANGED</p> | 24 <p id='n30'>CCCHANGED</p> |
| 25 <p id='n31'>CHANGED</p> | 25 <p id='n31'>CHANGED</p> |
| 26 | 26 |
| 27 <p id='n40'>CCCHANGED</p> | 27 <p id='n40'>CCCHANGED</p> |
| 28 <p id='n41'>CHANGED</p> | 28 <p id='n41'>CHANGED</p> |
| 29 | 29 |
| 30 <p id="n50"><?processing data?></p> | 30 <p id="n50"><?processing data?></p> |
| 31 | 31 |
| 32 <p id="n60"><!-- data --></p> | 32 <p id="n60"><!-- data --></p> |
| 33 | 33 |
| 34 <p id='n70'>CHANN</p> | 34 <p id='n70'>CHANN</p> |
| 35 <p id='n71'>CHANN</p> | 35 <p id='n71'>CHANN</p> |
| 36 | 36 |
| 37 <p id='n80'>CHANN</p> | 37 <p id='n80'>CHANN</p> |
| 38 <p id='n81'>CHANN</p> | 38 <p id='n81'>CHANN</p> |
| 39 | 39 |
| 40 <p id='n90'>CHANN</p> | 40 <p id='n90'>CHANN</p> |
| 41 | 41 |
| 42 </section> | 42 </section> |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 function() { r81.extractContents(); }, | 206 function() { r81.extractContents(); }, |
| 207 "characterData Range.extractContents: child and data removal m
utation (2)"); | 207 "characterData Range.extractContents: child and data removal m
utation (2)"); |
| 208 | 208 |
| 209 var n90 = document.getElementById('n90').firstChild; | 209 var n90 = document.getElementById('n90').firstChild; |
| 210 runMutationTest(n90, | 210 runMutationTest(n90, |
| 211 {"characterDataOldValue":true}, | 211 {"characterDataOldValue":true}, |
| 212 [{type: "characterData", oldValue: "CHANN" }], | 212 [{type: "characterData", oldValue: "CHANN" }], |
| 213 function() { n90.data = "CHANGED"; }, | 213 function() { n90.data = "CHANGED"; }, |
| 214 "characterData/characterDataOldValue alone Text.data: simple m
utation"); | 214 "characterData/characterDataOldValue alone Text.data: simple m
utation"); |
| 215 </script> | 215 </script> |
| OLD | NEW |