servo/tests/wpt/css-tests/css-shapes-1_dev/html/reference/shape-outside-content-box-002-ref.htm
Ms2ger 296fa2512b Update web-platform-tests and CSS tests.
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180.
- Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
2017-02-06 22:38:29 +01:00

61 lines
No EOL
1.9 KiB
HTML

<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ --><html><head><meta charset="utf-8">
<title>CSS Shape Test: float right, content-box reference</title>
<link href="mailto:tlin@mozilla.com" rel="author" title="Ting-Yu Lin">
<link href="http://www.mozilla.org/" rel="author" title="Mozilla">
<style>
.container {
direction: rtl;
width: 175px;
line-height: 0;
}
.shape {
float: right;
/* Omit shape-outside: content-box; */
box-sizing: content-box;
height: 25px;
width: 25px;
padding-right: 25px;
border-right: 25px solid lightgreen;
margin-right: 25px;
background-color: orange;
}
.box {
display: inline-block;
width: 50px;
height: 25px;
background-color: blue;
}
.longbox {
display: inline-block;
width: 175px;
height: 25px;
background-color: blue;
}
</style>
</head><body class="container">
<div class="longbox"></div> <!-- Saturate the margin space -->
<div class="longbox"></div> <!-- Saturate the border space -->
<div class="longbox"></div> <!-- Saturate the padding space -->
<div class="shape"></div>
<div class="box"></div>
<div class="longbox"></div> <!-- Saturate the padding space -->
<div class="longbox"></div> <!-- Saturate the border space -->
<div class="longbox"></div> <!-- Saturate the margin space -->
<div class="longbox"></div> <!-- Saturate the margin space -->
<div class="longbox"></div> <!-- Saturate the border space -->
<div class="longbox"></div> <!-- Saturate the padding space -->
<div class="shape"></div>
<div class="box"></div>
<div class="longbox"></div> <!-- Saturate the padding space -->
<div class="longbox"></div> <!-- Saturate the border space -->
<div class="longbox"></div> <!-- Saturate the margin space -->
</body></html>