Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <style> | |
| 5 .grid { | |
| 6 width: 100px; | |
| 7 height: 100px; | |
| 8 background-color: green; | |
| 9 } | |
| 10 </style> | |
| 11 </head> | |
| 12 <body> | |
| 13 <p>This test checks that 'order' changes the paint ordering.</p> | |
| 14 <p>There should be 2 green squares below.</p> | |
| 15 <div class="grid"></div> | |
| 16 | |
| 17 <div class="grid"></div> | |
| 18 </body> | |
| 19 </html> | |
| OLD | NEW |