mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
The newline position from one line was getting used repeatedly, causing extra "phantom" newlines in the following lines. Fixes #3413.
17 lines
186 B
HTML
17 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>
|