haikuwebkit/LayoutTests/svg/foreignObject/filter.html

21 lines
640 B
HTML
Raw Permalink Normal View History

<html>
<body style="margin: 0;">
<svg xmlns="http://www.w3.org/2000/svg">
<!-- The FO's red half should be filtered to white, with only the green half visible. -->
<defs>
<filter id="filter" width="200" height="10">
<feColorMatrix type="matrix" values="1,0,0,0,0, 1,1,0,0,0, 1,0,1,0,0, 0,0,0,1,0"/>
</filter>
</defs>
<foreignObject width="200" height="100" filter="url(#filter)" opacity=".5">
<html xmlns="http://www.w3.org/1999/xhtml">
Recent svg/foreignObject tests failing on Mac & Win https://bugs.webkit.org/show_bug.cgi?id=72386 Patch by Florin Malita <fmalita@google.com> on 2011-11-16 Reviewed by Simon Fraser. Drop unnecessary text elements from the svg/FO tests to avoid platform font size variance. * platform/chromium-cg-mac-snowleopard/svg/foreignObject/clip-expected.png: Removed. * platform/chromium-cg-mac-snowleopard/svg/foreignObject/filter-expected.png: Removed. * platform/chromium-cg-mac-snowleopard/svg/foreignObject/mask-expected.png: Removed. * platform/chromium-win/svg/foreignObject/background-render-phase-expected.txt: Removed. * platform/chromium-win/svg/foreignObject/clip-expected.txt: Removed. * platform/chromium-win/svg/foreignObject/filter-expected.txt: Removed. * platform/chromium-win/svg/foreignObject/mask-expected.txt: Removed. * platform/chromium/svg/foreignObject/background-render-phase-expected.txt: Removed. * platform/chromium/svg/foreignObject/clip-expected.txt: Removed. * platform/chromium/svg/foreignObject/filter-expected.txt: Removed. * platform/chromium/svg/foreignObject/mask-expected.txt: Removed. * platform/mac-snowleopard/svg/foreignObject/multiple-foreign-objects-expected.txt: Removed. * platform/qt/svg/foreignObject/background-render-phase-expected.png: Removed. * platform/qt/svg/foreignObject/background-render-phase-expected.txt: Removed. * platform/qt/svg/foreignObject/clip-expected.png: Removed. * platform/qt/svg/foreignObject/clip-expected.txt: Removed. * platform/qt/svg/foreignObject/filter-expected.png: Removed. * platform/qt/svg/foreignObject/filter-expected.txt: Removed. * platform/qt/svg/foreignObject/mask-expected.png: Removed. * platform/qt/svg/foreignObject/mask-expected.txt: Removed. * platform/qt/svg/foreignObject/multiple-foreign-objects-expected.png: Removed. * platform/qt/svg/foreignObject/multiple-foreign-objects-expected.txt: Removed. * svg/foreignObject/background-render-phase-expected.txt: * svg/foreignObject/background-render-phase.html: * svg/foreignObject/clip-expected.png: * svg/foreignObject/clip-expected.txt: * svg/foreignObject/clip.html: * svg/foreignObject/filter-expected.png: * svg/foreignObject/filter-expected.txt: * svg/foreignObject/filter.html: * svg/foreignObject/mask-expected.png: * svg/foreignObject/mask-expected.txt: * svg/foreignObject/mask.html: * svg/foreignObject/multiple-foreign-objects-expected.txt: * svg/foreignObject/multiple-foreign-objects.html: Canonical link: https://commits.webkit.org/88996@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@100465 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2011-11-16 18:16:04 +00:00
<body>
<div style="background: green; height: 50px;"></div>
<div style="background: red; height: 50px;"></div>
</body>
</html>
</foreignObject>
</svg>
</body>
</html>