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 } | 6 } |
7 </script> | 7 </script> |
8 <style> | 8 <style> |
9 div > span { background: silver; } | 9 div > span { background: silver; } |
10 </style> | 10 </style> |
11 </head> | 11 </head> |
12 <body> | 12 <body> |
13 <p> | 13 <p> |
14 This is a repaint test of inline blocks with overflow. | 14 This is a repaint test of inline blocks with overflow. |
15 </p> | 15 </p> |
16 <hr> | 16 <hr> |
17 <span>Here comes an <span style="background: silver; display: inline-block;
width: 100px; vertical-align: top; height: 20px;">inline block with overflow.</s
pan></span> | 17 <span>Here comes an <span style="background: silver; display: inline-block;
width: 100px; vertical-align: top; height: 20px;">inline block with overflow.</s
pan></span> |
18 </body> | 18 </body> |
19 </html> | 19 </html> |
OLD | NEW |