servo/tests/ref/whitespace_pre.html
Matt Brubeck f35941d91d Fix line splitting in white-space: pre flows
The newline position from one line was getting used repeatedly, causing extra
"phantom" newlines in the following lines.  Fixes #3413.
2014-09-18 14:25:12 -07:00

16 lines
186 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>whitespace pre test</title>
<style>
div { white-space: pre; }
</style>
</head>
<body>
<div>a
b
c</div>
</body>
</html>