| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 /* relative positioning ensures underlying RenderLayer */ | 5 /* relative positioning ensures underlying Layer */ |
| 6 .container { | 6 .container { |
| 7 position: relative; | 7 position: relative; |
| 8 } | 8 } |
| 9 | 9 |
| 10 .span { | 10 .span { |
| 11 display: boxed-inline; | 11 display: boxed-inline; |
| 12 margin: 2px; | 12 margin: 2px; |
| 13 border: solid; | 13 border: solid; |
| 14 } | 14 } |
| 15 </style> | 15 </style> |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 </script> | 317 </script> |
| 318 </head> | 318 </head> |
| 319 <body onload="doTest(testFuncs)"> | 319 <body onload="doTest(testFuncs)"> |
| 320 | 320 |
| 321 <div id="actual-container" class="container"></div> | 321 <div id="actual-container" class="container"></div> |
| 322 <div id="expect-container" class="container"></div> | 322 <div id="expect-container" class="container"></div> |
| 323 <pre id="console"></pre> | 323 <pre id="console"></pre> |
| 324 | 324 |
| 325 </body> | 325 </body> |
| 326 </html> | 326 </html> |
| OLD | NEW |