Open
Bug 1191948
Opened 10 years ago
Updated 3 years ago
FormLikeFactory.jsm: TypeError: Argument 1 of ChromeUtils.getClassName is not an object.
Categories
(Toolkit :: Password Manager, defect, P3)
Toolkit
Password Manager
Tracking
()
People
(Reporter: jruderman, Unassigned)
References
Details
(Keywords: regression, testcase)
Attachments
(1 file)
|
332 bytes,
text/html
|
Details |
JavaScript error: resource://gre/modules/LoginManagerContent.jsm, line 1221: TypeError: doc.documentElement is null
Probably a regression from https://hg.mozilla.org/mozilla-central/rev/2a9bb5102e19, which included the following change:
- elements: [for (el of doc.querySelectorAll("input")) if (!el.form) el],
+ elements: [for (el of doc.documentElement.querySelectorAll("input")) if (!el.form) el],
(why?)
Flags: needinfo?(MattN+bmo)
Comment 1•8 years ago
|
||
This testcase still reproduces an error, though it's now:
> TypeError: rootElement is null FormLikeFactory.jsm:78:1
> for (let el of rootElement.querySelectorAll("input, select")) {
Has Regression Range: --- → yes
status-firefox56:
--- → wontfix
status-firefox57:
--- → wontfix
status-firefox58:
--- → fix-optional
status-firefox-esr52:
--- → wontfix
Updated•8 years ago
|
Flags: needinfo?(MattN+bmo)
Comment 2•8 years ago
|
||
status-firefox59:
--- → ?
Updated•6 years ago
|
Priority: -- → P3
Summary: LoginManagerContent.jsm: TypeError: doc.documentElement is null → FormLikeFactory.jsm: TypeError: Argument 1 of ChromeUtils.getClassName is not an object.
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•