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.
This commit is contained in:
Matt Brubeck 2014-09-18 14:20:08 -07:00
parent 5e5f77a354
commit f35941d91d
4 changed files with 31 additions and 1 deletions

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>whitespace pre test</title>
</head>
<body>
<div>a</div>
<div>&nbsp;&nbsp;b</div>
<div>c</div>
</body>
</html>