From b7d325198e5f81d41f185f0ba50b23976abdc579 Mon Sep 17 00:00:00 2001 From: Anne van Kesteren Date: Tue, 22 Mar 2016 12:20:43 +0100 Subject: [PATCH] WIP --- source | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 64 insertions(+), 1 deletion(-) diff --git a/source b/source index f9aeb3b1e7f..729be51a634 100644 --- a/source +++ b/source @@ -9682,6 +9682,7 @@ interface HTMLUnknownElement : HTMLElement { };
  • script
  • section
  • select
  • +
  • slot
  • small
  • span
  • strong
  • @@ -9792,6 +9793,7 @@ interface HTMLUnknownElement : HTMLElement { };
  • samp
  • script
  • select
  • +
  • slot
  • small
  • span
  • strong
  • @@ -10016,6 +10018,7 @@ http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C%21DOCTYPE%20HTML%3E%0 @@ -59637,7 +59640,44 @@ not-slash = %x0000-002E / %x0030-10FFFF - +

    The slot element

    + +
    +
    Categories:
    +
    Flow content.
    +
    Phrasing content.
    +
    Script-supporting element.
    +
    Contexts in which this element can be used:
    +
    Where phrasing content is expected.
    +
    Where script-supporting elements are expected.
    +
    Content model:
    +
    Transparent
    +
    Content attributes:
    +
    Global attributes
    +
    name
    +
    DOM interface:
    +
    +
    interface HTMLSlotElement : HTMLElement {
    +  attribute DOMString name;
    +  
    +};
    +
    +
    + +

    The slot element, when used in a shadow tree, defines a slot. When used outside a shadow tree, it represents + nothing.

    + +

    The name content attribute may contain any + string value. It is used in conjunction with the slot attribute in + the light tree to determine which slotables + end up being found by the slot element.

    + +

    The name IDL attribute must reflect + the content attribute of the same name.

    + + +

    The canvas element

    @@ -113291,6 +113331,20 @@ if (s = prompt('What is your name?')) { HTMLSelectElement + + slot + Shadow tree slot + flow; + phrasing; + script-supporting + phrasing; + script-supporting + transparent + globals; + name + HTMLSlotElement + + small Side comment @@ -114699,6 +114753,11 @@ if (s = prompt('What is your name?')) { param Name of parameter Text + + name + slot + Name of slot + Text nonce script; @@ -115973,6 +116032,10 @@ if (s = prompt('What is your name?')) { select HTMLSelectElement : HTMLElement + + slot + HTMLSlotElement : HTMLElement + small HTMLElement