Closed
Bug 232281
Opened 21 years ago
Closed 21 years ago
outerHTML property in MsHtml.IHtmlElement is not implemented
Categories
(Core Graveyard :: Embedding: ActiveX Wrapper, enhancement)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: atremon, Assigned: adamlock)
Details
Attachments
(2 files, 1 obsolete file)
2.96 KB,
patch
|
adamlock
:
review+
jst
:
superreview+
|
Details | Diff | Splinter Review |
3.12 KB,
patch
|
Details | Diff | Splinter Review |
User-Agent: Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6) Gecko/20040113 put_outerHTML and get_outerHTML are not implemented in CIEHtmlElement class Reproducible: Always Steps to Reproduce: 1. 2. 3.
Reporter | ||
Comment 1•21 years ago
|
||
Reporter | ||
Comment 3•21 years ago
|
||
bug 92264 is about the mozilla dom. This is about the Mozilla Control which is intended to replace the IE activeX.
Reporter | ||
Comment 4•21 years ago
|
||
Attachment #139970 -
Attachment is obsolete: true
Comment on attachment 139972 [details] [diff] [review] previous attachment was not a diff r=adamlock Looks great to me
Attachment #139972 -
Flags: review+
Reporter | ||
Updated•21 years ago
|
Status: NEW → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Reporter | ||
Updated•21 years ago
|
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Attachment #139972 -
Flags: superreview?(jst)
Comment 6•21 years ago
|
||
Comment on attachment 139972 [details] [diff] [review] previous attachment was not a diff HRESULT STDMETHODCALLTYPE CIEHtmlElement::put_outerHTML(BSTR v) { - return E_NOTIMPL; + nsresult rv; + nsCOMPtr<nsIDOMDocument> domDoc; ... This new code uses tabs for indentation, don't. Follow what's used in the rest of the file. HRESULT STDMETHODCALLTYPE CIEHtmlElement::get_outerHTML(BSTR __RPC_FAR *p) { ... + } + + *p = NULL; + + nsresult rv; + nsAutoString outerHTML; Mixed indentation, stick with spaces, don't use tabs. sr=jst with the indentation fixed.
Attachment #139972 -
Flags: superreview?(jst) → superreview+
Reporter | ||
Comment 7•21 years ago
|
||
Fix is checked in, thanks Alexandre!
Status: REOPENED → RESOLVED
Closed: 21 years ago → 21 years ago
Resolution: --- → FIXED
Updated•13 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•