mirror of
https://github.com/servo/servo.git
synced 2025-10-04 10:39:16 +01:00
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
39 lines
No EOL
1.3 KiB
HTML
39 lines
No EOL
1.3 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"><head>
|
|
<meta charset="UTF-8" />
|
|
<title>CSS Test: Inlinize block-level boxes inside ruby</title>
|
|
<link href="mailto:quanxunzhen@gmail.com" rel="author" title="Xidorn Quan" />
|
|
<link href="http://www.w3.org/TR/css-ruby-1/#anon-gen-inlinize" rel="help" />
|
|
<link href="reference/ruby-inlinize-blocks-002-ref.xht" rel="match" />
|
|
<style>
|
|
.block, table, .flex {
|
|
background-color: yellow;
|
|
width: 100px; height: 30px;
|
|
border: 1px solid blue;
|
|
}
|
|
.block { display: block; }
|
|
table { border-collapse: collapse; }
|
|
td { border: 3px solid red; }
|
|
.flex { display: flex; }
|
|
.flex-item { flex: auto; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div><rb>a<div class="block">b</div>c</rb><rt>x<div class="block">y</div>z</rt></div>
|
|
<div>
|
|
<rb>a<table><tbody><tr><td>b1</td><td>b2</td></tr></tbody></table>c</rb>
|
|
<rt>x<table><tbody><tr><td>y1</td><td>y2</td></tr></tbody></table>z</rt>
|
|
</div>
|
|
<div>
|
|
<rb>a<div class="flex">
|
|
<div class="flex-item">b1</div>
|
|
<div class="flex-item">b2</div>
|
|
</div>c</rb>
|
|
<rt>x<div class="flex">
|
|
<div class="flex-item">y1</div>
|
|
<div class="flex-item">y2</div>
|
|
</div>z</rt>
|
|
</div>
|
|
|
|
|
|
</body></html> |