tor-browser

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

bug1863390.js (211B)


      1 var left = "left-rope-child";
      2 var right = newString("right-rope-child", {twoByte: true});
      3 var rope = newRope(left, right);
      4 var result = rope.substring(0, left.length + 1);
      5 
      6 assertEq(result, "left-rope-childr");