diff --git a/spec/shadow/autolink-config.js b/spec/shadow/autolink-config.js index 82a8be09..c4534df4 100644 --- a/spec/shadow/autolink-config.js +++ b/spec/shadow/autolink-config.js @@ -29,6 +29,7 @@ var autolinkConfig = { 'nodeType': '#dom-node-nodetype', 'ownerDocument': '#dom-node-ownerdocument', 'parent': '#concept-tree-parent', + 'participate': '#concept-tree-participate', 'participates': '#concept-tree-participate', 'preceding': '#concept-tree-preceding', 'range': '#range', @@ -118,6 +119,9 @@ var autolinkConfig = { 'http://www.w3.org/TR/CSS21/': { 'CSS rules': 'syndata.html#rule-sets', + 'inheritance': 'cascade.html#inheritance', + 'box': 'box.html', + 'formating structure': 'intro.html#formatting-structure', 'text-decoration': 'text.html#lining-striking-props' }, diff --git a/spec/shadow/index.html b/spec/shadow/index.html index 57b45f14..84a02b2a 100644 --- a/spec/shadow/index.html +++ b/spec/shadow/index.html @@ -226,9 +226,13 @@

Composed trees

A composed tree
-

In rendering a document tree, or presenting it visually, the composed tree must be used instead of the document tree.

- -

The composed tree must be updated before the rendering occurs.

+

+ If an element doesn't participate in a composed tree whose root node is a document, the element must not appear in the formating structure [[!CSS21]] nor create any CSS box. + This behavior must not be overridden by setting the 'display' property. +

+

+ In resolving CSS inheritance, an element must inherit from the parent node in the composed tree, if applicable. +