comparison: content/base/crashtests/327694.html
content/base/crashtests/327694.html
- branch
- TOR_BUG_9701
- changeset 15
- b8a032363ba2
equal
deleted
inserted
replaced
|
1 <html> |
|
2 <head> |
|
3 |
|
4 <script> |
|
5 |
|
6 function init() |
|
7 { |
|
8 var y = document.getElementById("tt"); |
|
9 var z = y.firstChild; |
|
10 y.removeChild(z); |
|
11 z.text; |
|
12 } |
|
13 |
|
14 window.addEventListener("load", init, false); |
|
15 |
|
16 </script> |
|
17 |
|
18 </head> |
|
19 |
|
20 <body> |
|
21 |
|
22 <div id="tt"><a href="http://www.mozilla.org">Foo</a></div> |
|
23 |
|
24 </body> |
|
25 </html> |