Commit ce784fe5 authored by Abhijeet Kandalkar's avatar Abhijeet Kandalkar Committed by Commit Bot

[css-filters] Migrate effect-reference-after.html test to WPT

Migrate this test out of third_party/blink/web_tests/css3/filters
and into the WPT-specific directory, adding links to the relevant
specs and a test assertion describing its purpose.

Bug: 1063749
Change-Id: Ibd1c9142411012bdcc0c0da889107854b6d313c2
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2134091
Commit-Queue: Abhijeet Kandalkar <abhijeet@igalia.com>
Reviewed-by: default avatarFredrik Söderquist <fs@opera.com>
Reviewed-by: default avatarPhilip Rogers <pdr@chromium.org>
Cr-Commit-Position: refs/heads/master@{#756511}
parent 00cf02f2
<html>
<body>
<img style="filter: url(#MyFilter);" src="resources/reference.png">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="0px" height="0px">
<defs>
<filter id="MyFilter">
<feColorMatrix type="hueRotate" values="180"/>
</filter>
</defs>
</svg>
</body>
</html>
<!doctype html>
<title>SVG Filters: feColorMatrix filter</title>
<link rel="help" href="https://drafts.fxtf.org/filter-effects/#FilterProperty">
<link rel="help" href="https://drafts.fxtf.org/filter-effects/#feColorMatrixElement">
<link rel="help" href="https://bugs.webkit.org/show_bug.cgi?id=90405">
<link rel="match" href="reference/effect-reference-after-001-ref.html">
<meta name="assert" content="Check that a reference filter with forward references work"/>
<body>
<img style="filter: url(#MyFilter);" src="support/reference.png">
<svg width="0px" height="0px">
<defs>
<filter id="MyFilter">
<feColorMatrix type="hueRotate" values="180"/>
</filter>
</defs>
</svg>
</body>
<!doctype html>
<html> <html>
<body> <body>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="0px" height="0px"> <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="0px" height="0px">
...@@ -6,6 +7,6 @@ ...@@ -6,6 +7,6 @@
<feColorMatrix type="hueRotate" values="180"/> <feColorMatrix type="hueRotate" values="180"/>
</filter> </filter>
</defs> </defs>
</svg><img style="filter: url(#MyFilter);" src="resources/reference.png"> </svg><img style="filter: url(#MyFilter);" src="../support/reference.png">
</body> </body>
</html> </html>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment