Shouldn&#39;t you always close the tags, either self-closing or with a separate close tag? That is, this is the correct way to do it:<br><br>
&lt;video width=&quot;640&quot; height=&quot;360&quot; style=&quot;color:red&quot;&gt;<br>
 &lt;source src=&quot;bunny.ogv&quot; type=&quot;video/ogg&quot; /&gt;<br>
 &lt;source src=&quot;bunny.mp4&quot; type=&quot;video/mp4&quot; /&gt;<br>
&lt;/video&gt;<br>
&lt;p&gt;Text after the video element.&lt;/p&gt;<br><br>Marius Gundersen<br><br><div class="gmail_quote">On Tue, Sep 29, 2009 at 2:28 AM, Dean Edwards <span dir="ltr">&lt;<a href="mailto:dean.edwards@gmail.com">dean.edwards@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">I&#39;m currently writing a JavaScript implementation of the &lt;video&gt; element.<br>
<br>
I&#39;m running into problems with Opera9.52.<br>
<br>
If I use the following markup then the text in the following &lt;p&gt; element is coloured red:<br>
<br>
&lt;video width=&quot;640&quot; height=&quot;360&quot; style=&quot;color:red&quot;&gt;<br>
 &lt;source src=&quot;bunny.ogv&quot; type=&quot;video/ogg&quot;&gt;<br>
 &lt;source src=&quot;bunny.mp4&quot; type=&quot;video/mp4&quot;&gt;<br>
&lt;/video&gt;<br>
&lt;p&gt;Text after the video element.&lt;/p&gt;<br>
<br>
Opera, before version 10, treats all unknown elements as block elements. That means that all elements following the first &lt;source&gt; element are children of the first &lt;source&gt; element. This is potentially disastrous.<br>

<br>
The only solution is to add closing tags:<br>
<br>
&lt;video width=&quot;640&quot; height=&quot;360&quot; style=&quot;color:red&quot;&gt;<br>
 &lt;source src=&quot;bunny.ogv&quot; type=&quot;video/ogg&quot;&gt;&lt;/source&gt;<br>
 &lt;source src=&quot;bunny.mp4&quot; type=&quot;video/mp4&quot;&gt;&lt;/source&gt;<br>
&lt;/video&gt;<br>
<br>
But then it is invalid.<br>
<br>
Is there any way we can change the content model for this element (and possibly &lt;command&gt;) to phrasing? The text content could be descriptive of the particular media or provide a fallback to download the file.<br>
<br>
&lt;source src=&quot;bunny.ogv&quot; type=&quot;video/ogg&quot;&gt;<br>
 &lt;a href=&quot;bunny.ogv&quot;&gt;download this video in OGG format&lt;/a&gt;<br>
&lt;/source&gt;<br>
<br>
Or do we not care about edge cases like this?<br><font color="#888888">
<br>
-dean<br>
</font></blockquote></div><br>