model-novalid.html (841B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset=utf-8> 5 <title><ins></title> 6 </head> 7 <body> 8 <!-- can contain inline while in inline context --> 9 <p>paragraph 10 <ins> 11 <em>some</em> <ul><li>inline</li></ul> content 12 </ins> 13 </p> 14 15 <!-- can contain strictly inline while in strictly inline context --> 16 <p><dfn>strictly inline 17 <ins> 18 <em>text</em> 19 </ins> 20 </dfn></p> 21 22 <!-- can contain blocks while in block context --> 23 <ins> 24 <p>text</p> 25 </ins> 26 27 <!-- can contain interactive if ancestor does not forbid it --> 28 <p>paragraph 29 <ins> 30 <a>link</a> 31 </ins> 32 </p> 33 <p><dfn>strictly inline 34 <ins> 35 <a>link</a> 36 </ins> 37 </dfn></p> 38 <ins> 39 <p><a>link</a></p> 40 </ins> 41 42 <!-- ins with flow content and phrasing parent --> 43 <span><ins><p>foo</p></ins></span> 44 45 </body> 46 </html>