tor-browser

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

model-novalid.html (1411B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset=utf-8>
      5  <title>&lt;iframe&gt;</title>
      6 </head>
      7 <body>
      8  <!-- is structured inline -->
      9  <p><iframe
     10      name="frame1"
     11      src="uri"
     12      width="2"
     13      height="90"
     14      frameborder="0"
     15      scrolling="yes"
     16      class="class"
     17      lang="en"></iframe></p>
     18 
     19  <!-- is strictly inline -->
     20  <p><dfn><iframe
     21      name="frame1"
     22      src="uri"
     23      width="2"
     24      height="90"
     25      frameborder="1"
     26      scrolling="no"
     27      class="class"
     28      lang="en"></iframe></dfn></p>
     29 
     30  <!-- is block -->
     31  <iframe
     32      name="frame1"
     33      src="uri"
     34      width="2"
     35      height="90"
     36      frameborder="0"
     37      scrolling="auto"
     38      class="class"
     39      lang="en"></iframe>
     40 
     41  <!-- can contain inline while in inline context -->
     42  <p>paragraph
     43    <iframe>
     44        <em>some</em> <ul><li>inline</li></ul> content
     45    </iframe>
     46  </p>
     47  <!-- can contain strictly inline while in strictly inline context -->
     48  <p><dfn>strictly inline
     49    <iframe>
     50        <em>text</em>
     51    </iframe>
     52  </dfn></p>
     53 
     54  <!-- can contain blocks while in block context -->
     55  <iframe>
     56    <p>text</p>
     57  </iframe>
     58 
     59  <!-- can contain interactive if ancestor does not forbid it -->
     60  <p>paragraph
     61    <iframe>
     62      <a>link</a>
     63    </iframe>
     64  </p>
     65  <p><dfn>strictly inline
     66    <iframe>
     67      <a>link</a>
     68    </iframe>
     69  </dfn></p>
     70  <iframe>
     71    <p><a>link</a></p>
     72  </iframe>
     73 </body>
     74 </html>