Atom DOM

Atom DOM

[9] Atom DOM <http://suika.suikawiki.org/www/markup/xml/atomdom>

目次

  1. History
    1. The AtomDocument interface
  2. Related works

History#

[2] TODO: hAtom support

[3] TODO: Atom Threading support

The AtomDocument interface#

[5]

interface AtomDocument {
  readonly attribute Element? atomFeedElement;
};
Document implements AtomDocument;

[6] On getting, the atomFeedElement attribute of the AtomDocument object MUST perform the following steps:

  1. If the document has no document element, return null and abort these steps.
  2. If the document element of the document is the feed element in the Atom 1.0 namespace, return the element.

[7] Future revision of this specification might extend the definition above to Atom 0.3 namespace.