From 1dde369cda8568561ce56e9d29e41669ff3ccf1f Mon Sep 17 00:00:00 2001 From: Hayato Ito Date: Tue, 19 May 2015 21:21:28 +0900 Subject: [PATCH] [Shadow DOM] [Bug 28659] Remove "HTML Elements and Their Shadow Trees" section. --- spec/shadow/index.html | 43 ------------------------------------------ 1 file changed, 43 deletions(-) diff --git a/spec/shadow/index.html b/spec/shadow/index.html index f485eac1..e631c4f1 100644 --- a/spec/shadow/index.html +++ b/spec/shadow/index.html @@ -1190,49 +1190,6 @@

Attributes

-
-

HTML Elements and Their Shadow Trees

- -

Per specification, some HTML elements are designed to either not render their contents or have special requirements in regard to contents rendering. In order to reconcile these differences in rendering behavior with the composed tree, all HTML elements must have an equivalent of a closed shadow tree that is created and populated at the time of element instantiation. It is up to a user agent to define the content of these trees. However, all conforming user agents must satisfy the following requirements:

- - - - - - - - - - - - - - - - - - - - - - - - - - -
HTML ElementShadow Tree Requirements
img, iframe, embed, object, video, audio, canvas, map, input, textarea, progress, meterIf the element can have fallback content, contains one content insertion point. The matching criteria value is the universal selector only when the element needs to show fallback content. Otherwise, contains no content insertion points or an content insertion point that matches nothing.
fieldsetContains two content insertion points with the following matching criteria: -
    -
  1. legend:first-of-type
  2. -
  3. universal selector
  4. -
-
detailsContains two content insertion points with the following matching criteria: -
    -
  1. summary:first-of-type
  2. -
  3. universal selector
  4. -
-
All other elementsContains one content insertion point with the universal selector as the matching criteria
-
-

Elements and DOM interfaces