Files
servo/tests/wpt/css-tests/css21_dev/html4/font-size-adjust-zero-2.htm
Ms2ger 296fa2512b Update web-platform-tests and CSS tests.
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180.
- Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
2017-02-06 22:38:29 +01:00

21 lines
754 B
HTML

<!DOCTYPE html>
<html><head><title>CSS Test: font-size-adjust: 0</title>
<link href="https://dbaron.org/" rel="author" title="L. David Baron">
<link href="http://www.mozilla.org/" rel="author" title="Mozilla">
<link href="http://www.w3.org/TR/css3-fonts/#font-size-adjust-prop" rel="help">
<link href="http://www.w3.org/TR/CSS21/box.html#collapsing-margins" rel="help">
<link href="reference/font-size-zero-2-ref.htm" rel="match">
<meta content="" name="flags">
<style>
/* spec ambiguous whether font-size-adjust influences line-height: normal */
body { line-height: 1.2 }
span { line-height: 0 }
p { margin: 1em 0 }
span.zero { font-size-adjust: 0 }
</style>
</head><body><p>before</p>
<p><span class="zero">zero</span></p>
<p>after</p>
</body></html>