Closed
Bug 1087619
Opened 9 years ago
Closed 9 years ago
content/base/test/chrome/test_bug429785.xul has a function called QueryInteface
Categories
(Core :: DOM: Core & HTML, defect)
Tracking
()
RESOLVED
FIXED
mozilla36
People
(Reporter: jrmuizel, Assigned: baku)
Details
Attachments
(1 file)
1.13 KB,
patch
|
ehsan.akhgari
:
review+
|
Details | Diff | Splinter Review |
This is probably unintentional.
Assignee | ||
Comment 1•9 years ago
|
||
Actually it is. That test implements a listener for the nsIConsoleService: var listener = { QueryInteface : function(iid) { if (!iid.equals(Components.interfaces.nsISupports) && !iid.equals(Components.interfaces.nsIConsoleListener)) { throw Components.results.NS_NOINTERFACE; } return this; }, observe : function (msg) { errorLogged = true; } }; This seems totally correct. Am I misunderstanding this bug?
Flags: needinfo?(jmuizelaar)
Reporter | ||
Comment 2•9 years ago
|
||
Should that been done with QueryInterface instead of QueryInteface?
Flags: needinfo?(jmuizelaar)
Assignee | ||
Updated•9 years ago
|
Assignee: nobody → amarchesini
Assignee | ||
Comment 3•9 years ago
|
||
Attachment #8510298 -
Flags: review?(ehsan.akhgari)
Updated•9 years ago
|
Attachment #8510298 -
Flags: review?(ehsan.akhgari) → review+
Assignee | ||
Comment 4•9 years ago
|
||
https://hg.mozilla.org/integration/mozilla-inbound/rev/e413f8f8c235
Comment 5•9 years ago
|
||
https://hg.mozilla.org/mozilla-central/rev/e413f8f8c235
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla36
Updated•5 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•