gecko-dev/layout/reftests/text/sub-sup-and-line-height.html
Thomas Wisniewski 6f9de091e7 Bug 1524897 - drop line-height:normal rule in html.css for <sub> and <sup> for interop. r=emilio
remove line-height:normal rule from html.css for <sub> and <sup> for interop.

Differential Revision: https://phabricator.services.mozilla.com/D18636

--HG--
extra : moz-landing-system : lando
2019-02-08 11:02:36 +00:00

15 lines
239 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
p { line-height: 44px; }
sub, sup { vertical-align: top; }
</style>
</head>
<body>
<p>Test<sup>Test</sup><sub>Test</sub></p>
</body>
</html>