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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/floats/shape-inside-floats-simple-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 <script src="../resources/simple-rectangle.js"></script>
5 <style id="stylesheet">
6 .container {
7 font: 10px/1 Ahem, sans-serif;
8 }
9 .spacer {
10 width: 50px;
11 height: 50px;
12 background-color: green;
13 }
14 .vertical-lr {
15 -webkit-writing-mode: vertical-lr;
16 }
17 .vertical-rl {
18 -webkit-writing-mode: vertical-rl;
19 }
20 </style>
21 <script>
22 window.onload = function () {
23 var content = 'XXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\n<div c lass="spacer" style="float:right"></div>\n<div class="spacer" style="float:left" ></div>\nXXXXX\nXXXXX\nXXXXX\nXXXXX\nXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\nXX XXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXX X';
24 createRectangleTestResult('base', 'stylesheet', { height: 200, width: 20 0 }, { x: 25, y: 0, width: 150, height: 150 }, 'px', content);
25 createRectangleTestResult('rl', 'stylesheet', { height: 200, width: 200 }, { x: 0, y: 25, width: 150, height: 150 }, 'px', content);
26 createRectangleTestResult('lr', 'stylesheet', { height: 200, width: 200 }, { x: 0, y: 25, width: 150, height: 150 }, 'px', content);
27 };
28 </script>
29 </head>
30 <body>
31 <h1>The following tests should all be large black squares that contain two s maller green squares on the same line.</h1>
32 <h2>Standard left right writing mode</h2>
33 <div id="base" class="container">
34 </div>
35 <h2>Vertical Right Left writing mode</h2>
36 <div id="rl" class="container vertical-rl"></div>
37 <h2>Vertical Left Right writing mode</h2>
38 <div id="lr" class="container vertical-lr"></div>
39 </body>
40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698