[CSS 3 Selectors] :empty -- Definition Error

http://www.w3.org/TR/css3-selectors/

E:empty  - an E element that has no children (including text nodes)

If you really want to include text nodes, the definition must be changed.

E:empty  - a node E that has no children (including text nodes).

The error is that text nodes are not elements nodes. e.g. a text node cannot
be element E because a text node is not an element.

Garrett

-- 
http://dhtmlkitchen.com/

Received on Monday, 10 July 2006 21:06:24 UTC