script_007.html (463B)
1 <!doctype html> 2 <title>document.write external script that document.writes inline script</title> 3 <script src="/resources/testharness.js"></script><script src="/resources/testharnessreport.js"></script> 4 <script> 5 var t = async_test(); 6 var order = []; 7 t.step(function() { 8 order.push(1); 9 }); 10 </script> 11 <script src="007.js"></script> 12 <script> 13 t.step(function() { 14 order.push(4); 15 assert_array_equals(order, [1,2,3,4]); 16 }); 17 t.done(); 18 </script> 19 <div id="log"></div>