tor-browser

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

float-table-align-left-quirk.html (1050B)


      1 <!-- intentionally quirks mode -->
      2 <!--
      3     Any copyright is dedicated to the Public Domain.
      4     http://creativecommons.org/publicdomain/zero/1.0/
      5 -->
      6 <html><head>
      7  <title>CSS2: Check that the old IE quirk for &lt;table align=left&gt; is NOT implemented</title>
      8  <meta name="assert" content="1 and 2 should all be on separate lines below.">
      9  <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
     10  <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#floats" />
     11  <link rel="match" href="float-table-align-left-quirk-ref.html">
     12 </head>
     13 <body>
     14 
     15 <div style="width:0">
     16 <table align="left"><td>1</td></table>
     17 <table align="left"><td>2</td></table>
     18 </div>
     19 
     20 <div style="width:0">
     21 <table align="left"><td>1</td></table>
     22 <table style="float:left"><td>2</td></table>
     23 </div>
     24 
     25 <div style="width:0">
     26 <table style="float:left"><td>1</td></table>
     27 <table align="left"><td>2</td></table>
     28 </div>
     29 
     30 <div style="width:0">
     31 <table style="float:left"><td>1</td></table>
     32 <table style="float:left"><td>2</td></table>
     33 </div>
     34 
     35 </body>
     36 </html>