tor-browser

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

model-novalid.html (1821B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset=utf-8>
      5  <title>&lt;obj&gt;</title>
      6 </head>
      7 <body>
      8  <!-- classid, codebase, data, usemap are uris; archive is uri list
      9       width and height are positive integers
     10       type and codetype are MIME types -->
     11  <p><object archive="&lt;"></object></p>
     12  <p><object classid="&lt;"></object></p>
     13  <p><object codebase="&lt;"></object></p>
     14  <p><object codetype="//"></object></p>
     15  <p><object data="&lt;"></object></p>
     16  <p><object height="4.2"></object></p>
     17  <p><object type="//"></object></p>
     18  <p><object usemap="&lt;"></object></p>
     19  <p><object width="0"></object></p>
     20 
     21  <!-- cannot contain blocks while in inline context -->
     22  <p>paragraph
     23    <object>
     24        <p>para</p>
     25    </object>
     26  </p>
     27 
     28  <!-- cannot contain blocks while in strictly inline context -->
     29  <p><dfn>strictly inline
     30    <object>
     31        <p>para</p>
     32    </object>
     33  </dfn></p>
     34 
     35  <!-- cannot contain structured inline while in strictly inline context -->
     36  <p><dfn>strictly inline
     37    <object>
     38        <ul><li>para</li></ul>
     39    </object>
     40  </dfn></p>
     41 
     42  <!-- cannot contain inline while in block context -->
     43  <object>
     44    <em>inline</em> text
     45  </object>
     46 
     47  <!-- param must be first -->
     48  <p>paragraph
     49    <object>
     50      <em>text</em>
     51      <param name="foo">
     52    </object>
     53  </p>
     54  <p><dfn>strictly inline
     55    <object>
     56      text
     57      <param name="foo">
     58    </object>
     59  </dfn></p>
     60  <object>
     61    <p>para</p>
     62    <param name="foo">
     63  </object>
     64 
     65  <!-- cannot contain interactive if ancestor forbids it -->
     66  <p><a>paragraph
     67    <object>
     68      <a>para</a>
     69    </object>
     70  </a></p>
     71  <p><dfn><a>strictly inline
     72    <object>
     73      <a>para</a>
     74    </object>
     75  </a></dfn></p>
     76 
     77  <!-- object with flow content and phrasing parent -->
     78  <span><object data=foo><p>foo</p></object></span>
     79 
     80 </body>
     81 </html>