Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Any copyright is dedicated to the Public Domain.
4 http://creativecommons.org/publicdomain/zero/1.0/
5 -->
6 <!-- Testcase for behavior of the 'baseline' value for align-items (and
7 align-self, implicitly). This test baseline-aligns various types of
8 content, and the flexbox's vertical size depends on the aggregate
9 post-alignment height of its children.
10 -->
11 <html xmlns="http://www.w3.org/1999/xhtml">
12 <head>
13 <title>CSS Test: Baseline alignment of block flex items with 'baseline' value for 'align-items' / 'align-self'</title>
14 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"/>
15 <link rel="help" href="http://www.w3.org/TR/css3-flexbox/#baseline-participation"/>
16 <link rel="match" href="flexbox-align-self-baseline-horiz-1-ref.xhtml"/>
17 <style>
18 .flexbox {
19 display: flex;
20 align-items: baseline;
21 border: 1px dashed blue;
22 font: 14px sans-serif;
23 }
25 .big {
26 height: 100px;
27 font: 24px sans-serif;
28 margin-top: 20px;
29 }
30 .super {
31 vertical-align: super;
32 font-size: 12px;
33 }
34 .sub {
35 vertical-align: sub;
36 font-size: 12px;
37 }
39 .lime { background: lime; }
40 .yellow { background: yellow; }
41 .orange { background: orange; }
42 .pink { background: pink; }
43 .aqua { background: aqua; }
44 .tan { background: tan; }
45 </style>
46 </head>
47 <body>
48 <div class="flexbox">
49 <div class="lime">blk_1line</div>
50 <div class="yellow">blk<br/>2lines</div>
51 <div class="orange"><span class="super">super</span></div>
52 <div class="pink"><span class="sub">sub</span></div>
53 <div class="aqua big">big<br/>text<br/>3lines</div>
54 <i class="tan">ital<br/>ic</i>
55 </div>
56 </body>
57 </html>