| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style type="text/css" media="screen"> | 4 <style type="text/css" media="screen"> |
| 5 | 5 |
| 6 div { | 6 div { |
| 7 width: 100px; | 7 width: 100px; |
| 8 height: 100px; | 8 height: 100px; |
| 9 margin: 10px; | 9 margin: 10px; |
| 10 display: inline-block; | 10 display: inline-block; |
| 11 } | 11 } |
| 12 | 12 |
| 13 .red { | 13 .red { |
| 14 background-color: red; | 14 background-color: red; |
| 15 } | 15 } |
| (...skipping 16 matching lines...) Expand all Loading... |
| 32 <div class="blue"></div> | 32 <div class="blue"></div> |
| 33 <div class="green"></div> | 33 <div class="green"></div> |
| 34 <script> | 34 <script> |
| 35 if (window.testRunner) { | 35 if (window.testRunner) { |
| 36 testRunner.waitUntilDone(); | 36 testRunner.waitUntilDone(); |
| 37 testRunner.setBackingScaleFactor(2, function() { testRun
ner.notifyDone(); }); | 37 testRunner.setBackingScaleFactor(2, function() { testRun
ner.notifyDone(); }); |
| 38 } | 38 } |
| 39 </script> | 39 </script> |
| 40 </body> | 40 </body> |
| 41 </html> | 41 </html> |
| OLD | NEW |