tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

svg-insert-crash.html (609B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <link rel="author" href="mailto:masonf@chromium.org">
      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>