Title: [289865] trunk/LayoutTests
- Revision
- 289865
- Author
- hironori.fu...@sony.com
- Date
- 2022-02-15 16:51:49 -0800 (Tue, 15 Feb 2022)
Log Message
fast/filter-image/filter-image-svg.html is failing to load the image due to a wrong path
https://bugs.webkit.org/show_bug.cgi?id=236632
Reviewed by Simon Fraser.
This test case had the following CSS.
> background-image: filter(url(image.svg), url(#filter));
However, 'image.svg' doesn't exist. DRT and WTR unexpectedly
loaded the missing image icon and applied the filter. It should be
'resources/image.svg'.
* fast/filter-image/filter-image-svg.html:
Modified Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (289864 => 289865)
--- trunk/LayoutTests/ChangeLog 2022-02-16 00:44:25 UTC (rev 289864)
+++ trunk/LayoutTests/ChangeLog 2022-02-16 00:51:49 UTC (rev 289865)
@@ -1,3 +1,19 @@
+2022-02-15 Fujii Hironori <hironori.fu...@sony.com>
+
+ fast/filter-image/filter-image-svg.html is failing to load the image due to a wrong path
+ https://bugs.webkit.org/show_bug.cgi?id=236632
+
+ Reviewed by Simon Fraser.
+
+ This test case had the following CSS.
+ > background-image: filter(url(image.svg), url(#filter));
+
+ However, 'image.svg' doesn't exist. DRT and WTR unexpectedly
+ loaded the missing image icon and applied the filter. It should be
+ 'resources/image.svg'.
+
+ * fast/filter-image/filter-image-svg.html:
+
2022-02-15 Matteo Flores <matteo_flo...@apple.com>
REGRESSION(r289495): [ Monterey arm64 ] model-element/model-element-ready.html is a flaky assertion failure.
Modified: trunk/LayoutTests/fast/filter-image/filter-image-svg.html (289864 => 289865)
--- trunk/LayoutTests/fast/filter-image/filter-image-svg.html 2022-02-16 00:44:25 UTC (rev 289864)
+++ trunk/LayoutTests/fast/filter-image/filter-image-svg.html 2022-02-16 00:51:49 UTC (rev 289865)
@@ -8,7 +8,7 @@
</script>
<style>
div {
- background-image: filter(url(image.svg), url(#filter));
+ background-image: filter(url(resources/image.svg), url(#filter));
width: 100px;
height: 100px;
}
@@ -26,4 +26,4 @@
</filter>
</svg>
</body>
-</html>
\ No newline at end of file
+</html>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes