This test requires PHP. Rename one.dphpd in this directory to one.php before trying this test.
This test looks at scripts added via appendChild before the page loads. Do the scripts execute in the order added to the DOM or the order in which they are received from the network?
Normally after page load, IE and WebKit will evaluate scripts in network receive order, not in DOM order. This test is checking the behavior before page load.
Expected results:
ONE
TWO
>Actual results: see browser console. IE and WebKit will execute scripts in network receive order, not in DOM order.