- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 15 Feb 2012 12:29:00 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/src
In directory hutz:/tmp/cvs-serv27198/src
Modified Files:
references.html syntax.html terms.html
Log Message:
Reference DOM4 spec instead.
Index: references.html
===================================================================
RCS file: /sources/public/html5/markup/src/references.html,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- references.html 23 May 2011 06:42:14 -0000 1.29
+++ references.html 15 Feb 2012 12:28:58 -0000 1.30
@@ -27,22 +27,18 @@
<dd><cite><a href="http://www.w3.org/TR/css-2010/"
>Cascading Style Sheets (CSS) Snapshot 2010</a></cite>.
Elika J. Etemad.</dd>
- <dt><dfn id="refsDOMCore">DOM Core</dfn></dt>
+ <dt><dfn id="refsDOM">DOM</dfn></dt>
<dd><cite><a
- href="http://www.w3.org/TR/DOM-Level-3-Core/"
- >Document Object Model (DOM) Level 3 Core</a></cite>.
- Arnaud Le Hors,
- Philippe Le Hégaret,
- Lauren Wood,
- Gavin Nicol,
- Jonathan Robie,
- Mike Champion,
- Steve Byrne.
- W3C Recommendation.</dd>
+ href="http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html"
+ >DOM4</a></cite>.
+ Anne van Kesteren,
+ Aryeh Gregor,
+ Ms2ger.
+ W3C Editor’s Draft.</dd>
<dd><span class="references-note" >(see in particular
- <a href="http://www.w3.org/TR/DOM-Level-3-Core/introduction.html">http://www.w3.org/TR/DOM-Level-3-Core/introduction.html</a>
+ <a href="http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#concept-tree">http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#concept-tree</a>
and
- <a href="http://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-textContent">http://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-textContent</a>)</span></dd>
+ <a href="http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#dom-node-textcontent">http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#dom-node-textcontent</a>)</span></dd>
<dt><dfn id="refsECMA262">ECMA 262</dfn></dt>
<dd><cite><a
href="http://www.ecma-international.org/publications/standards/Ecma-262.htm"
Index: terms.html
===================================================================
RCS file: /sources/public/html5/markup/src/terms.html,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- terms.html 16 Dec 2010 07:21:00 -0000 1.26
+++ terms.html 15 Feb 2012 12:28:58 -0000 1.27
@@ -28,13 +28,11 @@
are considered to also match.</dd>
<dt><dfn id="dom-tree" >DOM tree</dfn></dt>
<dd>A representation of a document based on the W3C Document Object
- Model (DOM), as defined in <cite>Document Object Model (DOM) Level 3
- Core</cite> specification, and as explained in the “What is the
- Document Object Model?” introduction for that specification
- <a href="#refsDOMCore">[DOM Core]</a>.
- <a href="#UA">UA</a>s
- build representations of documents by parsing them and constructing
- DOM trees from them.</dd>
+ Model (DOM), as defined in the
+ <a href="#refsDOM">[DOM4]</a>
+ specification.
+ UAs build representations of documents by parsing them and
+ constructing DOM trees from them.</dd>
<dt><dfn
id="fallback"
title="fallback"
Index: syntax.html
===================================================================
RCS file: /sources/public/html5/markup/src/syntax.html,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -d -r1.92 -r1.93
--- syntax.html 17 Jun 2011 08:49:08 -0000 1.92
+++ syntax.html 15 Feb 2012 12:28:58 -0000 1.93
@@ -320,9 +320,9 @@
“contents” of an element.</p>
<p>The
<dfn id="text-content" title="text-content">text content</dfn>
- of an element is as defined in
- <cite>Document Object Model (DOM) Level 3 Core</cite>
- <a href="#refsDOMCore">[DOM Core]</a>.</p>
+ of an element is the value of the <code>textContent</code> IDL
+ attribute of the element, as defined in
+ <a href="#refsDOM">[DOM4]</a>.</p>
<p>A
<dfn id="void-element" title="void-element">void element</dfn>
is an element whose
Received on Wednesday, 15 February 2012 12:29:05 UTC