Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Rewrite custom element #84

Merged
merged 4 commits into from
Sep 2, 2016
Merged

Rewrite custom element #84

merged 4 commits into from
Sep 2, 2016

Commits on Aug 30, 2016

  1. Remove the noises in specs of selectors

    Selectors should be picked up regardless of whether a declaration block
    is present.
    
    The "it does not confuse custom elements with properties" test can be
    delegated to another suite so we don't need this dedicated spec.
    hediyi committed Aug 30, 2016
    Configuration menu
    Copy the full SHA
    2569a62 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2016

  1. More specs for custom elements

    https://www.w3.org/TR/custom-elements/#valid-custom-element-name
    
    * They start with a lowercase ASCII letter, ensuring that the HTML
      parser will treat them as tags instead of as text.
    * They do not contain any uppercase ASCII letters, ensuring that the
      user agent can always treat HTML elements ASCII-case-insensitively.
    * They contain a hyphen, used for namespacing and to ensure forward
      compatibility (since no elements will be added to HTML, SVG, or
      MathML with hyphen-containing local names in the future).
    hediyi committed Sep 1, 2016
    Configuration menu
    Copy the full SHA
    adeee92 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    52c5dff View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4aa258b View commit details
    Browse the repository at this point in the history