OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <style> | |
5 .region { | |
6 font: 18px Ahem, sans-serif; | |
7 line-height: 20px; | |
8 float: left; | |
9 margin-right: 10px; | |
10 width: 300px; | |
11 height: 300px; | |
12 background-color: yellow; | |
13 overflow: hidden; | |
14 border: 1px solid black; | |
15 } | |
16 #shape_inside { background-color: orange; } | |
17 #placeholder { | |
18 float: left; | |
19 width: 50px; | |
20 height: 300px; | |
21 } | |
22 </style> | |
23 </head> | |
24 <body> | |
25 | |
26 <div class="region"> | |
27 <p>Despite the passage</p> of time, Major Quilan still suffers grief and ber
eavement from the death of his wife, killed during the Chelgrian civil war that
resulted from the Culture's | |
28 </div> | |
29 <div id="shape_inside" class="region"> | |
30 <div id="placeholder"></div> | |
31 interference. | |
32 <p>Quilan is offered the chance to avenge the lost Chelgrians who died in th
e civil war and is inducted into a plot to strike back at the | |
33 </div> | |
34 <div class="region" style="float: none"> | |
35 Culture.</p> | |
36 <p>As part of the plot, his | |
37 <p>"soulkeeper"</p> | |
38 (a device normally used to store its owner's personality upon their d
eath) is equipped with both the mind of a long-dead Chelgrian general and a devi
ce that can transport wormholes connected to weapons caches. Quilan is then sent
to Masaq' Orbital, ostensibly to persuade Mahrai Ziller to return to his native
Chel but is in reality on a suicide mission to destroy the Orbital's Hub Mind.
To protect him from detection at Masaq', Quilan's memory is selectively blanked
until he reaches his target. | |
39 </p> | |
40 </p> | |
41 </div> | |
42 | |
43 <p>Requires Ahem font.The block content - contains multiple nested blocks - flow
s into three regions, a 250x300px rectangle shape-inside property with 50px left
offset is applied to the second (orange) region. The content should have a 50px
left offset in the orange rectangle and should flow into the third rectangle wi
thout any offset.<br/> | |
44 <p>Bug <a href="http://webkit.org/b/115456">115456</a>: [CSS Regions][CSS Exclus
ions] Shape-inside on regions should respect region borders and paddings</p> | |
45 | |
46 </body> | |
47 </html> | |
OLD | NEW |