OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script> | |
5 if (window.internals) | |
6 window.internals.settings.setCSSExclusionsEnabled(true); | |
7 </script> | |
8 <style> | 4 <style> |
9 .content{ | 5 .content{ |
10 width: 400px; | 6 width: 400px; |
11 height: 800px; | 7 height: 800px; |
12 -webkit-shape-inside: polygon(0 0, 100% 0, 100% 100%); | 8 -webkit-shape-inside: polygon(0 0, 100% 0, 100% 100%); |
13 outline: 2px solid black; | 9 outline: 2px solid black; |
14 } | 10 } |
15 #firstParagraph { padding-top: 100px; } | 11 #firstParagraph { padding-top: 100px; } |
16 </style> | 12 </style> |
17 </head> | 13 </head> |
(...skipping 10 matching lines...) Expand all Loading... |
28 of making a daisy-chain would be worth the trouble of getting up and | 24 of making a daisy-chain would be worth the trouble of getting up and |
29 picking the daisies, when suddenly a White Rabbit with pink eyes ran | 25 picking the daisies, when suddenly a White Rabbit with pink eyes ran |
30 close by her.</p> | 26 close by her.</p> |
31 </div> | 27 </div> |
32 <p> | 28 <p> |
33 A triangle shape is defined through the left-top, right-top, right-bottom points
of the rectangle. | 29 A triangle shape is defined through the left-top, right-top, right-bottom points
of the rectangle. |
34 The content should respect the shape-inside polygon boundaries after we applied
the padding.</p> | 30 The content should respect the shape-inside polygon boundaries after we applied
the padding.</p> |
35 <p>Bug <a href="http://webkit.org/b/112929 ">112929</a>: [CSS Exclusions] Increa
sing padding does not correctly layout child blocks</p> | 31 <p>Bug <a href="http://webkit.org/b/112929 ">112929</a>: [CSS Exclusions] Increa
sing padding does not correctly layout child blocks</p> |
36 </body> | 32 </body> |
37 </html> | 33 </html> |
OLD | NEW |