Closed
Bug 307193
Opened 20 years ago
Closed 14 years ago
properties of Components.stack aren't listed
Categories
(Core :: XPConnect, defect)
Tracking
()
RESOLVED
INVALID
People
(Reporter: surkov, Unassigned)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.9a1) Gecko/20050821 Firefox/1.6a1
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.9a1) Gecko/20050821 Firefox/1.6a1
When I try to list properties of Components.stack by using 'in' operator then I
get 'caller' property only.
var str="";
var stack=Components.stack;
for(var i in stack);
{
str+=i+'\n';
}
alert(str);
Reproducible: Always
Comment 1•19 years ago
|
||
bz, please cc: more people than just me -- I'm tired of playing operator ;-).
/be
Updated•19 years ago
|
Assignee: dbradley → nobody
Updated•19 years ago
|
QA Contact: pschwartau → xpconnect
Comment 2•14 years ago
|
||
Actually, there is a ';' after for(var i in stack), so str+=i is executed after loop.
This bug should probably be closed as invalid.
Updated•14 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 14 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•