https://github.com/mozilla/gecko-dev
Raw File
Tip revision: c0500f52f22bf97c83d9c60161c8b2cfa7016b88 authored by Ryan VanderMeulen on 27 February 2015, 18:00:36 UTC
Backed out changeset 5fb28d06581c (bug 1136855) for landing on the wrong branch.
Tip revision: c0500f5
text-indent-intrinsic-min-ref.html
<!DOCTYPE HTML>
<html>
<head>
<title>Test for intrinsic widths and text-indent</title>
<style type="text/css">

body { font-size: 12px; }

body > div, body > pre {
	float: left; clear: left; margin: 1px; height: 2em;
	border: medium solid;
}

</style>
</head>
<body>

<!-- test against inline margin -->
<div><span style="margin-left: 3em">X</span></div>

<!-- test against block padding -->
<div style="padding-left: 3em;">X</div>

<!-- test against block width -->
<div style="width: 4em;"></div>

<div style="width: 4em;"></div>
<div style="width: 4em;"></div>
<div style="width: 6em;"></div>
<div style="width: 4em;"></div>
<div style="width: 6em;"></div>
<div style="width: 4em;"></div>
<div style="width: 6em;"></div>

</body>
</html>
back to top