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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/inline-block/baseline-vertical.html

Issue 2523573003: Use logicalBottom when computing baselines in vertical-lr inline-blocks (Closed)
Patch Set: Rebaselined layout tests. Created 4 years 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/platform/linux/fast/backgrounds/background-leakage-transforms-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 body { margin: 0px; }
4 .float {
5 float: left;
6 margin-left: 5px;
7 }
8 .container {
9 background: grey;
10 text-orientation: sideways;
11 }
12 .container :nth-child(1) { font-size:12px; }
13 .container :nth-child(2) { font-size:20px; }
14 .container :nth-child(3) { font-size:30px; }
15 .container :nth-child(4) { font-size:40px; }
16 .item {
17 display: inline-block;
18 border-width: 2px 5px 3px 4px;
19 border-style: solid;
20 padding: 6px 3px 7px 8px;
21 margin: 10px 6px 4px 12px;
22 }
23 .width175 { width: 175px; }
24 .width125 { width: 125px; }
25 .extraLeftPadding { padding-left: 30px; }
26 .extraRightPadding { padding-right: 30px; }
27 .verticalLR { writing-mode: vertical-lr; }
28 .verticalRL { writing-mode: vertical-rl; }
29 .directionRTL { direction: rtl; }
30 </style>
31
32 <div class="float">
33 <p>VerticalLR and LTR</p>
34 <div class="container width125 verticalLR">
35 <div class="item">A</div><div class="item">A</div><div class="item">A</d iv><div class="item">A</div>
36 </div>
37 </div>
38 <div class="float">
39 <p>VerticalLR and RTL<br></p>
40 <div class="container width125 verticalLR directionRTL">
41 <div class="item">A</div><div class="item">A</div><div class="item">A</d iv><div class="item">A</div>
42 </div>
43 </div>
44 <div class="float">
45 <p>VerticalLR and LTR</p>
46 <div class="container width175 verticalLR">
47 <div class="item extraLeftPadding">A</div><div class="item">A</div><div class="item extraRightPadding">A</div><div class="item">A</div>
48 </div>
49 </div>
50 <div class="float">
51 <p>VerticalLR and RTL</p>
52 <div class="container width175 verticalLR directionRTL">
53 <div class="item extraLeftPadding">A</div><div class="item">A</div><div class="item extraRightPadding">A</div><div class="item">A</div>
54 </div>
55 </div>
56
57 <br clear="all">
58
59 <div class="float">
60 <p>VerticalRL and LTR</p>
61 <div class="container width125 verticalRL">
62 <div class="item">A</div><div class="item">A</div><div class="item">A</d iv><div class="item">A</div>
63 </div>
64 </div>
65 <div class="float">
66 <p>VerticalRL and RTL</p>
67 <div class="container width125 verticalRL directionRTL">
68 <div class="item">A</div><div class="item">A</div><div class="item">A</d iv><div class="item">A</div>
69 </div>
70 </div>
71 <div class="float">
72 <p>VerticalRL and LTR</p>
73 <div class="container width175 verticalRL">
74 <div class="item extraLeftPadding">A</div><div class="item">A</div><div class="item extraRightPadding">A</div><div class="item">A</div>
75 </div>
76 </div>
77 <div class="float">
78 <p>VerticalRL and RTL</p>
79 <div class="container width175 verticalRL directionRTL">
80 <div class="item extraLeftPadding">A</div><div class="item">A</div><div class="item extraRightPadding">A</div><div class="item">A</div>
81 </div>
82 </div>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/platform/linux/fast/backgrounds/background-leakage-transforms-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698