comparison: layout/base/crashtests/538267-1.html
layout/base/crashtests/538267-1.html
- branch
- TOR_BUG_3246
- changeset 6
- 8bccb770b82d
equal
deleted
inserted
replaced
|
1 <html> |
|
2 <head> |
|
3 <style> |
|
4 div:first-letter { float: left; } |
|
5 div { -moz-column-count: 2; width: 0; } |
|
6 </style> |
|
7 <script> |
|
8 function boom() |
|
9 { |
|
10 var v = document.getElementById("v"); |
|
11 v.removeChild(v.firstChild); |
|
12 } |
|
13 </script> |
|
14 </head> |
|
15 <body onload="boom();"> |
|
16 <div id="v">a b<span>c</span></div> |
|
17 </body> |
|
18 </html> |