Skip to content

Commit

Permalink
[e] (0) Fix a redundant requirement. Also, cleanup comment.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@4587 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jan 14, 2010
1 parent e59f9ba commit 72881f9
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 29 deletions.
13 changes: 5 additions & 8 deletions complete.html
Expand Up @@ -110,7 +110,7 @@

<header class=head id=head><p><a class=logo href=http://www.whatwg.org/ rel=home><img alt=WHATWG src=/images/logo></a></p>
<hgroup><h1>Web Applications 1.0</h1>
<h2 class="no-num no-toc">Draft Standard &mdash; 13 January 2010</h2>
<h2 class="no-num no-toc">Draft Standard &mdash; 14 January 2010</h2>
</hgroup><p>You can take part in this work. <a href=http://www.whatwg.org/mailing-list>Join the working group's discussion list.</a></p>
<p><strong>Web designers!</strong> We have a <a href=http://blog.whatwg.org/faq/>FAQ</a>, a <a href=http://forums.whatwg.org/>forum</a>, and a <a href=http://www.whatwg.org/mailing-list#help>help mailing list</a> for you!</p>
<!--<p class="impl"><strong>Implementors!</strong> We have a <a href="http://www.whatwg.org/mailing-list#implementors">mailing list</a> for you too!</p>-->
Expand Down Expand Up @@ -19561,18 +19561,14 @@ <h4 id=the-iframe-element><span class=secno>4.8.3 </span>The <dfn><code>iframe</
src="" to be used for legacy UAs:

<iframe seamless sandbox="allow-scripts allow-forms" doc="
<!DOCTYPE HTML>
<title></title>
Welcome to my blog!
</sandbox>
<a href='#' onclick='alert(document.cookie)'>Click here</a>
"></iframe>

(There are things we can do to make this better, e.g. make the
<!DOCTYPE HMTL> and <title></title> bits implicit, maybe
introducing type="" to say whether it's HTML or XML instead of
only supporting HTML, maybe saying that if src="" and doc=""
are both specified they must have identical data, etc.)
TODO:
<!DOCTYPE HTML> implication
<title></title> optional

--><p>The <code><a href=#the-iframe-element>iframe</a></code> element <a href=#represents>represents</a> a
<a href=#nested-browsing-context>nested browsing context</a>.</p>
Expand Down Expand Up @@ -87673,6 +87669,7 @@ <h3 class="no-num">Reflecting IDL attributes</h3>
Wladimir Palant,
Wojciech Mach,
Wolfram Kriesing,
Yang Chen,
Yi-An Huang,
Yngve Nysaeter Pettersen,
Yuzo Fujishima,
Expand Down
13 changes: 5 additions & 8 deletions index
Expand Up @@ -112,7 +112,7 @@

<header class=head id=head><p><a class=logo href=http://www.whatwg.org/ rel=home><img alt=WHATWG src=/images/logo></a></p>
<hgroup><h1>HTML5 (including next generation additions still in development)</h1>
<h2 class="no-num no-toc">Draft Standard &mdash; 13 January 2010</h2>
<h2 class="no-num no-toc">Draft Standard &mdash; 14 January 2010</h2>
</hgroup><p>You can take part in this work. <a href=http://www.whatwg.org/mailing-list>Join the working group's discussion list.</a></p>
<p><strong>Web designers!</strong> We have a <a href=http://blog.whatwg.org/faq/>FAQ</a>, a <a href=http://forums.whatwg.org/>forum</a>, and a <a href=http://www.whatwg.org/mailing-list#help>help mailing list</a> for you!</p>
<!--<p class="impl"><strong>Implementors!</strong> We have a <a href="http://www.whatwg.org/mailing-list#implementors">mailing list</a> for you too!</p>-->
Expand Down Expand Up @@ -19461,18 +19461,14 @@ href="?audio"&gt;audio&lt;/a&gt; test instead.)&lt;/p&gt;</pre>
src="" to be used for legacy UAs:

<iframe seamless sandbox="allow-scripts allow-forms" doc="
<!DOCTYPE HTML>
<title></title>
Welcome to my blog!
</sandbox>
<a href='#' onclick='alert(document.cookie)'>Click here</a>
"></iframe>

(There are things we can do to make this better, e.g. make the
<!DOCTYPE HMTL> and <title></title> bits implicit, maybe
introducing type="" to say whether it's HTML or XML instead of
only supporting HTML, maybe saying that if src="" and doc=""
are both specified they must have identical data, etc.)
TODO:
<!DOCTYPE HTML> implication
<title></title> optional

--><p>The <code><a href=#the-iframe-element>iframe</a></code> element <a href=#represents>represents</a> a
<a href=#nested-browsing-context>nested browsing context</a>.</p>
Expand Down Expand Up @@ -82172,6 +82168,7 @@ interface <a href=#htmldocument>HTMLDocument</a> {
Wladimir Palant,
Wojciech Mach,
Wolfram Kriesing,
Yang Chen,
Yi-An Huang,
Yngve Nysaeter Pettersen,
Yuzo Fujishima,
Expand Down
22 changes: 9 additions & 13 deletions source
Expand Up @@ -20797,18 +20797,14 @@ href="?audio">audio&lt;/a> test instead.)&lt;/p></pre>
src="" to be used for legacy UAs:

<iframe seamless sandbox="allow-scripts allow-forms" doc="
<!DOCTYPE HTML>
<title></title>
Welcome to my blog!
</sandbox>
<a href='#' onclick='alert(document.cookie)'>Click here</a>
"></iframe>

(There are things we can do to make this better, e.g. make the
<!DOCTYPE HMTL> and <title></title> bits implicit, maybe
introducing type="" to say whether it's HTML or XML instead of
only supporting HTML, maybe saying that if src="" and doc=""
are both specified they must have identical data, etc.)
TODO:
<!DOCTYPE HTML> implication
<title></title> optional

-->

Expand Down Expand Up @@ -67385,15 +67381,14 @@ interface <dfn>SQLStatementErrorCallback</dfn> {

<p>If a <i>postflight operation</i> was defined for this instance
of the transaction steps, then: as one atomic operation, commit
the transaction and run the <i>postflight operation</i>. If either
fails, then do neither, and instead jump to the last step. (This
is basically a hook for the <code
the transaction and, if that succeeds, run the <i>postflight
operation</i>. If the commit fails, then instead jump to the last
step. (This is basically a hook for the <code
title="dom-database-changeVersion">changeVersion()</code>
method.)</p>

<p>Otherwise: commit the transaction and run the <i>postflight
operation</i>. If an error occurred in the committing of the
transaction, jump to the last step.</p>
<p>Otherwise: commit the transaction. If an error occurred in the
committing of the transaction, jump to the last step.</p>

</li>

Expand Down Expand Up @@ -98150,6 +98145,7 @@ interface <span>HTMLDocument</span> {
Wladimir Palant,
Wojciech Mach,
Wolfram Kriesing,
Yang Chen,
Yi-An Huang,
Yngve Nysaeter Pettersen,
Yuzo Fujishima,
Expand Down

0 comments on commit 72881f9

Please sign in to comment.