Closed
Bug 1691314
Opened 4 years ago
Closed 4 years ago
Rewrite `X.setAttribute("hidden", Y)` to `X.hidden = Y` in devtools/client
Categories
(DevTools :: General, task)
DevTools
General
Tracking
(firefox87 fixed)
RESOLVED
FIXED
87 Branch
Tracking | Status | |
---|---|---|
firefox87 | --- | fixed |
People
(Reporter: ntim, Assigned: ntim)
References
(Blocks 1 open bug)
Details
(Keywords: good-first-bug)
Attachments
(1 file)
+++ This bug was initially created as a clone of Bug #1691274 +++
.setAttribute("hidden", "true");
-> .hidden = true;
.setAttribute("hidden", true);
-> .hidden = true;
.setAttribute("hidden", "false");
-> .hidden = false;
.setAttribute("hidden", false);
-> .hidden = false;
Assignee | ||
Updated•4 years ago
|
Assignee: nobody → ntim.bugs
Mentor: ntim.bugs
Assignee | ||
Comment 1•4 years ago
|
||
Pushed by ntim.bugs@gmail.com:
https://hg.mozilla.org/integration/autoland/rev/b2d82e87b557
Use DOM hidden property instead of attribute methods in devtools/client. r=nchevobbe
Comment 3•4 years ago
|
||
Backed out for causing failures on browser_styleeditor_copyurl.js.
Backout link: https://hg.mozilla.org/integration/autoland/rev/85ad75cdd7fdae48cd0fd7755bcd0a2e4f5eae76
Failure log: https://treeherder.mozilla.org/logviewer?job_id=329371606&repo=autoland&lineNumber=7165
Flags: needinfo?(ntim.bugs)
Assignee | ||
Updated•4 years ago
|
Flags: needinfo?(ntim.bugs)
Pushed by ntim.bugs@gmail.com:
https://hg.mozilla.org/integration/autoland/rev/4761c80b4305
Use DOM hidden property instead of attribute methods in devtools/client. r=nchevobbe
Comment 5•4 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 4 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
•