blob: 6d38b8067e6486ad37366b756ba3f44d164dc719 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Tests that word-wrap is ignored for white-space: pre</title>
<style>
div {
word-wrap: break-word;
width: 100px;
border: 1px solid black;
}
</style>
</head>
<body>
<div style="white-space: normal;">white-space: normal - this text should wrap</div>
<div style="white-space: pre-wrap;">white-space: normal - this text should wrap</div>
<div style="white-space: pre;">white-space: pre - this text should not wrap</div>
<div style="white-space: nowrap;">white-space: nowrap - this text should not wrap</div>
</body>
</html>