tor-browser

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

applet-novalid.html (2603B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset=utf-8>
      5  <title>&lt;applet&gt;</title>
      6 </head>
      7 <body>
      8 
      9  <!-- is structured inline -->
     10  <p><applet
     11      archive="uri1,uri2"
     12      code="foo"
     13      codebase="uri"
     14      height="40"
     15      width="40"
     16      name="sth"
     17      class="class"
     18      lang="en"></applet></p>
     19 
     20  <!-- is strictly inline -->
     21  <p><dfn><applet
     22      archive="uri1,uri2"
     23      code="foo"
     24      codebase="uri"
     25      height="40"
     26      width="40"
     27      name="sth"
     28      class="class"
     29      lang="en"></applet></dfn></p>
     30 
     31  <!-- is block -->
     32  <applet
     33    archive="uri1,uri2"
     34    code="foo"
     35    codebase="uri"
     36    height="40"
     37    width="40"
     38    name="sth"
     39    class="class"
     40    lang="en"></applet>
     41 
     42  <!-- can contain inline while in inline context, but param must come first -->
     43  <p>paragraph
     44    <applet code="foo" width="10" height="10">
     45        <em>some</em> <ul><li>inline</li></ul> content
     46    </applet>
     47  </p>
     48  <p>paragraph
     49    <applet code="foo" width="10" height="10">
     50        <param name="foo"><param name="bar">
     51        <em>some</em> <ul><li>inline</li></ul> content
     52    </applet>
     53  </p>
     54 
     55  <!-- can contain strictly inline while in strictly inline context, but param must come first -->
     56  <p><dfn>strictly inline
     57    <applet code="foo" width="10" height="10">
     58        <em>text</em>
     59    </applet>
     60  </dfn></p>
     61  <p><dfn>strictly inline
     62    <applet code="foo" width="10" height="10">
     63        <param name="foo"><param name="bar">
     64        <em>text</em>
     65    </applet>
     66  </dfn></p>
     67 
     68  <!-- can contain blocks while in block context, but param must come first -->
     69  <applet code="foo" width="10" height="10">
     70    <p>text</p>
     71  </applet>
     72  <applet code="foo" width="10" height="10">
     73    <param name="foo"><param name="bar">
     74    <p>text</p>
     75  </applet>
     76 
     77  <!-- can contain interactive if ancestor does not forbid it, but param must come first -->
     78  <p>paragraph
     79    <applet code="foo" width="10" height="10">
     80      <a>link</a>
     81    </applet>
     82  </p>
     83  <p>paragraph
     84    <applet code="foo" width="10" height="10">
     85      <param name="foo"><param name="bar">
     86      <a>link</a>
     87    </applet>
     88  </p>
     89  <p><dfn>strictly inline
     90    <applet code="foo" width="10" height="10">
     91      <a>link</a>
     92    </applet>
     93  </dfn></p>
     94  <p><dfn>strictly inline
     95    <applet code="foo" width="10" height="10">
     96     <param name="foo"><param name="bar">
     97     <a>link</a>
     98    </applet>
     99  </dfn></p>
    100  <applet code="foo" width="10" height="10">
    101    <p><a>link</a></p>
    102  </applet>
    103  <applet code="foo" width="10" height="10">
    104    <param name="foo"><param name="bar">
    105    <p><a>link</a></p>
    106  </applet>
    107 </body>
    108 </html>