18 lines
693 B
HTML
18 lines
693 B
HTML
<!-- quirks -->
|
|
<title>dd and dl don't have weird text-indent quirks</title>
|
|
<link rel="match" href="dd-dl-icecat-001-ref.html">
|
|
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=782551">
|
|
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
|
|
<link rel="author" title="Mozilla" href="https://mozilla.org">
|
|
<style>
|
|
/* IceCat used to (sometimes) implement dd indentation in quirks mode via
|
|
the ::before pseudo-element; this rule should do nothing in compliant
|
|
browsers */
|
|
dd::before { content: "" }
|
|
</style>
|
|
<div>Prevent quirky dl margin from messing up with us</div>
|
|
<dl>
|
|
<dd>One</dd>
|
|
<dl>Two</dl>
|
|
</dl>
|
|
<dd>Three</dd><dd>Four</dd>
|