The <fill-rule> in the polygon() syntax is not handled because it doesn't matter to shape-outside at all. The reftests are numbered from 018 to avoid conflict with the w3c upstream ones according to this list. https://test.csswg.org/harness/results/css-shapes-1_dev/grouped/ Reftest 018 to 025 are under various writing-modes, 026 to 029 are testing empty float area, 030 to 031 are testing polygon containing horizontal lines. MozReview-Commit-ID: FPUbMdZsvu6
51 lines
1.4 KiB
HTML
51 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<!-- Any copyright is dedicated to the Public Domain.
|
|
- http://creativecommons.org/publicdomain/zero/1.0/ -->
|
|
|
|
<html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Shape Test: float left, polygon(60px 20px, 100px 60px) border-box reference</title>
|
|
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
|
|
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
|
|
<style>
|
|
.container {
|
|
position: absolute;
|
|
width: 200px;
|
|
line-height: 0;
|
|
}
|
|
|
|
.shape {
|
|
float: left;
|
|
/* Omit shape-outside */
|
|
clip-path: polygon(60px 20px, 100px 60px) border-box;
|
|
box-sizing: content-box;
|
|
height: 40px;
|
|
width: 40px;
|
|
padding: 20px;
|
|
border: 20px solid lightgreen;
|
|
margin: 20px;
|
|
background-color: orange;
|
|
}
|
|
|
|
.box {
|
|
position: absolute;
|
|
width: 80px;
|
|
background-color: blue;
|
|
}
|
|
|
|
.long {
|
|
width: 200px;
|
|
}
|
|
</style>
|
|
|
|
<body class="container">
|
|
<div class="shape"></div>
|
|
<div class="long box" style="height: 30px; top: 0; left: 0;"></div>
|
|
<div class="long box" style="height: 30px; top: 30px; left: 0;"></div>
|
|
<div class="long box" style="height: 20px; top: 60px; left: 0;"></div>
|
|
<div class="long box" style="height: 20px; top: 80px; left: 0;"></div>
|
|
<div class="long box" style="height: 30px; top: 100px; left: 0;"></div>
|
|
<div class="long box" style="height: 30px; top: 130px; left: 0;"></div>
|
|
</body>
|
|
</html>
|