tor-browser

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

variables-in-expression-crash.html (391B)


      1 <!DOCTYPE html>
      2 
      3 <head>
      4    <link rel="help" href="https://github.com/servo/servo/issues/36971">
      5    <meta name="assert" content="Using variables in xpath expression should not crash.">
      6 </head>
      7 <body>
      8    <script>
      9      // The exact behaviour here is not defined. Firefox throws an error, Chrome doesn't.
     10      document.evaluate("$foo", document.createElement("div"));
     11    </script>
     12 </body>