Closed
Bug 598287
Opened 14 years ago
Closed 14 years ago
execCommand changes the inserted string
Categories
(Firefox :: General, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 597784
People
(Reporter: gklinda, Unassigned)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; hu; rv:1.9.2.10) Gecko/20100914 Firefox/3.6.10 ( .NET CLR 3.5.30729; .NET4.0C) FirePHP/0.4
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 6.0; hu; rv:1.9.2.10) Gecko/20100914 Firefox/3.6.10 ( .NET CLR 3.5.30729; .NET4.0C) FirePHP/0.4
The problem occures with a contentEditable element.
If this command is run on the element:
var str = "<a href=\"download.php?docID=24\" onclick="javascript: if (typeof(webraDocumentAnalitics)!=='undefined') {webraDocumentAnalitics('/download.php?docID=24');}">jlsdk</a>";
execCommand('insertHTML',false,str);
the result is this:
<a href="download.php?docID=24">jlsdk</a>
So the execCommand filters out the onclick attribute.
Reproducible: Always
Steps to Reproduce:
run this command:
var str = "<a href=\"download.php?docID=24\" onclick="javascript: if (typeof(webraDocumentAnalitics)!=='undefined') {webraDocumentAnalitics('/download.php?docID=24');}">jlsdk</a>";
execCommand('insertHTML',false,str);
Actual Results:
the contentEditable element contains:
<a href="download.php?docID=24">jlsdk</a>
Expected Results:
<a href=\"download.php?docID=24\" onclick="javascript: if (typeof(webraDocumentAnalitics)!=='undefined') {webraDocumentAnalitics('/download.php?docID=24');}">jlsdk</a>
Updated•14 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 14 years ago
Resolution: --- → DUPLICATE
Comment 2•14 years ago
|
||
In fact, we're going to change this behavior in bug 597784, so that inserthtml
doesn't strip anything from its input, the same way that setting innerHTML does
not. Please follow that bug for the progress of this issue.
You need to log in
before you can comment on or make changes to this bug.
Description
•