Bug 2003109 Comment 3 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

Input the following text into testcase2.html. then click
```
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
aaaaa
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
```
AR:
The long sentence on the second line breaks at an unintended point.
if the input text contains pre-formatted lines(here `aaaaa\d\n`) shorter than the default, subsequent longer lines may break unexpectedly.


Apparently, The length of these pre-formatted short lines is mistakenly factored into determining the breakpoint for the next longer line.
Input the following text into testcase2.html. then click
```
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
aaaaa
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
```
AR:
The long sentence on the second line breaks at an unintended point.
if the input text contains pre-formatted lines(here `aaaaa\d\n`) shorter than the default, subsequent longer lines may break unexpectedly.


Apparently, The length of a pre-formatted short line and the length immediately preceding a line are incorrectly considered when determining the break position for the next long line.

Back to Bug 2003109 Comment 3