| Mason Freed | 8f704cc | 2019-12-06 18:45:01 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <meta charset="utf-8"> |
| Blink WPT Bot | 98ed592 | 2021-03-18 17:14:20 | [diff] [blame] | 3 | <link rel="author" href="mailto:masonf@chromium.org"> |
| Mason Freed | 8f704cc | 2019-12-06 18:45:01 | [diff] [blame] | 4 | <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> |
| 15 | async_test(t => { |
| 16 | window.onload = t.step_func_done(); |
| 17 | }, 'The renderer should not crash.'); |
| 18 | </script> |