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

Merge/upstream #5

Merged
merged 30 commits into from
Feb 18, 2021
Merged

Merge/upstream #5

merged 30 commits into from
Feb 18, 2021

Commits on Jan 14, 2021

  1. Configuration menu
    Copy the full SHA
    272446a View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2021

  1. Meta: default branch rename

    Also correct a broken link. Not even w3.org URLs are that cool.
    
    Helps with whatwg/meta#174.
    annevk committed Jan 15, 2021
    Configuration menu
    Copy the full SHA
    a6bc594 View commit details
    Browse the repository at this point in the history
  2. Editorial: clean up calls to "parse a URL"

    It actually takes a string, so calls should be clear about that.
    domfarolino authored Jan 15, 2021
    Configuration menu
    Copy the full SHA
    773de98 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2021

  1. Configuration menu
    Copy the full SHA
    a9d2511 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2021

  1. Simplify <link>s

    In particular, remove their activation behavior, stop them from matching
    :link and :visited, and stop suggesting that they be focusable areas.
    
    This also includes a slight expansion and rearrangement of the link
    element's section to make it clearer what hyperlinks created by <link>
    are meant for, contrasting them to <a> and <area> hyperlinks.
    
    Closes whatwg#4831. Closes whatwg#2617. Helps with whatwg#5490.
    domenic committed Jan 19, 2021
    Configuration menu
    Copy the full SHA
    1e0ee7f View commit details
    Browse the repository at this point in the history
  2. Meta: remove demos/offline/* (whatwg#6307)

    These are no longer needed as of e4330d5.
    annevk authored Jan 19, 2021
    Configuration menu
    Copy the full SHA
    8192944 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2021

  1. Meta: minor references cleanup

    Use more HTTPS and drop obsolete HTML Differences reference.
    annevk committed Jan 20, 2021
    Configuration menu
    Copy the full SHA
    88de068 View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2021

  1. Editorial: anticlockwise → counterclockwise

    annevk authored and domenic committed Jan 22, 2021
    Configuration menu
    Copy the full SHA
    24feaf2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f6bc62f View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2021

  1. Configuration menu
    Copy the full SHA
    31b3458 View commit details
    Browse the repository at this point in the history
  2. Fix "update a style block" early return

    The new version matches implementation reality and CSSWG resolution.
    
    The algorithm was also inconsistent, as it looked at whether
    the element was in a shadow tree or in the document tree, but it was
    only specified to be re-run if the element becomes connected or
    disconnected.
    
    The CSSWG discussed this in
    w3c/csswg-drafts#3096 (comment)
    and http://wpt.live/shadow-dom/ShadowRoot-interface.html tests this.
    
    This also matches closer the definition of <link rel="stylesheet">,
    which does use connectedness (though it uses "browsing-context
    connected", which is a bit different):
    https://html.spec.whatwg.org/#link-type-stylesheet
    emilio authored Jan 25, 2021
    Configuration menu
    Copy the full SHA
    0f26153 View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2021

  1. Modernize and refactor simple dialogs

    This contains a small bug fix, in that confirm() and prompt() said
    "return" in some cases instead of "return false" or "return null" as
    appropriate.
    
    Other notable changes, all editorial, are:
    
    * Factoring out repeated "cannot show simple dialogs" steps, which will
      likely expand over time (see e.g. whatwg#6297).
    * Separating out and explaining the no-argument overload of alert().
    * Passing the document through to the "printing steps", instead of just
      having them talk about "this Window object".
    domenic authored Jan 27, 2021
    Configuration menu
    Copy the full SHA
    ecd23cf View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2021

  1. Configuration menu
    Copy the full SHA
    48f6b28 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2021

  1. Remove <marquee> events

    They are only supported by one engine (Gecko).
    
    Closes whatwg#2957.
    domenic authored Jan 29, 2021
    Configuration menu
    Copy the full SHA
    cd8e5c1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    309e7f6 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2021

  1. Configuration menu
    Copy the full SHA
    a6b829b View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2021

  1. Configuration menu
    Copy the full SHA
    234e195 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4d832b0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    01574f3 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2021

  1. createImageBitmap(): stop clipping sourceRect to source's dimensions

    It has been found in whatwg#6306 that this was an oversight at the time of its introduction. Current behavior goes against author expectations and no implementer has opposed the change to "no-clip".
    
    Tests: web-platform-tests/wpt#27040.
    
    Closes whatwg#6306.
    Kaiido authored Feb 4, 2021
    Configuration menu
    Copy the full SHA
    b43cdf4 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2021

  1. Remove CSP plugin-types blocking

    With Flash not being supported anymore, the CSP directive plugin-types has lost its main reason for being and is being removed from the Content Security Policy specification: w3c/webappsec-csp#456.
    
    This change removes references to the relevant algorithm from the Content Security Policy spec.
    antosart authored Feb 5, 2021
    Configuration menu
    Copy the full SHA
    72b58f2 View commit details
    Browse the repository at this point in the history
  2. Meta: set more dfn types

    A follow-up to:
    
    * whatwg#5694
    * whatwg#5916
    sideshowbarker authored Feb 5, 2021
    Configuration menu
    Copy the full SHA
    3beb2e3 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2021

  1. Configuration menu
    Copy the full SHA
    9269ead View commit details
    Browse the repository at this point in the history
  2. Make all plugin-related APIs no-ops

    Part of whatwg#6003.
    domenic authored Feb 8, 2021
    Configuration menu
    Copy the full SHA
    d4f07b8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7c8fb86 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2021

  1. Revive @@iterator for PluginArray/MimeTypeArray/Plugin

    @@iterator is implicitly installed by defining an indexed property getter. Since there is no other way to define it exclusively, this restores some methods back to being indexed getters.
    
    This fixes an inadvertent observable behavior change in d4f07b8.
    saschanaz authored Feb 9, 2021
    Configuration menu
    Copy the full SHA
    c5a1bdf View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2021

  1. Adjust web+ scheme security considerations to account for FTP removal

    Also, network scheme is now reduced to HTTP(S) scheme.
    
    Helps with whatwg#5375, but form submission issue remains.
    
    See whatwg/fetch#1166 for context.
    annevk authored Feb 10, 2021
    Configuration menu
    Copy the full SHA
    f76b314 View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2021

  1. Meta: export pause

    Nobody but XMLHttpRequest take a dependency on this please. You have been warned.
    
    Context: whatwg/xhr#311.
    annevk authored and domenic committed Feb 11, 2021
    Configuration menu
    Copy the full SHA
    d5d2946 View commit details
    Browse the repository at this point in the history
  2. Fix typo: ancestor → accessor

    zcorpan authored Feb 11, 2021
    Configuration menu
    Copy the full SHA
    16fbe73 View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2021

  1. Configuration menu
    Copy the full SHA
    3aa5f30 View commit details
    Browse the repository at this point in the history