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

Side by Side Diff: LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-horizontal-rectangle-001-expected.html

Issue 200633005: [CSS Shapes] Remove deprecated shapes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix test expectations 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 <title>CSS RefTest Reference</title>
3 <link rel="author" title="Adobe" href="http://html.adobe.com/">
4 <link rel="author" title="Bem Jones-Bey" href="mailto:bjonesbe@adobe.com">
5 <meta name="flags" content="ahem">
6 <style>
7 .container {
8 width: 75px;
9 height: 100px;
10 font: 25px/1 Ahem;
11 line-height: 25px;
12 border: 10px solid black;
13 display: inline-block;
14 -webkit-writing-mode: vertical-lr;
15 }
16
17 .left-text {
18 text-align: left;
19 }
20
21 .right-text {
22 text-align: right;
23 }
24
25 .left {
26 float: left;
27 width: 50px;
28 height: 75px;
29 }
30
31 .right {
32 float: right;
33 width: 50px;
34 height: 75px;
35 }
36 </style>
37 </head>
38 <body>
39 <p>Test passes if you see two black rectangle boxes with a smaller white rec tangle in one corner of each.</p>
40 <div class="container left-text">
41 <div class="left"></div>
42 X<br/>
43 X<br/>
44 XXXX<br/>
45 </div>
46
47 <div class="container right-text">
48 <div class="right"></div>
49 X<br/>
50 X<br/>
51 XXXX<br/>
52 </div>
53 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698