Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(879)

Side by Side Diff: LayoutTests/fast/regions/shape-inside/shape-inside-on-second-region-block-content.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #content {
6 font: 18px Ahem, sans-serif;
7 line-height: 20px;
8 -webkit-flow-into: flow;
9 }
10 .region {
11 float: left;
12 margin-right: 10px;
13 width: 300px;
14 height: 300px;
15 background-color: yellow;
16 overflow: hidden;
17 border: 1px solid black;
18 -webkit-flow-from: flow;
19 }
20 #shape_inside {
21 shape-inside: rectangle(50px, 0px, 250px, 300px);
22 background-color: orange;
23 }
24 </style>
25 </head>
26 <body>
27
28 <div class="region"></div>
29 <div id="shape_inside" class="region"></div>
30 <div class="region" style="float: none"></div>
31
32 <div id="content">
33 <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 interference.
34 <p>Quilan is offered the chance to avenge the lost Chelgrians who died in the civil war and is inducted into a plot to strike back at the Culture.</p>
35 <p>As part of the plot, his
36 <p>"soulkeeper"</p>
37 (a device normally used to store its owner's personality upon their death) is equipped with both the mind of a long-dead Chelgrian general and a dev ice that can transport wormholes connected to weapons caches. Quilan is then sen t to Masaq' Orbital, ostensibly to persuade Mahrai Ziller to return to his nativ e 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.
38 </p>
39 </p>
40 </div>
41
42 <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/>
43 <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>
44
45 </body>
46 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698