Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / dom / mutationobserver-parserappend-childlist.php
blob06ada891dc8736b2996d135e13479016cf36bdfc
1 <script>
2 if (window.testRunner)
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.");
9 });
10 });
12 observer.observe(document.documentElement, {childList: true});
13 </script>
14 <body>
15 Test result is dumped on console.log.
17 foo
18 <?php sleep(1); ?>
19 bar
20 </body>