summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/tables/reference/table-anonymous-text-indent-ref.xht
blob: 08cffbf3cc5cee0c2b9b7440bd638285d9ebf0e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <style><![CDATA[
    #target { text-indent: 20px; display: table; }
    #target > * { display: table-cell; border: 1px solid black; }
    ]]></style>
  </head>
<body>
  <p>There should be 20px text-indent in the table below.</p>
  <div id="target">
    <div>First cell</div>
    Second cell (no element on purpose)
  </div>
</body>
</html>