| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>window.onerror - runtime error in cross-origin setTimeout</title> | 4 <title>window.onerror - runtime error in cross-origin setTimeout</title> |
| 5 <script src="/resources/testharness.js"></script> | 5 <script src="/resources/testharness.js"></script> |
| 6 <script src="/resources/testharnessreport.js"></script> | 6 <script src="/resources/testharnessreport.js"></script> |
| 7 </head> | 7 </head> |
| 8 <body> | 8 <body> |
| 9 <div id=log></div> | 9 <div id=log></div> |
| 10 <script> | 10 <script> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 }); | 22 }); |
| 23 function col_check() { | 23 function col_check() { |
| 24 assert_equals(col_value, 0, 'fourth arg'); | 24 assert_equals(col_value, 0, 'fourth arg'); |
| 25 t_col.done(); | 25 t_col.done(); |
| 26 } | 26 } |
| 27 var script = document.createElement('script'); | 27 var script = document.createElement('script'); |
| 28 script.src = location.href.replace('://', '://www1.').replace(/\/[^\/]+$/, '
/support/undefined-variable-in-setTimeout.js'); | 28 script.src = location.href.replace('://', '://www1.').replace(/\/[^\/]+$/, '
/support/undefined-variable-in-setTimeout.js'); |
| 29 document.body.appendChild(script); | 29 document.body.appendChild(script); |
| 30 </script> | 30 </script> |
| 31 </body> | 31 </body> |
| 32 </html> | 32 </html> |
| OLD | NEW |