blob: 80eec1fba7ddc50db35fa53f7f4e72b59e6e31c7 [file] [log] [blame]
Mason Freed8f704cc2019-12-06 18:45:011<!DOCTYPE html>
2<meta charset="utf-8">
Blink WPT Bot98ed5922021-03-18 17:14:203<link rel="author" href="mailto:masonf@chromium.org">
Mason Freed8f704cc2019-12-06 18:45:014<link rel="help" href="https://crbug.com/1029262">
5<meta name="assert" content="The renderer should not crash.">
6<script src="/resources/testharness.js"></script>
7<script src="/resources/testharnessreport.js"></script>
8
9<svg>
10 <!-- Note that the SVG in the data URL below is intentionally malformed: -->
11 <feImage xlink:href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><rect"/>
12</svg>
13
14<script>
15async_test(t => {
16 window.onload = t.step_func_done();
17}, 'The renderer should not crash.');
18</script>