| Index: third_party/WebKit/LayoutTests/paint/clipath/clip-path-with-background-and-box-behind-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/clipath/clip-path-with-background-and-box-behind-expected.html b/third_party/WebKit/LayoutTests/paint/clipath/clip-path-with-background-and-box-behind-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1a5bc64ba518c694f8f55596c4e5af02d24b36a7
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/paint/clipath/clip-path-with-background-and-box-behind-expected.html
|
| @@ -0,0 +1,23 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +#boxpos {
|
| + position: absolute;
|
| + background-color: green;
|
| +}
|
| +.box {
|
| + position: relative;
|
| + -webkit-clip-path: url(#equitri);
|
| + height: 100px;
|
| + width: 100px;
|
| + background: red;
|
| +}
|
| +</style>
|
| +<div id="boxpos">
|
| + <div class="box"></div>
|
| +</div>
|
| +
|
| +<svg id="tri">
|
| + <clipPath id="equitri" clipPathUnits="objectBoundingBox">
|
| + <polygon points=".5 0, 0 .86, 1 .86, .5 0" />
|
| + </clipPath>
|
| +</svg>
|
|
|