Commit 828ee0b
committed
[FIX] composer: fix get/setText of the content editable helper
The recent use of the property "plaintext-only" came with a change of
behaviour in the composers, specifically in Firefox.
How to reproduce in FF:
- write a single character in a grid composer
- delete the character
-> a new line is inserted
Apparently, when setting the attribute `contentEditable` to
`plaintext-only`, deleting the single character does not delete the span
that encapsulates it if the latter has a class attribute. This couples
with a recent refactoring of the content editable helper to handle new
line characters and the empty composer is not detected as such
What happens currently?
Consider the composer content after inputing the letter 'W':
```html
<p>
<span class="">
w
</span>
</p>
```
The cursor is set just after the letter W.
In a chromium-based browser, hitting the `Delete` key yeilds the
following result:
```html
<p>
<span>
<br>
</span>
</p>
```
The letter is replaced by `<br>` which could be interpreted as a
newline, except that in this situation, we do not want a newline to
appear as we meerly deleted the single character of the composer, so
we do not want new characters.
Also, we introduced some logic to fight this side-effect when we
introduced the support of newlines of pasted content (#6467)
However, it turns out that in firefox, hitting `Delete` will yield this
result
```html
<p>
<span class="">
<br>
</span>
</p>
```
The class attribute is not cleared up! And unfortunately, the logic that
counteracts the presence of the unwelcome `<br>` would test against the
exact form seen in a chromium-based browser, so it did not work on
Firefox.
This commit extends the check to work on both Firefox-based and
Chromium-based browsers.
Note that other leads were investigated and it seems that if we stopped
using paragraphs to represent new lines, this issue with the `<br>`
doesn't seem to occur. An improvement (and good cleanup) could be
achieved by dropping that paragraph strategy and rely on spans and br
characters.
closes #7331
Task: 5082601
Signed-off-by: Lucas Lefèvre (lul) <[email protected]>1 parent e00f63d commit 828ee0b
File tree
2 files changed
+24
-3
lines changed- src/components/composer
- tests/composer
2 files changed
+24
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
249 | 249 | | |
250 | 250 | | |
251 | 251 | | |
252 | | - | |
253 | | - | |
254 | | - | |
| 252 | + | |
255 | 253 | | |
256 | 254 | | |
257 | 255 | | |
| |||
274 | 272 | | |
275 | 273 | | |
276 | 274 | | |
| 275 | + | |
| 276 | + | |
| 277 | + | |
| 278 | + | |
| 279 | + | |
| 280 | + | |
| 281 | + | |
| 282 | + | |
| 283 | + | |
| 284 | + | |
| 285 | + | |
| 286 | + | |
| 287 | + | |
| 288 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
133 | 133 | | |
134 | 134 | | |
135 | 135 | | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
136 | 145 | | |
137 | 146 | | |
138 | 147 | | |
| |||
0 commit comments