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 17529 - Inserting multiple script elements using a document fragment isn't specified properly
Summary: Inserting multiple script elements using a document fragment isn't specified ...
Status: RESOLVED FIXED
Alias: None
Product: HTML WG
Classification: Unclassified
Component: HTML5 spec (show other bugs)
Version: unspecified
Hardware: PC Linux
: P2 normal
Target Milestone: ---
Assignee: Silvia Pfeiffer
QA Contact: HTML WG Bugzilla archive list
URL:
Whiteboard:
Keywords:
Depends on: 17530
Blocks:
  Show dependency treegraph
 
Reported: 2012-06-18 07:13 UTC by Olli Pettay
Modified: 2013-03-22 00:10 UTC (History)
10 users (show)

See Also:


Attachments

Description Olli Pettay 2012-06-18 07:13:09 UTC
Per HTML spec inserting script element to DOM should execute it immediately
(I'm talking about var s = document.createElement("script"); s.textContent = "alert('foo')"; document.body.appendChild(s); case)

Unfortunately it isn't clear what should happen when you have several
script elements in a document fragment and insert that document fragment to DOM.

Gecko seems to execute scripts after all the nodes are in DOM.
This seems to be ok per spec, since nothing prevents to do 
"HTML: An element is said to have been inserted into a document when its root element changes and is now the document's root element." atomically for several elements and DOM4 just says
"Insert all nodes in nodes before child or at the end of parent if child is null."
The behavior Gecko has doesn't cause problems to Mutation Record creation.

Presto and Webkit execute scripts one by one during the document fragment insertion
but not in the same way. Webkit seems to remove nodes first from the document fragment,
Presto removes them one by one. (Webkit's follow the spec here)
Anyhow, the tricky thing is that what if some script moves nodes during insertion.
What kinds of Mutation Records should be created? What should actually happen to the nodes
which are being inserted to DOM but which some script moves to elsewhere just before insertion.
Comment 1 Henri Sivonen 2012-06-19 07:15:30 UTC
When there are nested scripts in the fragment, WebKit and IE10 agree on the execution order. Gecko doesn't. Presto misbehaves by using the .textContent instead of the concatenation of child text nodes.
Comment 2 Olli Pettay 2012-06-19 08:21:00 UTC
(In reply to comment #1)
> When there are nested scripts in the fragment, WebKit and IE10 agree on the
> execution order. Gecko doesn't. Presto misbehaves by using the .textContent
> instead of the concatenation of child text nodes.
This bug isn't about nested scripts ;)
Comment 3 Jonas Sicking (Not reading bugmail) 2012-06-19 23:27:42 UTC
We should absolutely not run scripts half-way through the mutation when a fragment is inserted. That brings back all the same trouble we had with mutation events.

The only sane thing, IMO, is to do all the mutations, and then do all actions which needs to synchronously call out into Javascript, and then return to the caller.

Anything else is both hellish to implement, and dramatically increases the amount of edge cases that we need to define (where does insertion happen if nodes are moved around half-way through the mutation, what happens if more nodes are added to the fragment as nodes are moved out of it, what happens if a child was removed from the fragment, but is inserted there again before the UA inserts it at its new location, and so on)
Comment 4 Olli Pettay 2012-06-19 23:30:35 UTC
(In reply to comment #3)
> We should absolutely not run scripts half-way through the mutation when a
> fragment is inserted. That brings back all the same trouble we had with
> mutation events.

Yup. I fully agree with you.
Comment 5 Henri Sivonen 2012-06-21 06:33:30 UTC
In addition to a document fragment, the same rules should apply even when inserting multiple elements at one by inserting an element that has element descendants.

About the execution order:
The parser executes scripts not in the depth-first order of start tags but in the depth first order of end tags. Of course, we don't have to be consistent with that, but worth remembering anyway.
Comment 6 Ian 'Hixie' Hickson 2012-06-21 06:37:27 UTC
Yeah, this isn't defined.

Unless there's a compat reason not to, my inclination is to define execution as
happening after the mutation listeners, in tree order (pre-order, depth-first
traversal).

See also bug 17543.
Comment 7 Ian 'Hixie' Hickson 2012-07-12 19:43:14 UTC
(this will probably use the hook from bug 17530)
Comment 8 contributor 2012-07-18 07:11:13 UTC
This bug was cloned to create bug 17880 as part of operation convergence.
Comment 9 Ian 'Hixie' Hickson 2012-09-20 19:50:00 UTC
*** Bug 17543 has been marked as a duplicate of this bug. ***
Comment 10 Travis Leithead [MSFT] 2013-03-22 00:10:27 UTC
This was fixed by a previous commit:
https://github.com/w3c/html/commit/6afe9c0f52fc4ffc27be7a6c724ec0dd36877c5c