tor-browser

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

dd-dl-firefox-001.html (695B)


      1 <!-- quirks -->
      2 <title>dd and dl don't have weird text-indent quirks</title>
      3 <link rel="match" href="dd-dl-firefox-001-ref.html">
      4 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=782551">
      5 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
      6 <link rel="author" title="Mozilla" href="https://mozilla.org">
      7 <style>
      8  /* Firefox used to (sometimes) implement dd indentation in quirks mode via
      9     the ::before pseudo-element; this rule should do nothing in compliant
     10     browsers */
     11  dd::before { content: "" }
     12 </style>
     13 <div>Prevent quirky dl margin from messing up with us</div>
     14 <dl>
     15  <dd>One</dd>
     16  <dl>Two</dl>
     17 </dl>
     18 <dd>Three</dd><dd>Four</dd>