blob: cd8ad3f3129f5f83efbe3df2b8a93b65730d145c [file]
<!DOCTYPE html>
<html>
<title>Text-Wrap Test</title>
<head>
<style>
body {
font-family: "Ahem";
font-size: 12px;
text-wrap: balance;
width: 500px;
}
.absolute-block {
display: block;
position: absolute;
}
</style>
</head>
<body>
<span>This test passes if it has the correct breaking points to balance the text.</span>
<div class = "absolute-block"></div>
</body>
</html>