- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 31 Mar 2009 04:17:01 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv16249
Modified Files:
Overview.html
Log Message:
Propagate the quirks mode to the fragment parser in preparation to speccing the parsing quirks. (credit: hs) (bug 6563) (whatwg r2935)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2099
retrieving revision 1.2100
diff -u -d -r1.2099 -r1.2100
--- Overview.html 31 Mar 2009 04:05:55 -0000 1.2099
+++ Overview.html 31 Mar 2009 04:16:58 -0000 1.2100
@@ -44464,9 +44464,9 @@
that <a href=#contenteditable-delete>the selection be
deleted</a>.</li>
<li><p>Invoke the <a href=#html-fragment-parsing-algorithm>HTML fragment parsing algorithm</a>
- with an arbitrary orphan <code><a href=#the-body-element>body</a></code> element as the
- <i><a href=#context>context</a></i> element and with the <var title="">value</var>
- argument as <i><a href=#the-input-element>input</a></i>.</li>
+ with an arbitrary orphan <code><a href=#the-body-element>body</a></code> element owned by the
+ same <code>Document</code> as the <i><a href=#context>context</a></i> element and with
+ the <var title="">value</var> argument as <i><a href=#the-input-element>input</a></i>.</li>
<li><p>Insert the nodes returned by the previous step into the
document at the location of the caret, firing any mutation events
as appropriate.</li>
@@ -52208,6 +52208,19 @@
<li>
+ <p>If there is a <var title="">context</var> element, and the
+ <code>Document</code> of the <var title="">context</var> element
+ is in <a href=#quirks-mode>quirks mode</a>, then let the <code>Document</code>
+ be in <a href=#quirks-mode>quirks mode</a>. Otherwise, if there is a <var title="">context</var> element, and the <code>Document</code> of
+ the <var title="">context</var> element is in <a href=#limited-quirks-mode>limited quirks
+ mode</a>, then let the <code>Document</code> be in
+ <a href=#limited-quirks-mode>limited quirks mode</a>. Otherwise, leave the
+ <code>Document</code> in <a href=#no-quirks-mode>no quirks mode</a>.</p>
+
+ </li>
+
+ <li>
+
<p>Create a new <a href=#html-parser>HTML parser</a>, and associate it with
the just created <code>Document</code> node.</p>
Received on Tuesday, 31 March 2009 04:17:09 UTC