mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
b345a70a9e
--HG-- extra : rebase_source : 2cd0b9d4bdfb47d8757efe0ca9983cbbcfca423c
12 lines
333 B
HTML
12 lines
333 B
HTML
<!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>
|