mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
367 B
HTML
15 lines
367 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!-- Test that 'white-space' creates text frames between blocks (dynamically) when necessary -->
|
|
<head>
|
|
<script>
|
|
function loaded() {
|
|
document.body.offsetHeight;
|
|
document.body.style.whiteSpace = 'pre-wrap';
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="loaded()" style="border:1px solid black;"> Hello<div></div> Hello
|
|
<div></div>
|
|
Hello</body></html>
|