Closed
Bug 248898
Opened 22 years ago
Closed 17 years ago
strict javascript warnings
Categories
(Core Graveyard :: Profile: Roaming, defect)
Core Graveyard
Profile: Roaming
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: bugzilla, Assigned: bugzilla)
References
Details
Attachments
(1 file)
|
3.15 KB,
patch
|
BenB
:
review-
|
Details | Diff | Splinter Review |
Warning: anonymous function does not always return a value
Source File: chrome://sroaming/content/prefs/all.js
Line: 379, Column: 35
Source Code:
return errorProp ? true : false;
Warning: reference to undefined property parent.roaming
Source File: chrome://sroaming/content/prefs/top.js
Line: 59
Warning: assignment to undeclared variable registry
Source File: chrome://sroaming/content/prefs/all.js
Line: 158
Warning: redeclaration of var checkbox
Source File: chrome://sroaming/content/prefs/files.js
Line: 138, Column: 10
Source Code:
var checkbox = children[i2];
Assignee: nobody → ben.bucksch
Component: Profile: BackEnd → Profile: Roaming
QA Contact: core.profile-manager-backend → core.profile-roaming
Summary: [roaming] strict javascript warnings → strict javascript warnings
Updated•22 years ago
|
Assignee: ben.bucksch → nobody
Severity: normal → minor
Updated•22 years ago
|
OS: Windows XP → All
Hardware: PC → All
| Assignee | ||
Updated•22 years ago
|
Assignee: nobody → bugzilla
| Assignee | ||
Updated•22 years ago
|
Status: NEW → ASSIGNED
| Assignee | ||
Comment 1•22 years ago
|
||
| Assignee | ||
Updated•22 years ago
|
Attachment #151942 -
Flags: superreview?(alecf)
Attachment #151942 -
Flags: review?(ben.bucksch)
Comment on attachment 151942 [details] [diff] [review]
v1
>- registry = Components.classes["@mozilla.org/registry;1"]
>+ var registry = Components.classes["@mozilla.org/registry;1"]
> .createInstance(Components.interfaces.nsIRegistry);
fix up the indentation of the cI line.
>Index: files.xul
these changes don't look related
>- if (!parent.roaming)
>+ if (typeof(parent.roaming) == "undefined")
personally i prefer !("roaming" in parent && parent.roaming).
--
Warning ``redeclaration of var checkbox'' [xs] in file
``chrome://sroaming/content/prefs/files.js'', line 138, character 10.
Error ``listitem has no properties'' [xs] in file
``chrome://sroaming/content/prefs/files.js'', line 104, character 0.
Exception ``TypeError: listitem has no properties'' thrown from function
SetFile(elementID=string:"filePassword", filename=string:"73427382.s") in
<chrome://sroaming/content/prefs/files.js> line 104.
[e] message = [string] "listitem has no properties"
Exception ``TypeError: listitem has no properties'' thrown from function
SetFiles() in <chrome://sroaming/content/prefs/files.js> line 84.
[e] message = [string] "listitem has no properties"
Comment 3•21 years ago
|
||
Comment on attachment 151942 [details] [diff] [review]
v1
Sorry for my lack of response here. Most of this is being fixed in bug 249359
and bug 244558. Left is only (at most):
+ <listitem type="checkbox"
+ id="training"
+ filename="training.dat"
+ label="" />
- if (!parent.roaming)
+ if (typeof(parent.roaming) == "undefined")
Attachment #151942 -
Flags: superreview?(alecf)
Attachment #151942 -
Flags: review?(ben.bucksch)
Attachment #151942 -
Flags: review-
Comment 4•17 years ago
|
||
Last bit fixed by the removal of roaming.
Status: ASSIGNED → RESOLVED
Closed: 17 years ago
Resolution: --- → FIXED
Updated•10 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•