Closed
Bug 1512048
Opened 7 years ago
Closed 7 years ago
Convert tabmodalprompt to a JS module
Categories
(Toolkit :: UI Widgets, task, P3)
Toolkit
UI Widgets
Tracking
()
RESOLVED
FIXED
mozilla66
| Tracking | Status | |
|---|---|---|
| firefox66 | --- | fixed |
People
(Reporter: bgrins, Assigned: timdream)
References
Details
Attachments
(1 file)
This appears to be only called in one place: https://searchfox.org/mozilla-central/rev/3fdc51e66c9487b39220ad58dcee275fca070ccd/browser/base/content/browser.js#8049.
There are two insertion points, but I think only the [includes="row"] is used: https://searchfox.org/mozilla-central/rev/3fdc51e66c9487b39220ad58dcee275fca070ccd/toolkit/components/prompts/content/tabprompts.xml.
A couple notes:
- If running this through the converter script, be aware that there are some #ifdefs that will be dropped and will need to be re-added with AppConstants check.
- The attributes on xbl:content get copied onto the host node
- It looks like there's some cleanup that could be done in the <constructor>, around the lookup of child nodes in `this.ui`. Could happen here or in a follow up.
Updated•7 years ago
|
Priority: -- → P3
| Assignee | ||
Comment 1•7 years ago
|
||
I am working on getting it converted to a JSM and have the caller pass around the JSM class instead of the element reference. The call path is quite messy but let's hope our test coverage is reliable.
Assignee: nobody → timdream
Status: NEW → ASSIGNED
| Assignee | ||
Comment 2•7 years ago
|
||
| Assignee | ||
Comment 3•7 years ago
|
||
(In reply to Tim Guan-tin Chien [:timdream] (please needinfo) from comment #2)
> https://treeherder.mozilla.org/#/
> jobs?repo=try&revision=e560bd5c8313954754c06466166d259d587582fa
So ... this kind of work except it is not easy for tests to get to the instances of the newly created class. I will need to investigate more about this or switch to custom element.
| Assignee | ||
Comment 4•7 years ago
|
||
https://treeherder.mozilla.org/#/jobs?repo=try&revision=23acf569e0efc2d78ed39d2dc9422869cdc56ab9
I've not fixed all the tests yet.
| Assignee | ||
Comment 5•7 years ago
|
||
What I found it extremely weird is that when the tabprompt binding is forced attached with
https://searchfox.org/mozilla-central/rev/8a135a9c5a96b59269f544fcaee76d8fd5a7026a/browser/base/content/browser.js#8032
the children binding seems to be all force attached too, even when many of them are set to hidden=true in the markup (or under a parent that is hidden). I don't think I can duplicate that with my setup...
| Assignee | ||
Comment 6•7 years ago
|
||
| Assignee | ||
Comment 7•7 years ago
|
||
This converts the tabmodalprompt binding to a class, to be constructed along side with the element
by TabModalPromptBox.
TabModalPromptBox will keep the instances in a map and pass it to the callers, instead of the element.
The tests and callers can access the class instance by passing the element reference to the map.
| Assignee | ||
Comment 8•7 years ago
|
||
| Assignee | ||
Comment 9•7 years ago
|
||
Comment 10•7 years ago
|
||
Pushed by tchien@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/92f9e0296e62
Convert tabmodalprompt binding to JSM module r=Gijs
Comment 11•7 years ago
|
||
| bugherder | ||
Status: ASSIGNED → RESOLVED
Closed: 7 years ago
status-firefox66:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla66
Updated•7 years ago
|
Summary: Convert tabmodalprompt to a Custom Element or JS module → Convert tabmodalprompt to a JS module
| Comment hidden (obsolete) |
| Comment hidden (obsolete) |
| Assignee | ||
Updated•7 years ago
|
Flags: needinfo?(timdream)
Comment 14•7 years ago
|
||
Hi Tim Guan-tin Chien, from the regression range, it seems that the bug 1512048 causes this regression. Please take a look on it.
Thanks
Flags: needinfo?(timdream)
| Assignee | ||
Comment 15•7 years ago
|
||
I am not available for making code contribution right now. Gijs, would you like to take over?
Flags: needinfo?(timdream) → needinfo?(gijskruitbosch+bugs)
| Assignee | ||
Comment 16•7 years ago
|
||
Oh it is being fixed already.
Flags: needinfo?(gijskruitbosch+bugs)
Updated•7 years ago
|
Type: defect → task
You need to log in
before you can comment on or make changes to this bug.
Description
•