Closed
Bug 1087619
Opened 10 years ago
Closed 10 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•10 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•10 years ago
|
||
Should that been done with QueryInterface instead of QueryInteface?
Flags: needinfo?(jmuizelaar)
Assignee | ||
Updated•10 years ago
|
Assignee: nobody → amarchesini
Assignee | ||
Comment 3•10 years ago
|
||
Attachment #8510298 -
Flags: review?(ehsan.akhgari)
Updated•10 years ago
|
Attachment #8510298 -
Flags: review?(ehsan.akhgari) → review+
Assignee | ||
Comment 4•10 years ago
|
||
Comment 5•10 years ago
|
||
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla36
Updated•6 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•