(cm)
| 2556 | } |
| 2557 | |
| 2558 | function clearCaches(cm) { |
| 2559 | clearLineMeasurementCache(cm); |
| 2560 | cm.display.cachedCharWidth = cm.display.cachedTextHeight = cm.display.cachedPaddingH = null; |
| 2561 | if (!cm.options.lineWrapping) { cm.display.maxLineChanged = true; } |
| 2562 | cm.display.lineNumChars = null; |
| 2563 | } |
| 2564 | |
| 2565 | function pageScrollX() { |
| 2566 | // Work around https://bugs.chromium.org/p/chromium/issues/detail?id=489206 |
no test coverage detected