model-isvalid.html (558B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset=utf-8> 5 <title><ins></title> 6 </head> 7 <body> 8 9 <!-- can contain strictly inline while in strictly inline context --> 10 <p><dfn>strictly inline 11 <ins> 12 <em>text</em> 13 </ins> 14 </dfn></p> 15 16 <!-- can contain interactive if ancestor does not forbid it --> 17 <p>paragraph 18 <ins> 19 <a>link</a> 20 </ins> 21 </p> 22 <p><dfn>strictly inline 23 <ins> 24 <a>link</a> 25 </ins> 26 </dfn></p> 27 28 <!-- ins with flow content and flow parent --> 29 <div><ins><p>foo</p></ins></div> 30 31 </body> 32 </html>