045-novalid.xhtml (2708B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <title><applet></title> 4 </head> 5 <body> 6 <!-- is structured inline --> 7 <p><applet 8 archive="uri1,uri2" 9 code="foo" 10 codebase="uri" 11 height="40" 12 width="40" 13 name="sth" 14 class="class" 15 xml:lang="en"></applet></p> 16 17 <!-- is strictly inline --> 18 <p><dfn><applet 19 archive="uri1,uri2" 20 code="foo" 21 codebase="uri" 22 height="40" 23 width="40" 24 name="sth" 25 class="class" 26 xml:lang="en"></applet></dfn></p> 27 28 <!-- is block --> 29 <applet 30 archive="uri1,uri2" 31 code="foo" 32 codebase="uri" 33 height="40" 34 width="40" 35 name="sth" 36 class="class" 37 xml:lang="en"></applet> 38 39 <!-- can contain inline while in inline context, but param must come first --> 40 <p>paragraph 41 <applet code="foo" width="10" height="10"> 42 <em>some</em> <ul><li>inline</li></ul> content 43 </applet> 44 </p> 45 <p>paragraph 46 <applet code="foo" width="10" height="10"> 47 <param name="foo"></param><param name="bar"></param> 48 <em>some</em> <ul><li>inline</li></ul> content 49 </applet> 50 </p> 51 52 <!-- can contain strictly inline while in strictly inline context, but param must come first --> 53 <p><dfn>strictly inline 54 <applet code="foo" width="10" height="10"> 55 <em>text</em> 56 </applet> 57 </dfn></p> 58 <p><dfn>strictly inline 59 <applet code="foo" width="10" height="10"> 60 <param name="foo"></param><param name="bar"></param> 61 <em>text</em> 62 </applet> 63 </dfn></p> 64 65 <!-- can contain blocks while in block context, but param must come first --> 66 <applet code="foo" width="10" height="10"> 67 <p>text</p> 68 </applet> 69 <applet code="foo" width="10" height="10"> 70 <param name="foo"></param><param name="bar"></param> 71 <p>text</p> 72 </applet> 73 74 <!-- can contain interactive if ancestor does not forbid it, but param must come first --> 75 <p>paragraph 76 <applet code="foo" width="10" height="10"> 77 <a>link</a> 78 </applet> 79 </p> 80 <p>paragraph 81 <applet code="foo" width="10" height="10"> 82 <param name="foo"></param><param name="bar"></param> 83 <a>link</a> 84 </applet> 85 </p> 86 <p><dfn>strictly inline 87 <applet code="foo" width="10" height="10"> 88 <a>link</a> 89 </applet> 90 </dfn></p> 91 <p><dfn>strictly inline 92 <applet code="foo" width="10" height="10"> 93 <param name="foo"></param><param name="bar"></param> 94 <a>link</a> 95 </applet> 96 </dfn></p> 97 <applet code="foo" width="10" height="10"> 98 <p><a>link</a></p> 99 </applet> 100 <applet code="foo" width="10" height="10"> 101 <param name="foo"></param><param name="bar"></param> 102 <p><a>link</a></p> 103 </applet> 104 </body> 105 </html>