tor-browser

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

Object-createSource-url.js (236B)


      1 const g = newGlobal({ newCompartment: true });
      2 const dbg = Debugger();
      3 const gdbg = dbg.addDebuggee(g);
      4 
      5 const nonASCIIStr = "\u00FF\u0080";
      6 
      7 const source = gdbg.createSource({
      8  url: nonASCIIStr,
      9 });
     10 assertEq(source.url, nonASCIIStr);