mirror of
https://github.com/servo/servo.git
synced 2025-06-11 01:50:10 +00:00
The newline position from one line was getting used repeatedly, causing extra "phantom" newlines in the following lines. Fixes #3413.
16 lines
186 B
HTML
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>
|