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 #rectangle { | 5 #rectangle { |
10 font: 16px Ahem, sans-serif; | 6 font: 16px Ahem, sans-serif; |
11 -webkit-flow-into: rectangle; | 7 -webkit-flow-into: rectangle; |
12 } | 8 } |
13 | 9 |
14 .region { -webkit-flow-from: rectangle; } | 10 .region { -webkit-flow-from: rectangle; } |
15 | 11 |
16 #region1 { | 12 #region1 { |
17 width: 180px; | 13 width: 180px; |
(...skipping 26 matching lines...) Expand all Loading... |
44 <div id="page"> | 40 <div id="page"> |
45 <div id="region1" class="region"></div> | 41 <div id="region1" class="region"></div> |
46 <div id="region2" class="region"></div> | 42 <div id="region2" class="region"></div> |
47 <div id="region3" class="region"></div> | 43 <div id="region3" class="region"></div> |
48 </div> | 44 </div> |
49 <p>Requires Ahem font. Two different -shape-inside property are applied to t
he first and second region. The third region is a simple region without -shape-i
nside. | 45 <p>Requires Ahem font. Two different -shape-inside property are applied to t
he first and second region. The third region is a simple region without -shape-i
nside. |
50 The rectangles should flow through the regions and the shape-insides should
be applied to the first two regions.</p> | 46 The rectangles should flow through the regions and the shape-insides should
be applied to the first two regions.</p> |
51 <p> Bug <a href="http://webkit.org/b/107880">107880</a>: Regions should resp
ect shape-inside</p> | 47 <p> Bug <a href="http://webkit.org/b/107880">107880</a>: Regions should resp
ect shape-inside</p> |
52 </body> | 48 </body> |
53 </html> | 49 </html> |
OLD | NEW |