This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 21338 - Gut check on when to clear transient registered mutation observers
Summary: Gut check on when to clear transient registered mutation observers
Status: RESOLVED WONTFIX
Alias: None
Product: WebAppsWG
Classification: Unclassified
Component: DOM (show other bugs)
Version: unspecified
Hardware: PC Windows NT
: P2 normal
Target Milestone: ---
Assignee: Anne
QA Contact: public-webapps-bugzilla
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-03-19 16:07 UTC by Travis Leithead [MSFT]
Modified: 2013-04-09 11:57 UTC (History)
5 users (show)

See Also:


Attachments

Description Travis Leithead [MSFT] 2013-03-19 16:07:41 UTC
Background (my understanding of transient registered mutation observers--TRMOs):
------------------------
I believe that TRMOs are designed the way they are to make it so that the order of removal mutations becomes largely unimportant to ensuring an observer receives a complete view of all the changes between individual checkpoints.  Given the following tree:

<div>
    <p>
        <span>
        </span>
    </p>
</div>

If you attach an observer to the <div>, remove the <span>, and then remove the <p>, you’ll see two mutation records generated.  If you reverse the order of the removals, however, you would only see the removal record for the <p>, if not for TRMOs.  With TRMOs, when the <p> is removed, a TRMO is attached to it, and then the removal of the <span> can be observed, which would otherwise be lost due to the <div> not being in the <p>’s parent chain anymore.

Spec assessment:
------------------------
The spec states that TRMOs are to be removed at checkpoint time.  They’re not supposed to be permanent, they’re just supposed to be there long enough for script to see that some the <p> left the tree.  If it’s interested, it can register an observer on it and not miss anything as things move forward.

Question to consider:
------------------------
Do we think checkpoint time is the right time to remove TRMOs? The spec and Firefox/Chrome do it that way. However, after thinking about this for a while, I think the right time is actually any time the list of records is retrieved (checkpoint time, as well as calls to takeRecords). If TRMOs are not removed during takeRecords, then script will continue to receive transient observer notifications anytime between that call to takeRecords and the future checkpoint, and this to me seems confusing and possibly unwanted.  When takeRecords is called, the array contains the removal record for the <p>, but script will continue to receive transient records until the next checkpoint.  Perhaps weirder, if script does attach an observer to the <p> right after calling takeRecords, then it’ll potentially get double removal records until the next checkpoint (and there isn’t an easy way to avoid this, short of it manually deduplicating the records).

Thoughts? Should the spec be changed so that TRMOs are additionally cleared at takeRecords() time?
Comment 1 Rafael Weinstein 2013-03-19 18:44:37 UTC
Agreed. Clearing TRMOs is probably best at any deliver point (including takeRecords). I talked with Adam about this and we're fine changing both the spec and the webkit implementation (it's highly unlikely that any one will be broken by this change).
Comment 2 Olli Pettay 2013-03-19 18:52:26 UTC
I don't say yes to the change immediately. Need to think about this a day or two.
(I'm traveling right now so need to find some time to go through various
use cases)
Comment 3 Olli Pettay 2013-03-25 17:25:02 UTC
So, when takeRecords() was added I was thinking, and still do, that it shouldn't
affect to MutationRecord creation. It is just a way to get the current
records which can be then handled before the end of microtask.

There shouldn't be problem with double MutationRecords. There is just
one per mutation per MutationObserver.

Also, if you do want to clear transient observers, just disconnect()/observer()
after takeRecords().

So, it is not clear to me why we'd want to change the spec (also given that there has been two compatible implementations shipping quite some time).
Comment 4 Rafael Weinstein 2013-03-25 17:41:32 UTC
Olli is right that there isn't much risk of duplicate records (you'd need to create a *different* observer -- but in that case, you'd expect duplicate records).

I think Olli's mental model is also compelling.

Honestly, I'm actually not sure it matters much and I think both behaviors are fine. I can't think of a use-case reason to prefer one behavior to the other.

Can anyone else?
Comment 5 Travis Leithead [MSFT] 2013-04-01 17:53:36 UTC
Well, thanks for the discussion folks. If there's no other objection, it seems like keeping the status quo may be the best option, especially since there is already interop among the implementing browsers in this case. Thanks for hearing me out.