Files
tubestation/layout/reftests/w3c-css/submitted/values3/calc-text-indent-intrinsic-1.html
L. David Baron a334015bb4 Update links pointing to my personal website (http -> https). No bug.
(Patch written entirely using a single sed command,
's,http://dbaron.org,https://dbaron.org,g' .)

MozReview-Commit-ID: 12JARDNn8H4
2016-10-13 11:41:51 -07:00

28 lines
952 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>CSS Test: intrinsic width of text-indent: calc() on blocks</title>
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
<link rel="help" href="http://www.w3.org/TR/css3-values/#calc-notation">
<link rel="match" href="calc-text-indent-intrinsic-1-ref.html">
<meta name="flags" content="">
<style type="text/css">
body { font-size: 10px }
div { float: left; clear: left;
margin: 0 0 1px 0; background: blue; color: white; height: 5px }
span { display: inline-block; width: 10px }
</style>
</head>
<body>
<div style="text-indent: calc(50% - 3px)"><span></span></div>
<div style="text-indent: calc(5em - 3px)"><span></span></div>
<div style="text-indent: calc(5em - 0%)"><span></span></div>
<div style="text-indent: calc(50%)"><span></span></div>
<div style="text-indent: calc(50px)"><span></span></div>
<div style="text-indent: calc(25% + 25%)"><span></span></div>
</body>
</html>