041-isvalid.xhtml (588B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <title><del></title> 4 </head> 5 <body> 6 <!-- can contain inline while in inline context --> 7 <p>paragraph 8 <del> 9 <em>some</em> 10 </del> 11 </p> 12 13 <!-- can contain strictly inline while in strictly inline context --> 14 <p><dfn>strictly inline 15 <del> 16 <em>text</em> 17 </del> 18 </dfn></p> 19 20 <!-- can contain interactive if ancestor does not forbid it --> 21 <p>paragraph 22 <del> 23 <a>link</a> 24 </del> 25 </p> 26 <p><dfn>strictly inline 27 <del> 28 <a>link</a> 29 </del> 30 </dfn></p> 31 </body> 32 </html>