blob: 59b68bacc0cdd6dab472110686ae5519b6f66c9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE HTML>
<html>
<!-- Test that 'white-space' creates frames when necessary -->
<body style="border:1px solid black;">
<div style="white-space:pre"> <span>Hello</span> </div>
<div style="white-space:pre-wrap"> <span>Hello</span> </div>
<div style="white-space:pre-line">
<span>Hello</span>
</div>
</body>
</html>
|