#6782 closed enhancement (fixed)
carefully allow more strings to use innerHTML
Reported by: | cmcnulty | Owned by: | dmethvin |
---|---|---|---|
Priority: | blocker | Milestone: | 1.7 |
Component: | manipulation | Version: | 1.4.4 |
Keywords: | html, 1.7-discuss | Cc: | |
Blocked by: | Blocking: |
Description (last modified by )
.html() uses rnocache to determine both if a snippet should be cached by buildFragment() and also whether or not html() should use append or innerHTMLto insert the snippet. The problem is that buildFragment requires more stringent rules than innerHTML does, and therefore fewer strings use innerHTML than otherwise could, and that hurts performance, particularly by stripping all snippets with an <option anywhere in the string.
I therefore suggest a new regex rule explicitly to determine if innerHTML or append method should be used. Not only will the improve performance, but it also makes the code cleaner, more readable and make more sense.
The new regex only excludes <style and <script for the following documented reasons:
style: http://dev.jquery.com/ticket/5977
script: http://poeticcode.wordpress.com/2007/10/03/innerhtml-and-script-tags/
<object and <embed
Have tests added to them, and cause no new failures in IE7, FF3.7 or Chrome 5.
I discussed these changes a while back in this topic:
http://forum.jquery.com/topic/html-performance-vs-cruft#14737000000784382
Attachments (2)
Change History (27)
Changed 13 years ago by
Attachment: | html_innerhtml_patch.txt added |
---|
Changed 13 years ago by
Attachment: | manipulation-innerHTML-tests.txt added |
---|
comment:1 Changed 13 years ago by
Milestone: | 1.4.3 |
---|
comment:2 Changed 13 years ago by
Milestone: | → 1.5 |
---|---|
Priority: | → high |
Status: | new → open |
Version: | 1.4.2 → 1.4.4 |
comment:3 Changed 12 years ago by
Created a jsperf test to show the performance increase:
http://jsperf.com/tweaks-to-rnocache
I extend jquery to create a .html2() which is identical to .html() except that rather than using nocache it uses a regex test that it optimized for .html()
comment:5 Changed 12 years ago by
Milestone: | → 1.next |
---|
comment:8 Changed 12 years ago by
Owner: | set to wookiehangover |
---|---|
Status: | open → assigned |
I'm gonna take crack at this.
comment:9 Changed 12 years ago by
Glad to hear this has been assigned. I've been pushing for this change for a long time and am very familiar with at least some of the issues involved. Feel free to let me know if you have any questions! I'm not convinced that this little change is going to be a cure-all for the #7341 problems, but it should help a bit in IE 7,8,9.
comment:10 Changed 12 years ago by
Keywords: | 1.7-discuss added |
---|
Nominating ticket for 1.7 discussion.
comment:11 follow-up: 14 Changed 12 years ago by
Description: | modified (diff) |
---|
+0, What about IE6? Need proof.
comment:12 Changed 12 years ago by
Description: | modified (diff) |
---|
+1, If the perf here is demonstrable in IE, then let's go for it.
comment:14 Changed 12 years ago by
Replying to jaubourg:
+0, What about IE6? Need proof.
IE6 sees near 100% performance increase, passes all unit tests.
comment:15 follow-up: 16 Changed 12 years ago by
Description: | modified (diff) |
---|
@cmcnulty can you provide a test case that we can view in IE6?
comment:16 Changed 12 years ago by
Replying to rwaldron:
@cmcnulty can you provide a test case that we can view in IE6?
I'd be happy to, but I'm not sure exactly what you're looking for. I've tested the change in jsperf with IE6, and the pull request passes all of the unit tests. The nice thing about this change is that existing unit tests already cover pretty much this entire change except for <EMBED which is the only thing the pull request adds a unit test for. (None currently exist for EMBED anywhere in the unit tests) Other than that, there are already tests in place for, for instance, making sure that an option stays selected, making sure the <OBJECT is inserted properly, etc.
comment:18 Changed 12 years ago by
Description: | modified (diff) |
---|
+1, If we think that this might work as we expect it to, then let's go for it.
comment:24 Changed 12 years ago by
Description: | modified (diff) |
---|---|
Milestone: | 1.next → 1.7 |
Priority: | high → blocker |
comment:25 Changed 12 years ago by
Owner: | changed from wookiehangover to dmethvin |
---|
comment:26 Changed 12 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Resetting milestone to future.