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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-multiple-blocks-vertical-expected.html

Issue 209443007: Remove shape-inside support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove now unused segmentIsEmpty Created 6 years, 9 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 .shape-inside {
6 width: 170px;
7 height: 280px;
8 padding: 15px 20px 5px 10px;
9 position: relative;
10 }
11 .rl { -webkit-writing-mode: vertical-rl; }
12 .lr { -webkit-writing-mode: vertical-lr; }
13 .border {
14 position: absolute;
15 top: 13px;
16 left: 8px;
17 width: 170px;
18 height: 280px;
19 border: 2px solid blue;
20 }
21 p { -webkit-margin-before: 0; }
22 </style>
23 </head>
24 <body>
25 <div class="shape-inside rl">
26 <div class="border"></div>
27 <div>
28 <p>Paragraph 1. This paragraph should start at the top right corner of the blue
29 rectangle. Its top and bottom edges should be within the blue rectan gle.
30 </div>
31 <p>Paragraph 2. This paragraph should be to the left of paragraph 1. Its top
32 and bottom edges should also be within the blue rectangle.
33 </div>
34 <div class="shape-inside lr">
35 <div class="border"></div>
36 <div>
37 <p>Paragraph 1. This paragraph should start at the top left corner o f the blue
38 rectangle. Its top and bottom edges should be within the blue rectan gle.
39 </div>
40 <p>Paragraph 2. This paragraph should be to the right of paragraph 1. It s top
41 and bottom edges should also be within the blue rectangle.
42 </div>
43 </body>
44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698