| OLD | NEW |
| 1 CONSOLE MESSAGE: DOMSubtreeModified is deprecated. Use MutationObservers instead
. | |
| 2 This tests calls to setInnerHTML, setInnerText, and setOuterHTML to see what kin
d of DOM modifications they cause. The calls are optimized to not do any work in
cases where the DOM would not change at all. | 1 This tests calls to setInnerHTML, setInnerText, and setOuterHTML to see what kin
d of DOM modifications they cause. The calls are optimized to not do any work in
cases where the DOM would not change at all. |
| 3 | 2 |
| 4 PASS: starting with "", setting innerHTML to "" | 3 PASS: starting with "", setting innerHTML to "" |
| 5 PASS: starting with "", setting innerHTML to "text" | 4 PASS: starting with "", setting innerHTML to "text" |
| 6 PASS: starting with "", setting innerHTML to "<a></a>" | 5 PASS: starting with "", setting innerHTML to "<a></a>" |
| 7 PASS: starting with "", setting innerHTML to "<a></a><b></b>" | 6 PASS: starting with "", setting innerHTML to "<a></a><b></b>" |
| 8 PASS: starting with "text", setting innerHTML to "" | 7 PASS: starting with "text", setting innerHTML to "" |
| 9 PASS: starting with "text", setting innerHTML to "different text" | 8 PASS: starting with "text", setting innerHTML to "different text" |
| 10 PASS: starting with "text", setting innerHTML to "text" | 9 PASS: starting with "text", setting innerHTML to "text" |
| 11 PASS: starting with "text", setting innerHTML to "<a></a>" | 10 PASS: starting with "text", setting innerHTML to "<a></a>" |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 PASS: starting with "<div><a></a></div>", setting outerHTML to "<div>text</div>" | 56 PASS: starting with "<div><a></a></div>", setting outerHTML to "<div>text</div>" |
| 58 PASS: starting with "<div><a></a></div>", setting outerHTML to "<div>different t
ext</div>" | 57 PASS: starting with "<div><a></a></div>", setting outerHTML to "<div>different t
ext</div>" |
| 59 PASS: starting with "<div><a></a></div>", setting outerHTML to "<div><a></a></di
v>" | 58 PASS: starting with "<div><a></a></div>", setting outerHTML to "<div><a></a></di
v>" |
| 60 PASS: starting with "<div><a></a></div>", setting outerHTML to "<div><a></a><b><
/b></div>" | 59 PASS: starting with "<div><a></a></div>", setting outerHTML to "<div><a></a><b><
/b></div>" |
| 61 PASS: starting with "<div><a>text</a></div>", setting outerHTML to "<div><a>text
</a></div>" | 60 PASS: starting with "<div><a>text</a></div>", setting outerHTML to "<div><a>text
</a></div>" |
| 62 PASS: starting with "<div><a>text</a></div>", setting outerHTML to "<div><a>diff
erent text</a></div>" | 61 PASS: starting with "<div><a>text</a></div>", setting outerHTML to "<div><a>diff
erent text</a></div>" |
| 63 PASS: starting with "<div><a href="b"></a></div>", setting outerHTML to "<div><a
name="c" href="b"></a></div>" | 62 PASS: starting with "<div><a href="b"></a></div>", setting outerHTML to "<div><a
name="c" href="b"></a></div>" |
| 64 PASS: starting with "<div><a href="b" name="c"></a></div>", setting outerHTML to
"<div><a href="b" name="c"></a></div>" | 63 PASS: starting with "<div><a href="b" name="c"></a></div>", setting outerHTML to
"<div><a href="b" name="c"></a></div>" |
| 65 PASS: starting with "<div><a href="b" name="c"></a></div>", setting outerHTML to
"<div><a name="c" href="b"></a></div>" | 64 PASS: starting with "<div><a href="b" name="c"></a></div>", setting outerHTML to
"<div><a name="c" href="b"></a></div>" |
| 66 ALL TESTS PASSED | 65 ALL TESTS PASSED |
| OLD | NEW |