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

JavaScript ShadowRealm proposal integration #5339

Closed
wants to merge 2 commits into from

Commits on Nov 7, 2022

  1. Configuration menu
    Copy the full SHA
    80cf9f0 View commit details
    Browse the repository at this point in the history
  2. JavaScript ShadowRealm proposal integration

    This patch gives the TC39 JavaScript ShadowRealm proposal semantics in HTML.
    ShadowRealms are given an environment settings object; in general,
    ShadowRealms inherit their settings from the outer environment.
    
    When modules are used in ShadowRealms, module specifiers are interpreted with
    respect to the base URL of the surrounding environment, but when a module is
    imported within a ShadowRealm, it is a separate copy from what may be loaded
    in the surrounding environment or other ShadowRealms.
    
    This patch implements the plan described earlier at
    <tc39/proposal-shadowrealm#225 (comment)>.
    
    The ShadowRealm proposal is currently at Stage 3.
    Ms2ger committed Nov 7, 2022
    Configuration menu
    Copy the full SHA
    42d1f26 View commit details
    Browse the repository at this point in the history