summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/dom/svg-insert-crash.html
blob: 80eec1fba7ddc50db35fa53f7f4e72b59e6e31c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="author" href="mailto:masonf@chromium.org">
<link rel="help" href="https://crbug.com/1029262">
<meta name="assert" content="The renderer should not crash.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<svg>
  <!-- Note that the SVG in the data URL below is intentionally malformed: -->
 <feImage xlink:href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><rect"/>
</svg>

<script>
async_test(t => {
  window.onload = t.step_func_done();
}, 'The renderer should not crash.');
</script>