OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <style> | |
5 .region { | |
6 width: 250px; | |
7 background-color: #dedede; | |
8 margin-top: 10px; | |
9 } | |
10 </style> | |
11 </head> | |
12 <body> | |
13 <article> | |
14 <div class="region"> | |
15 Despite the passage of time, Major Quilan still suffers grief and bereav
ement from the death of his wife, killed during the Chelgrian civil war | |
16 that resulted from the Culture's interference. Quilan is offered the cha
nce to avenge the lost Chelgrians who died in the civil war and is inducted | |
17 into a plot to strike back at the Culture. | |
18 </div> | |
19 </article> | |
20 <p> | |
21 We have two regions in the code, both regions have auto-height. The content
will fit into the first region, and the second region won't be displayed. | |
22 In this case we can't apply the shape on the region. The content should fill
the grey rectangle without any left offset. | |
23 </p> | |
24 <p>Bug <a href="http://webkit.org/b/123103">123103</a>: [CSS Shapes][CSS Regions
] Don't apply shape-inside when we have multiple auto-height regions and the hei
ght is not resolved</p> | |
25 </body> | |
26 </html> | |
OLD | NEW |