| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 .fail, .pass, #spacer { | 4 .fail, .pass, #spacer { |
| 5 display: table-cell; | 5 display: table-cell; |
| 6 } | 6 } |
| 7 | 7 |
| 8 .pass { | 8 .pass { |
| 9 visibility: hidden; | 9 visibility: hidden; |
| 10 } | 10 } |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 <div style="display: -webkit-box; -webkit-box-orient: horizontal"> | 28 <div style="display: -webkit-box; -webkit-box-orient: horizontal"> |
| 29 This test passes if there is a green box that stretches the width of the page. | 29 This test passes if there is a green box that stretches the width of the page. |
| 30 <div style="padding-left: 1px"> | 30 <div style="padding-left: 1px"> |
| 31 <div class="fail">FA</div> | 31 <div class="fail">FA</div> |
| 32 <div id="spacer" style="color: green; width: 100%; background-color: green">
</div> | 32 <div id="spacer" style="color: green; width: 100%; background-color: green">
</div> |
| 33 <div class="fail">IL</div> | 33 <div class="fail">IL</div> |
| 34 </div> | 34 </div> |
| 35 </div> | 35 </div> |
| 36 </body> | 36 </body> |
| 37 </html> | 37 </html> |
| OLD | NEW |