mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
65 lines
No EOL
2 KiB
HTML
65 lines
No EOL
2 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<!-- Any copyright is dedicated to the Public Domain.
|
|
- http://creativecommons.org/publicdomain/zero/1.0/ --><html xmlns="http://www.w3.org/1999/xhtml"><head><meta charset="utf-8" />
|
|
<title>CSS Shape Test: float right, border-box</title>
|
|
<link href="mailto:tlin@mozilla.com" rel="author" title="Ting-Yu Lin" />
|
|
<link href="http://www.mozilla.org/" rel="author" title="Mozilla" />
|
|
<link href="https://drafts.csswg.org/css-shapes-1/#shapes-from-box-values" rel="help" />
|
|
<link href="reference/shape-outside-border-box-002-ref.xht" rel="match" />
|
|
<meta content="" name="flags" />
|
|
<meta content="Test the boxes are wrapping around the right float shape defined by the border-box value." name="assert" />
|
|
<style>
|
|
.container {
|
|
direction: rtl;
|
|
width: 200px;
|
|
line-height: 0;
|
|
}
|
|
|
|
.shape {
|
|
float: right;
|
|
shape-outside: border-box;
|
|
box-sizing: content-box;
|
|
height: 25px;
|
|
width: 25px;
|
|
padding: 25px;
|
|
border: 25px solid lightgreen;
|
|
margin: 25px;
|
|
background-color: orange;
|
|
}
|
|
|
|
.box {
|
|
display: inline-block;
|
|
width: 25px;
|
|
height: 25px;
|
|
background-color: blue;
|
|
}
|
|
|
|
.longbox {
|
|
display: inline-block;
|
|
width: 200px;
|
|
height: 25px;
|
|
background-color: blue;
|
|
}
|
|
</style>
|
|
|
|
</head><body class="container">
|
|
<div class="shape"></div>
|
|
<div class="shape"></div>
|
|
<div class="longbox"></div> <!-- Saturate the margin space -->
|
|
<div class="box"></div>
|
|
<div class="box"></div>
|
|
<div class="box"></div>
|
|
<div class="box"></div>
|
|
<div class="box"></div>
|
|
<div class="longbox"></div> <!-- Saturate the margin space -->
|
|
|
|
<div class="longbox"></div> <!-- Saturate the margin space -->
|
|
<div class="box"></div>
|
|
<div class="box"></div>
|
|
<div class="box"></div>
|
|
<div class="box"></div>
|
|
<div class="box"></div>
|
|
<div class="longbox"></div> <!-- Saturate the margin space -->
|
|
|
|
|
|
</body></html> |