model-novalid.html (502B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset=utf-8> 5 <title><bdo></title> 6 </head> 7 <body> 8 <!-- not a block --> 9 <bdo dir="ltr">text</bdo> 10 11 <!-- 'dir' attribute required --> 12 <p><bdo>text</bdo></p> 13 14 <!-- cannot contain structured inline --> 15 <p><bdo dir="ltr"><ul><li>text</li></ul></bdo></p> 16 17 <!-- cannot contain interactive if parent forbids interactive --> 18 <p><a><bdo dir="ltr"><a>text</a></bdo></a></p> 19 <p><a><dfn><bdo dir="ltr"><a>text</a></bdo></dfn></a></p> 20 </body> 21 </html>