Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent execution of (some) scripts moving between documents #2673

Merged
merged 1 commit into from
Apr 21, 2020

Conversation

domenic
Copy link
Member

@domenic domenic commented May 12, 2017

This causes scripts that move between documents between the preparation
and execution phases to not execute, aligning with most browsers. Closes
#2469.

This does not address #2137, which is about scripts moving between
documents between the parsing and preparation, or parsing and execution
phases.

(See WHATWG Working Mode: Changes for more details.)


/scripting.html ( diff )

@domenic domenic added do not merge yet Pull request must not be merged per rationale in comment topic: script labels May 12, 2017
domenic added a commit to web-platform-tests/wpt that referenced this pull request May 12, 2017
This follows the changes in whatwg/html#2673, but also tests the issue at whatwg/html#2137 in favor of the current spec.
source Outdated Show resolved Hide resolved
source Outdated Show resolved Hide resolved
domenic added a commit to web-platform-tests/wpt that referenced this pull request May 20, 2017
This follows the changes in whatwg/html#2673, but also tests the issue at whatwg/html#2137 in favor of the current spec.
@domenic domenic force-pushed the scripts-between-documents branch from 4d941ba to 1e038c9 Compare May 20, 2017 00:04
source Outdated Show resolved Hide resolved
@hiroshige-g
Copy link
Contributor

Related to this, when we move scripts across documents, the following things (associated with Document) are not changed and thus, for example, set-of-scripts-that-will-execute-as-soon-as-possible of Document A can contain script elements that now belongs to another Document B, right?

https://html.spec.whatwg.org/#list-of-scripts-that-will-execute-when-the-document-has-finished-parsing
https://html.spec.whatwg.org/#list-of-scripts-that-will-execute-in-order-as-soon-as-possible
https://html.spec.whatwg.org/#set-of-scripts-that-will-execute-as-soon-as-possible
https://html.spec.whatwg.org/#pending-parsing-blocking-script

@hiroshige-g
Copy link
Contributor

@domenic
Copy link
Member Author

domenic commented Jun 2, 2017

In general let me know what you think. I am not 100% confident in my interpretation of when we should fire the error event, but I think the latest is pretty good. Happy to hear your thoughts.

Related to this, when we move scripts across documents, the following things (associated with Document) are not changed and thus, for example, set-of-scripts-that-will-execute-as-soon-as-possible of Document A can contain script elements that now belongs to another Document B, right?

I looked into these, and most of them are not a problem. The lists will indeed contain scripts from the other document, but that's OK, it just means when we go to execute them, we do nothing.

The pending parsing-blocking script is trickier, and I am not sure if maybe it is a problem. It seems like it might be OK to leave the spec as-is, and let it continue blocking until it is ready to execute, even though if it gets moved elsewhere, executing will be a no-op. What do you think?

Also we might want to update the following non-normative notes: https://html.spec.whatwg.org/#pending-parsing-blocking-script

If we go with the above (no change), then I think this note is still accurate.

https://html.spec.whatwg.org/#the-execution-of-scripts-that-are-moving-across-multiple-documents

This section seems to match the new spec text, but not match the old spec text, which is interesting. Did you have any change in mind?

@domenic
Copy link
Member Author

domenic commented Sep 22, 2017

Talked with @hiroshige-g in person to help me page all this back into my head. Things to do:

  • When moving between documents, we have two reasonable choices:

    • The error/load event fires, depending on what happens on the network
    • Neither event fires, no matter what happens on the network

    Right now the PR is in a bad in-between state where if the network request succeeds, the load event fires, but if it fails, the error event does not fire.

    We prefer suppressing the events since the whole point here is to not run script, so it's a better conservative default.

  • About the pending parser-blocking stuff, the PR's approach is good; it avoids having to do something at the time something is moved. But we do need to update the non-normative note, which currently says "at which time the script executes"; it should be "at which time the run a script algorithm runs (and immediately does nothing)" or similar.

  • This may work better on top of Fix module script error handling, again #2991.

@domenic domenic force-pushed the scripts-between-documents branch 2 times, most recently from ccff6c5 to f19bef0 Compare September 22, 2017 10:29
@domenic
Copy link
Member Author

domenic commented Sep 22, 2017

@hiroshige-g This should work better now; would love your review here and on web-platform-tests/wpt#5911 . I think our plan is still to not merge the spec change until we have shown this is web-compatible. However we can merge the test changes with a .tentative.html extension if that helps Blink's implementation.

source Outdated
<li>
<p>If the element is flagged as <span>"parser-inserted"</span>, but <var>document</var> is
not the <code>Document</code> of the parser that created the element, then return.</p>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't this the same check as the one about the settings object above, except this one is restricted to "parser-inserted" elements? (And this one isn't really grounded in proper primitives.)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nah, as the note below explains, it can occur in a slightly different scenario. The script's script is created during "prepare a script", but the Document of the parser that created the element is determined before "prepare a script" runs. I think there were tests for this difference in the linked WPT PR.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems Firefox doesn't restrict this to "parser-inserted" scripts as I found in #3486. I also think that if we need to keep this it would be nice to clean it up by actually having a place to store that document.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How can a script have a parser that creates it, but not be parser-inserted?

This is essentially a null-check, i.e.

if (script.parserThisWasCreatedBy !== null && script.parserThisWasCreatedBy.document !== script.nodeDocument) {
  return;
}

Without the first clause the second clause would "crash".

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's a good point. What I meant was that Firefox seems to store a creator document on all script elements and no longer execute the script element if its node document does not match its creator document.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The actual logic in Firefox is that we store the creator parser and then don't execute if that parser's doc does not match the owner doc. See https://searchfox.org/mozilla-central/rev/47cb352984bac15c476dcd75f8360f902673cb98/dom/script/ScriptElement.cpp#134-144

If you have a non-parser-inserted testcase that's showing the behavior you mention, I can take a look to see what's actually going on with it.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bzbarsky second test in #3486.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And in particular, we store a "creator document" on the queued-up thing, not the script itself.

source Outdated Show resolved Hide resolved
@domenic
Copy link
Member Author

domenic commented Feb 20, 2018

BTW given results at web-platform-tests/wpt#5911 (comment) I am not sure why I wanted to wait on Chrome before merging this. Roughly matching 2/4 browsers with a better behavior seems pretty reasonable, especially given Chrome's expressed interest in aligning with this spec change.

domenic added a commit to web-platform-tests/wpt that referenced this pull request Feb 20, 2018
This follows the changes in whatwg/html#2673, but also tests the issue at whatwg/html#2137 in favor of the current spec.
@annevk
Copy link
Member

annevk commented Feb 21, 2018

Nobody has ever discussed changing the object's relevant realm (i.e. creation realm)

I'm pretty sure that's what Gecko does on adoption, @bzbarsky can correct me. If it didn't it'd still leak the old realm and the goal of changing the prototype and such on adoption is to not leak that.

@annevk
Copy link
Member

annevk commented Feb 21, 2018

In #3486 you state this would also fix that, but my results (note that I'm not testing the parser) have three browsers stacked against Firefox (and I haven't really tested external scripts yet).

@domenic
Copy link
Member Author

domenic commented Feb 21, 2018

So I think we could still merge this and then have additional fixes for #3486 on top. But maybe you want to get the full story fixed first?

source Outdated

<p class="note">This can occur if, while the script was being fetched inside the <span>prepare a
script</span> algorithm, the element was moved to a document without a <span
data-x="concept-document-bc">browsing context</span>.</p>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think I'd prefer it if we changed the "connected" check earlier to "browsing-context connected" and had a separate "scripting is disabled" check here with a qualifying example (and test). Since this example is addressed by improving the check earlier.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd prefer to make that change separately, since scripting being disabled is a separate concept from being browsing-context connected. There are other cases where scripting can be disabled but still be in a browsing context, e.g. if the user has disabled JavaScript.

@annevk
Copy link
Member

annevk commented Feb 22, 2018

I think I would prefer the full story since when we ask implementers to make changes it's better to have a full accounting of the changes we are asking them to make.

@domenic
Copy link
Member Author

domenic commented Feb 22, 2018

If that's the case I hope you can take over this PR and tests; I've done my best to converge on a behavior that has multi-implementer support, but I don't have time to do the full archeology here.

I'd still prefer landing this as a series of well-layered changes.

@domenic
Copy link
Member Author

domenic commented Nov 13, 2018

@annevk Chrome would like to ship this soon, at which point we would have 3/4 browsers matching this change. As I stated previously I would prefer to land this and then someone can work on #3486 on top of it. Do you still object to aligning with 3/4 browsers?

@cdumez any interest in aligning Safari on this?

Copy link
Member

@annevk annevk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm still a little unsure about making changes here that don't match anyone their model. But I guess none of it was well-defined to begin with...

source Outdated Show resolved Hide resolved
source Outdated Show resolved Hide resolved
source Outdated Show resolved Hide resolved
@domenic
Copy link
Member Author

domenic commented Dec 13, 2019

Nevermind. This is redundant since we have tests for both parser/prepare-time and prepare-time/execution-time.

No, wait, it is not redundant, I think... The question is whether we fetch the script or not if there's a parser/prepare-time mismatch. I.e. we'd need to test whether the server gets hit. Anyway, this is all more about #2137...

@domenic
Copy link
Member Author

domenic commented Dec 13, 2019

This PR is now rebased on top of the editorial work in #5154 which should make it much easier to review, if you look only at the new commit. (Currently that commit is 29cd353.) It becomes a one-line insertion. And we could easily change it from "return" to "fire an error event then return".

hiroshige-g pushed a commit to hiroshige-g/wpt that referenced this pull request Dec 18, 2019
This follows the changes in whatwg/html#2673, but also tests the issue at whatwg/html#2137 in favor of the current spec.
@hiroshige-g
Copy link
Contributor

hiroshige-g commented Dec 20, 2019

Updated tests and results.

  • When preparation-time document != node's document at the time of #execute-the-script-block: (see after-prepare-* tests)

    • Firefox: Fires <script>'s error events in all external script cases.
    • Chromium: No evaluation && no events (recently changed behavior).
    • Safari: Fires Window's error events for successful module scripts.
      In other cases, evaluating/firing events as normal.
  • When parser document != preparation-time document at #prepare-a-script: (see before-prepare-* tests; Compat: Should the parser execute scripts created in another document #2137)

    • Current spec: No evaluation && no events.
    • Firefox: No evaluation && no events.
    • Chromium and Safari: evaluating/firing events as normal.

Note on Safari's behavior (probably not related to moving between Documents):

  • Parse errors in module scripts seem to fire <script> error events instead of window error events.
  • Transfer-encoding errors seem to be handled differently from ordinal fetch errors like 404.

Copy link

@yureshwar yureshwar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Content scripts which are from extension are getting blocked if they are specified to run at document start. What can we do to execute the content scripts at document start from extension.

This causes scripts that move between documents between the preparation
and execution phases to not execute, aligning with most browsers. Closes
#2469.

This does not address #2137, which is about scripts moving between
documents between the parsing and preparation, or parsing and execution
phases.
@domenic domenic changed the title Don't execute scripts that move between documents during fetching Prevent execution of (some) scripts moving between documents Jan 10, 2020
@domenic
Copy link
Member Author

domenic commented Jan 10, 2020

@hiroshige-g @annevk I've updated this rather-old pull request. It is now a one-line addition on top of #5154, so it should be easy to review.

I've also updated the OP to use the modern HTML Standard pull request template, so we can have a clear sense of how this matches browsers.

Please take another look!

hiroshige-g pushed a commit to hiroshige-g/wpt that referenced this pull request Apr 21, 2020
This follows the changes in whatwg/html#2673, but also tests the issue at whatwg/html#2137 in favor of the current spec.
Copy link
Contributor

@hiroshige-g hiroshige-g left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM.

According to the latest run of web-platform-tests/wpt#19632, the behavior diffs of current browsers are (after-prepare* cases):

  • Firefox and Safari fires script or window error events
  • Safari evaluates classic scripts

@domenic domenic merged commit 6144c0c into master Apr 21, 2020
@domenic domenic deleted the scripts-between-documents branch April 21, 2020 20:13
stephenmcgruer pushed a commit to web-platform-tests/wpt that referenced this pull request Apr 22, 2020
This follows the changes in whatwg/html#2673, but also tests the issue at whatwg/html#2137 in favor of the current spec.

Co-Authored-By: Domenic Denicola <d@domenic.me>
@domenic
Copy link
Member Author

domenic commented Apr 22, 2020

Edited the OP with Firefox and Safari bugs. Yay!

moz-v2v-gh pushed a commit to mozilla/gecko-dev that referenced this pull request May 1, 2020
Automatic update from web-platform-tests
Scripts moved between documents (#19632)

This follows the changes in whatwg/html#2673, but also tests the issue at whatwg/html#2137 in favor of the current spec.

Co-Authored-By: Domenic Denicola <d@domenic.me>
--

wpt-commits: 299dd665683c2c5a4896bfb7727d8666aa6bba89
wpt-pr: 19632
xeonchen pushed a commit to xeonchen/gecko that referenced this pull request May 1, 2020
Automatic update from web-platform-tests
Scripts moved between documents (#19632)

This follows the changes in whatwg/html#2673, but also tests the issue at whatwg/html#2137 in favor of the current spec.

Co-Authored-By: Domenic Denicola <d@domenic.me>
--

wpt-commits: 299dd665683c2c5a4896bfb7727d8666aa6bba89
wpt-pr: 19632
moz-v2v-gh pushed a commit to mozilla/gecko-dev that referenced this pull request May 1, 2020
Automatic update from web-platform-tests
Scripts moved between documents (#19632)

This follows the changes in whatwg/html#2673, but also tests the issue at whatwg/html#2137 in favor of the current spec.

Co-Authored-By: Domenic Denicola <d@domenic.me>
--

wpt-commits: 299dd665683c2c5a4896bfb7727d8666aa6bba89
wpt-pr: 19632
xeonchen pushed a commit to xeonchen/gecko that referenced this pull request May 1, 2020
Automatic update from web-platform-tests
Scripts moved between documents (#19632)

This follows the changes in whatwg/html#2673, but also tests the issue at whatwg/html#2137 in favor of the current spec.

Co-Authored-By: Domenic Denicola <d@domenic.me>
--

wpt-commits: 299dd665683c2c5a4896bfb7727d8666aa6bba89
wpt-pr: 19632
gecko-dev-updater pushed a commit to marco-c/gecko-dev-comments-removed that referenced this pull request May 3, 2020
Automatic update from web-platform-tests
Scripts moved between documents (#19632)

This follows the changes in whatwg/html#2673, but also tests the issue at whatwg/html#2137 in favor of the current spec.

Co-Authored-By: Domenic Denicola <ddomenic.me>
--

wpt-commits: 299dd665683c2c5a4896bfb7727d8666aa6bba89
wpt-pr: 19632

UltraBlame original commit: 1dec2d9d8ecb6c3d48e595c3fe53167f365dd7a9
gecko-dev-updater pushed a commit to marco-c/gecko-dev-comments-removed that referenced this pull request May 3, 2020
Automatic update from web-platform-tests
Scripts moved between documents (#19632)

This follows the changes in whatwg/html#2673, but also tests the issue at whatwg/html#2137 in favor of the current spec.

Co-Authored-By: Domenic Denicola <ddomenic.me>
--

wpt-commits: 299dd665683c2c5a4896bfb7727d8666aa6bba89
wpt-pr: 19632

UltraBlame original commit: fdfdeaafaa3ea6cd8883bc904cd1fdab533b22e9
gecko-dev-updater pushed a commit to marco-c/gecko-dev-wordified-and-comments-removed that referenced this pull request May 3, 2020
Automatic update from web-platform-tests
Scripts moved between documents (#19632)

This follows the changes in whatwg/html#2673, but also tests the issue at whatwg/html#2137 in favor of the current spec.

Co-Authored-By: Domenic Denicola <ddomenic.me>
--

wpt-commits: 299dd665683c2c5a4896bfb7727d8666aa6bba89
wpt-pr: 19632

UltraBlame original commit: 1dec2d9d8ecb6c3d48e595c3fe53167f365dd7a9
gecko-dev-updater pushed a commit to marco-c/gecko-dev-wordified-and-comments-removed that referenced this pull request May 3, 2020
Automatic update from web-platform-tests
Scripts moved between documents (#19632)

This follows the changes in whatwg/html#2673, but also tests the issue at whatwg/html#2137 in favor of the current spec.

Co-Authored-By: Domenic Denicola <ddomenic.me>
--

wpt-commits: 299dd665683c2c5a4896bfb7727d8666aa6bba89
wpt-pr: 19632

UltraBlame original commit: fdfdeaafaa3ea6cd8883bc904cd1fdab533b22e9
gecko-dev-updater pushed a commit to marco-c/gecko-dev-wordified that referenced this pull request May 3, 2020
Automatic update from web-platform-tests
Scripts moved between documents (#19632)

This follows the changes in whatwg/html#2673, but also tests the issue at whatwg/html#2137 in favor of the current spec.

Co-Authored-By: Domenic Denicola <ddomenic.me>
--

wpt-commits: 299dd665683c2c5a4896bfb7727d8666aa6bba89
wpt-pr: 19632

UltraBlame original commit: 1dec2d9d8ecb6c3d48e595c3fe53167f365dd7a9
gecko-dev-updater pushed a commit to marco-c/gecko-dev-wordified that referenced this pull request May 3, 2020
Automatic update from web-platform-tests
Scripts moved between documents (#19632)

This follows the changes in whatwg/html#2673, but also tests the issue at whatwg/html#2137 in favor of the current spec.

Co-Authored-By: Domenic Denicola <ddomenic.me>
--

wpt-commits: 299dd665683c2c5a4896bfb7727d8666aa6bba89
wpt-pr: 19632

UltraBlame original commit: fdfdeaafaa3ea6cd8883bc904cd1fdab533b22e9
webkit-commit-queue pushed a commit to WebKit/WebKit that referenced this pull request Aug 11, 2021
https://bugs.webkit.org/show_bug.cgi?id=202714
<rdar://problem/56208425>

Reviewed by Geoffrey Garen.

LayoutTests/imported/w3c:

Rebaseline WPT tests now that more checks are passing. Note that these checks were already passing in both Firefox and Chrome.

* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/after-prepare-iframe-fetch-error-external-classic-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/after-prepare-iframe-fetch-error-external-module-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/after-prepare-iframe-parse-error-external-classic-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/after-prepare-iframe-parse-error-external-module-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/after-prepare-iframe-parse-error-inline-classic-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/after-prepare-iframe-success-external-classic-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/after-prepare-iframe-success-external-module-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/after-prepare-iframe-success-inline-classic-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/move-back-iframe-fetch-error-external-classic-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/move-back-iframe-fetch-error-external-module-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/move-back-iframe-parse-error-external-classic-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/move-back-iframe-parse-error-external-module-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/move-back-iframe-parse-error-inline-classic-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/move-back-iframe-success-external-classic-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/move-back-iframe-success-external-module-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/move-back-iframe-success-inline-classic-expected.txt:

Source/WebCore:

Stop evaluating <script>s moved between Documents during fetching:
- whatwg/html#2469
- whatwg/html#2673

Both Firefox and Chrome already behave this way.

No new tests, rebaselined existing tests.

* dom/ScriptElement.cpp:
(WebCore::ScriptElement::prepareScript):
Set the element's preparation-time document to its node document, as per:
- https://html.spec.whatwg.org/multipage/scripting.html#prepare-a-script (step 11)

(WebCore::ScriptElement::executePendingScript):
If scriptElement's preparation-time document is not equal to scriptElement's node document, then return, as per:
- https://html.spec.whatwg.org/multipage/scripting.html#execute-the-script-block (step 2)

* dom/ScriptElement.h:


Canonical link: https://commits.webkit.org/240442@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@280924 268f45cc-cd09-0410-ab3c-d52691b4dbfc
bertogg pushed a commit to Igalia/webkit that referenced this pull request Aug 16, 2021
https://bugs.webkit.org/show_bug.cgi?id=202714
<rdar://problem/56208425>

Reviewed by Geoffrey Garen.

LayoutTests/imported/w3c:

Rebaseline WPT tests now that more checks are passing. Note that these checks were already passing in both Firefox and Chrome.

* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/after-prepare-iframe-fetch-error-external-classic-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/after-prepare-iframe-fetch-error-external-module-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/after-prepare-iframe-parse-error-external-classic-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/after-prepare-iframe-parse-error-external-module-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/after-prepare-iframe-parse-error-inline-classic-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/after-prepare-iframe-success-external-classic-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/after-prepare-iframe-success-external-module-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/after-prepare-iframe-success-inline-classic-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/move-back-iframe-fetch-error-external-classic-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/move-back-iframe-fetch-error-external-module-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/move-back-iframe-parse-error-external-classic-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/move-back-iframe-parse-error-external-module-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/move-back-iframe-parse-error-inline-classic-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/move-back-iframe-success-external-classic-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/move-back-iframe-success-external-module-expected.txt:
* web-platform-tests/html/semantics/scripting-1/the-script-element/moving-between-documents/move-back-iframe-success-inline-classic-expected.txt:

Source/WebCore:

Stop evaluating <script>s moved between Documents during fetching:
- whatwg/html#2469
- whatwg/html#2673

Both Firefox and Chrome already behave this way.

No new tests, rebaselined existing tests.

* dom/ScriptElement.cpp:
(WebCore::ScriptElement::prepareScript):
Set the element's preparation-time document to its node document, as per:
- https://html.spec.whatwg.org/multipage/scripting.html#prepare-a-script (step 11)

(WebCore::ScriptElement::executePendingScript):
If scriptElement's preparation-time document is not equal to scriptElement's node document, then return, as per:
- https://html.spec.whatwg.org/multipage/scripting.html#execute-the-script-block (step 2)

* dom/ScriptElement.h:


git-svn-id: http://svn.webkit.org/repository/webkit/trunk@280924 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging this pull request may close these issues.

None yet

6 participants