servo/tests/ref/word_break_a.html

21 lines
325 B
HTML

<!DOCTYPE html>
<html>
<head>
<!-- Tests that `word-break: break-all` works. -->
<link rel="stylesheet" type="text/css" href="css/ahem.css">
<style>
html, body {
margin: 0;
}
section {
word-break: break-all;
width: 300px;
color: purple;
}
</style>
</head>
<body>
<section>X XXXXXXX</section>
</body>
</html>