Closed
Bug 1691315
Opened 5 years ago
Closed 5 years ago
Rewrite `X.setAttribute("hidden", Y)` to `X.hidden = Y` in devtools/startup
Categories
(DevTools :: General, task)
DevTools
General
Tracking
(firefox87 fixed)
RESOLVED
FIXED
87 Branch
| Tracking | Status | |
|---|---|---|
| firefox87 | --- | fixed |
People
(Reporter: ntim, Assigned: ntim)
References
Details
Attachments
(1 file)
+++ This bug was initially created as a clone of Bug #1691314 +++
.setAttribute("hidden", "true"); -> .hidden = true;
.setAttribute("hidden", true); -> .hidden = true;
.setAttribute("hidden", "false"); -> .hidden = false;
.setAttribute("hidden", false); -> .hidden = false;
| Assignee | ||
Comment 1•5 years ago
|
||
Updated•5 years ago
|
Assignee: nobody → ntim.bugs
Status: NEW → ASSIGNED
Updated•5 years ago
|
Attachment #9201688 -
Attachment description: Bug 1691315 - Replace .setAttribute(hidden, X) usages in devtools/startup. r=nchevobbe → Bug 1691315 - Replace .setAttribute("hidden", X) usages in devtools/startup. r=nchevobbe
Pushed by ntim.bugs@gmail.com:
https://hg.mozilla.org/integration/autoland/rev/d706a12d0b85
Replace .setAttribute("hidden", X) usages in devtools/startup. r=nchevobbe
Comment 3•5 years ago
|
||
| bugherder | ||
Status: ASSIGNED → RESOLVED
Closed: 5 years ago
status-firefox87:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 87 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•