| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <style type="text/css"> | 2 <style type="text/css"> |
| 3 .firstDivStyle + .secondDivStyle { display: table-footer-group; } | 3 .firstDivStyle + .secondDivStyle { display: table-footer-group; } |
| 4 .rubyStyle { position: relative; } | 4 .rubyStyle { position: relative; } |
| 5 .secondDivStyle { -webkit-appearance: button; } | 5 .secondDivStyle { -webkit-appearance: button; } |
| 6 .posAbsolute { position: absolute; } | 6 .posAbsolute { position: absolute; } |
| 7 </style> | 7 </style> |
| 8 <script type="text/javascript"> | 8 <script type="text/javascript"> |
| 9 function dumpTest() { | 9 function dumpTest() { |
| 10 layoutTestController.notifyDone(); | 10 layoutTestController.notifyDone(); |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 window.onload = runTest; | 23 window.onload = runTest; |
| 24 </script> | 24 </script> |
| 25 <body> | 25 <body> |
| 26 PASS, if no exception or crash in debug | 26 PASS, if no exception or crash in debug |
| 27 <div class="firstDivStyle"></div> | 27 <div class="firstDivStyle"></div> |
| 28 <div class="secondDivStyle"></div> | 28 <div class="secondDivStyle"></div> |
| 29 <div id="remove"></div> | 29 <div id="remove"></div> |
| 30 <ruby id="ruby" class="rubyStyle"></ruby> | 30 <ruby id="ruby" class="rubyStyle"></ruby> |
| 31 </body> | 31 </body> |
| 32 </html> | 32 </html> |
| OLD | NEW |