haikuwebkit/LayoutTests/css3/masking/clip-path-filter.html

20 lines
303 B
HTML
Raw Permalink Normal View History

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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
div {
width: 160px;
padding: 10px;
height: 160px;
background-color: red;
border: 10px solid red;
-webkit-filter: brightness(0) blur(2px);
-webkit-clip-path: inset(0) padding-box;
}
</style>
</head>
<body>
<div>
</body>
</html>