#11323 closed bug (fixed)
script tags with type="text/ecmascript" leak into the DOM
Reported by: | gibson042 | Owned by: | Rick Waldron |
---|---|---|---|
Priority: | low | Milestone: | 1.7.2 |
Component: | manipulation | Version: | 1.7.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
jQuery.clean
has inconsistent logic for adding script elements to the result set vs. moving them into the scripts array: the former checks for no type or "text/javascript" or "text/ecmascript"; the latter only for no type or "text/javascript". As a result, those with type "text/ecmascript" are erroneously added to the result fragment and ultimately to the DOM.
Change History (9)
comment:1 Changed 11 years ago by
Resolution: | → wontfix |
---|---|
Status: | new → closed |
comment:3 Changed 11 years ago by
Ideally we'd only remove script tags if the browser was going to "execute" them. I wonder if there is a simple feature detect for that. Or is it better to consistently remove scripts even if they aren't executed on the current browser? Seems like it's a dontcare if it doesn't execute.
comment:4 Changed 11 years ago by
Resolution: | wontfix |
---|---|
Status: | closed → reopened |
ugh. I didn't actually mean to select "wont fix"
comment:5 Changed 11 years ago by
Component: | unfiled → manipulation |
---|---|
Priority: | undecided → low |
Status: | reopened → open |
comment:7 Changed 11 years ago by
Owner: | set to Rick Waldron |
---|---|
Status: | open → assigned |
As I said in the PR:
This does way more then address the bug in the ticket... I'm sorry, but after I re-opened the ticket, I wrote a test and tiny patch for this that only addresses the bug in question.
Minimal patch, directly addresses issue, includes tests: https://github.com/jquery/jquery/pull/681
comment:8 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Fix #11323. Consistently use rscriptType in jQuery.clean()
Changeset: f0732c1e4138342c96e35ff51d5cd681b6cfdb94
comment:9 Changed 11 years ago by
Milestone: | None → 1.7.2 |
---|
RFC 4326 Defines "text/ecmascript" as obsolete