haikuwebkit/LayoutTests/css3/masking/clip-path-border-box.html

18 lines
294 B
HTML
Raw Permalink Normal View History

<!DOCTYPE html>
<style>
.clip {
width: 140px;
height: 140px;
background-color: green;
padding: 10px;
border: 10px solid green;
margin: 10px;
-webkit-clip-path: border-box;
Transform CSS clip-path pixel tests to ref tests https://bugs.webkit.org/show_bug.cgi?id=129607 Reviewed by Andreas Kling. * css3/masking/clip-path-border-box.html: * css3/masking/clip-path-circle-filter-expected.txt: Removed. * css3/masking/clip-path-circle-overflow-expected.txt: Removed. * css3/masking/clip-path-circle-overflow-hidden-expected.txt: Removed. * css3/masking/clip-path-circle-overflow-hidden.html: Removed. * css3/masking/clip-path-circle-relative-overflow-expected.txt: Removed. * css3/masking/clip-path-ellipse-expected.html: Renamed from LayoutTests/css3/masking/clip-path-circle-filter.html. * css3/masking/clip-path-ellipse-expected.txt: Removed. * css3/masking/clip-path-ellipse.html: * css3/masking/clip-path-filter-expected.html: Added. * css3/masking/clip-path-filter.html: Added. * css3/masking/clip-path-inset-expected.html: Copied from LayoutTests/css3/masking/clip-path-ellipse.html. * css3/masking/clip-path-inset-expected.txt: Removed. * css3/masking/clip-path-overflow-expected.html: Copied from LayoutTests/css3/masking/clip-path-circle-overflow.html. * css3/masking/clip-path-overflow-hidden-expected.html: Copied from LayoutTests/css3/masking/clip-path-ellipse.html. * css3/masking/clip-path-overflow-hidden.html: Renamed from LayoutTests/css3/masking/clip-path-circle-overflow.html. * css3/masking/clip-path-overflow.html: Copied from LayoutTests/css3/masking/clip-path-ellipse.html. * css3/masking/clip-path-polygon-evenodd-expected.html: Added. * css3/masking/clip-path-polygon-evenodd-expected.txt: Removed. * css3/masking/clip-path-polygon-evenodd.html: * css3/masking/clip-path-polygon-expected.html: Copied from LayoutTests/css3/masking/clip-path-ellipse.html. * css3/masking/clip-path-polygon-expected.txt: Removed. * css3/masking/clip-path-polygon-nonzero-expected.html: Copied from LayoutTests/css3/masking/clip-path-ellipse.html. * css3/masking/clip-path-polygon-nonzero-expected.txt: Removed. * css3/masking/clip-path-polygon-nonzero.html: * css3/masking/clip-path-polygon.html: * platform/efl/css3/masking/clip-path-circle-overflow-expected.png: Removed. * platform/efl/css3/masking/clip-path-circle-overflow-hidden-expected.png: Removed. * platform/efl/css3/masking/clip-path-ellipse-expected.png: Removed. * platform/gtk/css3/masking/clip-path-circle-overflow-expected.png: Removed. * platform/gtk/css3/masking/clip-path-circle-overflow-hidden-expected.png: Removed. * platform/gtk/css3/masking/clip-path-ellipse-expected.png: Removed. * platform/mac/css3/masking/clip-path-circle-overflow-expected.png: Removed. * platform/mac/css3/masking/clip-path-circle-overflow-hidden-expected.png: Removed. * platform/mac/css3/masking/clip-path-ellipse-expected.png: Removed. * platform/mac/css3/masking/clip-path-inset-expected.png: Removed. * platform/mac/css3/masking/clip-path-polygon-evenodd-expected.png: Removed. * platform/mac/css3/masking/clip-path-polygon-expected.png: Removed. * platform/mac/css3/masking/clip-path-polygon-nonzero-expected.png: Removed. Canonical link: https://commits.webkit.org/147665@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@164992 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2014-03-03 18:32:27 +00:00
box-shadow: 3px 3px 3px black;
}
</style>
<body>
<div class="clip"></div>
</body>
</html>