Skip to content

Commit

Permalink
<iframe> section header
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@238 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Nov 1, 2006
1 parent 5e2641a commit 78a7b2a
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 11 deletions.
43 changes: 36 additions & 7 deletions index
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@
</ul>

<li><a href="#embedded"><span class=secno>3.12. </span><dfn
id=embedded0>Embedded content</dfn> <span title=TBW>[TBW]</span></a>
id=embedded0>Embedded content</dfn></a>
<ul class=toc>
<li><a href="#the-img"><span class=secno>3.12.1. </span>The <dfn
id=img><code>img</code></dfn> element</a>
Expand Down Expand Up @@ -9531,9 +9531,7 @@ Address: &lt;input name="address"&gt;&lt;/p&gt;</pre>
attributes must reflect the elements' content attributes of the same name.

<h3 id=embedded><span class=secno>3.12. </span><dfn id=embedded1>Embedded
content</dfn> <a href="#tbw" title=TBW>[TBW]</a></h3>
<!-- XXXX img (bitmap image) embed (plugin) iframe (document) object param (autodetect) map area (image maps) -->
<!-- iframe: In a web browser, instantiates a browsing context. Otherwise, just has the child document. If no URI specified, use about:blank! -->
content</dfn></h3>

<h4 id=the-img><span class=secno>3.12.1. </span>The <dfn
id=img0><code>img</code></dfn> element</h4>
Expand Down Expand Up @@ -9595,6 +9593,34 @@ Address: &lt;input name="address"&gt;&lt;/p&gt;</pre>
<h4 id=the-iframe><span class=secno>3.12.2. </span>The <dfn
id=iframe0><code>iframe</code></dfn> element</h4>

<p><a href="#strictly">Strictly inline-level content</a>.

<dl class=element>
<dt>Contexts in which this element may be used:

<dd>Where <a href="#strictly">strictly inline-level content</a> is
allowed.

<dt>Content model:

<dd>Zero or more <a href="#block-level1">block-level elements</a>, or <a
href="#inline-level1">inline-level content</a> (but not both).

<dt>Element-specific attributes:

<dd><code title=attr-img-src>src</code> (required)

<dt>DOM interface:

<dd>
<pre
class=idl>interface <dfn id=htmliframeelement>HTMLIFrameElement</dfn> : <a href="#htmlelement">HTMLElement</a> {
attribute DOMString <span title=dom-iframe-src>src</span>;
readonly attribute Document <span title=dom-iframe-contentDocument>contentDocument</span>;
readonly attribute Window <span title=dom-iframe-contentWindow>contentWindow</span>;
};</pre>
</dl>

<h4 id=the-embed><span class=secno>3.12.3. </span>The <dfn
id=embed0><code>embed</code></dfn> element</h4>

Expand All @@ -9609,6 +9635,8 @@ Address: &lt;input name="address"&gt;&lt;/p&gt;</pre>

<h4 id=the-area><span class=secno>3.12.7. </span>The <dfn
id=area0><code>area</code></dfn> element</h4>
<!-- XXXX img (bitmap image) embed (plugin) iframe (document) object param (autodetect) map area (image maps) -->
<!-- iframe: In a web browser, instantiates a browsing context. Otherwise, just has the child document. If no URI specified, use about:blank! -->

<h3 id=tabular><span class=secno>3.13. </span>Tabular data <a href="#tbw"
title=TBW>[TBW]</a></h3>
Expand Down Expand Up @@ -24248,9 +24276,10 @@ simplified explanation instead:
<dd>
<p><a href="#create">Create an element for the token</a>.</p>

<p>For "iframe" tags, the node must be an
<code>HTMLIFrameElement</code> object, for the other tags it must be
an <code><a href="#htmlelement">HTMLElement</a></code> object.</p>
<p>For "iframe" tags, the node must be an <code><a
href="#htmliframeelement">HTMLIFrameElement</a></code> object, for
the other tags it must be an <code><a
href="#htmlelement">HTMLElement</a></code> object.</p>

<p>Append the new element to the <a href="#current3">current
node</a>.</p>
Expand Down
32 changes: 28 additions & 4 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -8173,11 +8173,8 @@ Address: &lt;input name="address"&gt;&lt;/p&gt;</pre>
must reflect the elements' content attributes of the same name.</p>


<h3><dfn>Embedded content</dfn> <span title="TBW">[TBW]</span></h3>

<!-- XXXX img (bitmap image) embed (plugin) iframe (document) object param (autodetect) map area (image maps) -->

<!-- iframe: In a web browser, instantiates a browsing context. Otherwise, just has the child document. If no URI specified, use about:blank! -->
<h3><dfn>Embedded content</dfn></h3>

<h4>The <dfn><code>img</code></dfn> element</h4>

Expand Down Expand Up @@ -8227,6 +8224,26 @@ Address: &lt;input name="address"&gt;&lt;/p&gt;</pre>

<h4>The <dfn><code>iframe</code></dfn> element</h4>

<p><span>Strictly inline-level content</span>.</p>

<dl class="element">
<dt>Contexts in which this element may be used:</dt>
<dd>Where <span>strictly inline-level content</span> is allowed.</dd>
<dt>Content model:</dt>
<dd>Zero or more <span>block-level elements</span>, or
<span>inline-level content</span> (but not both).</dd>
<dt>Element-specific attributes:</dt>
<dd><code title="attr-img-src">src</code> (required)</dd>
<dt>DOM interface:</dt>
<dd>
<pre class="idl">interface <dfn>HTMLIFrameElement</dfn> : <span>HTMLElement</span> {
attribute DOMString <span title="dom-iframe-src">src</span>;
readonly attribute Document <span title="dom-iframe-contentDocument">contentDocument</span>;
readonly attribute Window <span title="dom-iframe-contentWindow">contentWindow</span>;
};</pre>
</dd>
</dl>

<h4>The <dfn><code>embed</code></dfn> element</h4>

<h4>The <dfn><code>object</code></dfn> element</h4>
Expand All @@ -8238,6 +8255,13 @@ Address: &lt;input name="address"&gt;&lt;/p&gt;</pre>
<h4>The <dfn><code>area</code></dfn> element</h4>


<!-- XXXX img (bitmap image) embed (plugin) iframe (document) object param (autodetect) map area (image maps) -->

<!-- iframe: In a web browser, instantiates a browsing context. Otherwise, just has the child document. If no URI specified, use about:blank! -->




<h3>Tabular data <span title="TBW">[TBW]</span></h3>
<!-- XXXX tables -->

Expand Down

0 comments on commit 78a7b2a

Please sign in to comment.