From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from resqmta-ch2-01v.sys.comcast.net (resqmta-ch2-01v.sys.comcast.net [IPv6:2001:558:fe21:29:69:252:207:33]) by hurricane.the-brannons.com (Postfix) with ESMTPS id EFC9B77A00 for ; Fri, 17 Mar 2017 07:50:10 -0700 (PDT) Received: from resomta-ch2-18v.sys.comcast.net ([69.252.207.114]) by resqmta-ch2-01v.sys.comcast.net with SMTP id otAicdJ6rFex2otD1cGP6b; Fri, 17 Mar 2017 14:50:27 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20161114; t=1489762227; bh=mTjUIOLHCczFyGfVBFNxKVnYYBcTgOkBg+uMwAIFAVY=; h=Received:Received:To:From:Reply-to:Subject:Date:Message-ID: Mime-Version:Content-Type; b=lKY0YrbFyyWqosubmCMOrQm7Kw8rf81HSkZEg2y070zoZ/86DZ5ujETSi++8K8jdp U0Z7QM0h6ZOq13EoflnierfUY12ZrOz1RAvITYp1xgXoapapg64EfktX/KQOh+3wPo s2TbU+YjXyceJ5qHjMgJeRxYHn2b/578xfLqR+Z2wa63L4zJF4SmxTtoZAlRtl8QMk tyhpeKdhvikEGfbB+b04siAPq5MGaFDSWy8DntbO/WjKkVvUP9FwvTM1fnwa4Ctutk Ho1juXejnhSCXSqAJwpf4kxj4vkRhOl43oV3ZKJVS7GldSWI6PeAH9eIuVjzArISRs 9nQ5OM1jNZgEw== Received: from unknown ([68.56.159.26]) by resomta-ch2-18v.sys.comcast.net with SMTP id otD0cvvHepxUzotD0cF8Ed; Fri, 17 Mar 2017 14:50:27 +0000 To: Edbrowse-dev@lists.the-brannons.com From: Karl Dahlke Reply-to: Karl Dahlke User-Agent: edbrowse/3.6.2+ Date: Fri, 17 Mar 2017 10:50:26 -0400 Message-ID: <20170217105026.eklhad@comcast.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=nextpart-eb-764632 Content-Transfer-Encoding: 7bit X-CMAE-Envelope: MS4wfHyxCtx40/ToTRcoROMgwmUvsqAKMxEwSOsRQ6RuzUvx+KUvFljSLZg4Yc3JGRmrtjioCPequX8sCae2RoYBS9zYM//1NiIel2EVFx1Fhxdn+IYB2hJS i1n8NJuJNn2QB81mJBQvumUgHjZ3kUXzpTN/ZpiZ5yCY10lclpsNTbx9rIJgTmi6RI0citnIFs+wuw== Subject: [Edbrowse-dev] innerHTML length limit X-BeenThere: edbrowse-dev@lists.the-brannons.com X-Mailman-Version: 2.1.23 Precedence: list List-Id: Edbrowse Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Mar 2017 14:50:11 -0000 This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --nextpart-eb-764632 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable >>From the dawn of tidy, I put a length limit on innerHTML text strings. = Not sure why. Guess I was wearing my math hat and not my practical computer hat. In theory memory could be consumed as the square of the html document.
...
But that is pathological, and probably doesn't happen in the real world. Meantime, some js wants to see body.innerHTML, the entire document. So I removed the length restriction. Anything goes. I then turned to a rather large html document with lots of tags, our = users guide. There was no change that I could detect, but then again, there's no js = either. Some time back I added a feature to suppress all js if there are no = scripts, no onclick code, etc. At db3 you'll see the message no js dorrway indicating this. This was especially important when huge pdf books are turned into html, = then into text to read, and you don't want all that js machinery for no reason. Anyways, I added