Bug 2003019 Comment 4 Edit History

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

Workaround:
the following css seems to be fix the issue.

```
ruby::after {
  content: "\200B"; /* Zero-width space (line break opportunity) */
}
```
Workaround:
the following css seems to be fix the issue.

```
ruby::after {
  content: "\200B"; /* Zero-width space (line break opportunity) */
}
```

or

```
body {
  line-break: loose;
}
```
Workaround:
the following css seems to be fix the issue.

```
ruby::after {
  content: "\200B"; /* Zero-width space (line break opportunity) */
}
```

or

```
body {
  line-break:  anywhere;
}
```

Back to Bug 2003019 Comment 4