comparison: content/base/crashtests/551631-1.html
content/base/crashtests/551631-1.html
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 <!DOCTYPE HTML> |
|
2 <html> |
|
3 <head> |
|
4 <base href="javascript:5"> |
|
5 <script> |
|
6 |
|
7 function boom() |
|
8 { |
|
9 var head = document.getElementsByTagName("head")[0]; |
|
10 var s = document.createElement("script"); |
|
11 s.async = "async"; |
|
12 s.src = "useBaseHrefAndFail"; |
|
13 s.q = "q"; |
|
14 head.appendChild(s); |
|
15 head.removeChild(s); |
|
16 } |
|
17 |
|
18 </script> |
|
19 </head> |
|
20 |
|
21 <body onload="boom();"></body> |
|
22 </html> |