OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script type="text/javascript"> | 3 <script type="text/javascript"> |
4 if (window.testRunner) | 4 if (window.internals) |
5 testRunner.testRepaint(); | 5 window.internals.settings.setForceCompositingMode(true); |
6 </script> | 6 </script> |
7 <style> | 7 <style> |
8 div.flexbox { | 8 div.flexbox { |
9 height: 80px; | 9 height: 80px; |
10 width: 80px; | 10 width: 80px; |
11 background-color: yellow; | 11 background-color: yellow; |
12 display: -moz-box; | 12 display: -moz-box; |
13 display: -webkit-box; | 13 display: -webkit-box; |
14 display: box; | 14 display: box; |
15 -moz-box-align: center; | 15 -moz-box-align: center; |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 <div class="bigbox"></div> | 59 <div class="bigbox"></div> |
60 </div> | 60 </div> |
61 </div> | 61 </div> |
62 <div style="padding:10px; margin-top: 20px; margin-bottom: 40px;"> | 62 <div style="padding:10px; margin-top: 20px; margin-bottom: 40px;"> |
63 <div class="flexbox vertical"> | 63 <div class="flexbox vertical"> |
64 <div class="bigbox">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Et
iam et ipsum. Nam consectetuer mi eget velit.</div> | 64 <div class="bigbox">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Et
iam et ipsum. Nam consectetuer mi eget velit.</div> |
65 </div> | 65 </div> |
66 </div> | 66 </div> |
67 </body> | 67 </body> |
68 </html> | 68 </html> |
OLD | NEW |