()
| 482 | } |
| 483 | |
| 484 | getCurrentTextAttributes() { |
| 485 | const attributes = {} |
| 486 | for (const key in this.currentAttributes) { |
| 487 | const value = this.currentAttributes[key] |
| 488 | if (value !== false) { |
| 489 | if (getTextConfig(key)) { |
| 490 | attributes[key] = value |
| 491 | } |
| 492 | } |
| 493 | } |
| 494 | return attributes |
| 495 | } |
| 496 | |
| 497 | // Selection freezing |
| 498 |
no test coverage detected