Closed
Bug 1449807
Opened 8 years ago
Closed 8 years ago
Don't flush in nsXBLResourceLoader::NotifyBoundElements.
Categories
(Core :: DOM: Core & HTML, enhancement)
Core
DOM: Core & HTML
Tracking
()
RESOLVED
FIXED
mozilla61
| Tracking | Status | |
|---|---|---|
| firefox61 | --- | fixed |
People
(Reporter: emilio, Assigned: emilio)
References
Details
Attachments
(1 file)
No description provided.
| Assignee | ||
Updated•8 years ago
|
| Comment hidden (mozreview-request) |
| Assignee | ||
Comment 2•8 years ago
|
||
Comment 3•8 years ago
|
||
| mozreview-review | ||
Comment on attachment 8963440 [details]
Bug 1449807: Don't flush in nsXBLResourceLoader::NotifyBoundElements.
https://reviewboard.mozilla.org/r/232350/#review238236
::: dom/xbl/nsXBLResourceLoader.cpp:238
(Diff revision 1)
> content->OwnerDoc()->UnblockOnload(/* aFireSync = */ false);
>
> bool ready = false;
> xblService->BindingReady(content, bindingURI, &ready);
>
> - if (ready) {
> + if (!ready) {
It's not actually clear to me whether "ready" can end up false here... seems odd. Might be worth a followup to make that API saner.
::: dom/xbl/nsXBLResourceLoader.cpp:242
(Diff revision 1)
>
> - if (ready) {
> + if (!ready) {
> + continue;
> + }
> +
> - // We need the document to flush out frame construction and
> + // We need the document to flush out frame construction and
We're not flushing anything anymore. Please fix this comment.
Attachment #8963440 -
Flags: review?(bzbarsky) → review+
Pushed by ecoal95@gmail.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/526edefabb8c
Don't flush in nsXBLResourceLoader::NotifyBoundElements. r=bz
Comment 5•8 years ago
|
||
| bugherder | ||
Status: NEW → RESOLVED
Closed: 8 years ago
status-firefox61:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla61
Updated•7 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•