comparison: layout/base/crashtests/388715-1.html
layout/base/crashtests/388715-1.html
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 <!DOCTYPE html> |
|
2 <html> |
|
3 <head> |
|
4 |
|
5 <style type="text/css"> |
|
6 #div:first-letter { float: left; color: lightgreen; } |
|
7 </style> |
|
8 |
|
9 <script type="text/javascript"> |
|
10 function boom() |
|
11 { |
|
12 document.getElementById("div").className = "anything"; |
|
13 } |
|
14 </script> |
|
15 </head> |
|
16 |
|
17 <body onload="boom()"> |
|
18 |
|
19 <div id="div"><span style="color: magenta">Foo</span> bar</div> |
|
20 |
|
21 </body> |
|
22 </html> |