tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

model-isvalid.html (679B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset=utf-8>
      5  <title>&lt;bdo&gt;</title>
      6 </head>
      7 <body>
      8  <!-- is structured inline; requires 'dir', test all attrs -->
      9  <p><bdo dir="ltr"
     10          lang="en"
     11          style=""
     12          class="class"
     13          id="foo">text</bdo></p>
     14 
     15  <!-- is strictly inline -->
     16  <p><dfn><bdo dir="ltr" class="class" lang="en">text</bdo></dfn></p>
     17 
     18  <!-- can be empty -->
     19  <p>text <bdo dir="ltr"></bdo></p>
     20  <p>text <dfn><bdo dir="ltr"></bdo></dfn></p>
     21 
     22  <!-- can contain interactive -->
     23  <p><bdo dir="ltr"><a>text</a></bdo></p>
     24  <p><dfn><bdo dir="ltr"><a>text</a></bdo></dfn></p>
     25 
     26  <!-- cannot contain structured inline -->
     27 </body>
     28 </html>