| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <style type="text/css"> | 2 <style type="text/css"> |
| 3 .inlineContainer { | 3 .inlineContainer { |
| 4 position: relative; | 4 position: relative; |
| 5 display: inline; | 5 display: inline; |
| 6 } | 6 } |
| 7 #positioned { | 7 #positioned { |
| 8 position: absolute; | 8 position: absolute; |
| 9 top: 100px; | 9 top: 100px; |
| 10 } | 10 } |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 setTimeout('runTest()', 0); | 28 setTimeout('runTest()', 0); |
| 29 </script> | 29 </script> |
| 30 <body> | 30 <body> |
| 31 PASS, if no exception or crash in debug | 31 PASS, if no exception or crash in debug |
| 32 <div class='inlineContainer'> | 32 <div class='inlineContainer'> |
| 33 <div>div1</div> | 33 <div>div1</div> |
| 34 <div id='positioned'>div2</div> | 34 <div id='positioned'>div2</div> |
| 35 </div> | 35 </div> |
| 36 </body> | 36 </body> |
| 37 </html> | 37 </html> |
| OLD | NEW |