3 testRunner
.dumpAsText();
5 var observer
= new MutationObserver(function(mutations
) {
6 mutations
.forEach(function(mutation
) {
7 if (mutation
.type
=== 'childList')
8 console
.log("PASS: childList mutation event fired from HTML parser change.");
12 observer
.observe(document
.documentElement
, {childList
: true});
15 Test result is dumped on console
.log
.