Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Code-Review | +1 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Code-Review | +1 |
Commit-Queue | +2 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Ensure slot change signals follow tree order
The WPT test is failing because the slot change signal is not enqueue in
tree order.
According to [1], assign slottables should be run for each slot in tree
order. Current implementation, when there is a change in slottables, the
slot change signal is enqueue immediately without considering the order.
However, there is no guarantee that slottable changes follow the tree
order of the slots. So, the slot change signal may be enqueue in the
wrong order.
This patch fixes the bug by ensuring that slot change signals are
enqueue in tree order, regardless of the order in which slottables
change.
[1] https://dom.spec.whatwg.org/#assign-slotables-for-a-tree
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |