HTML+TIME and DOCTYPE
Jean-Claude Moissinac <[email protected]>
| Newsgroups | gmane.comp.web.smil |
|---|---|
| Message-ID | <[email protected]> |
I have an HTML+TIME without DOCTYPE wich plays well in IE 6.
Something like
<html xmlns="urn:mpeg:mpeg21:2002/01-DIDL-NS"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:htmltime="urn:schemas-microsoft-com:time"
xmlns:link="urn:link:link-namespace">
<?IMPORT namespace="htmltime"
implementation="#default#time2">
<body>
<table width="800" height="600" border="0"
bgcolor="black">
<tr height="50" width="800" valign="center"
align="center">
<td colspan="2">
<htmltime:img
src="pictures/gladiator_title.jpg" dur="indefinite"/>
</td>
</tr>
...
</table>
</body>
</html>
If I add a line with a DOCTYPE, the document doesn't play. the line is:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML
4.01//EN""http://www.w3.org/TR/html4/strict.dtd">
Any idea?
Jean-Claude Moissinac