(cm)
| 3879 | } |
| 3880 | |
| 3881 | function clearCaches(cm) { |
| 3882 | clearLineMeasurementCache(cm) |
| 3883 | cm.display.cachedCharWidth = cm.display.cachedTextHeight = cm.display.cachedPaddingH = null |
| 3884 | if (!cm.options.lineWrapping) { |
| 3885 | cm.display.maxLineChanged = true |
| 3886 | } |
| 3887 | cm.display.lineNumChars = null |
| 3888 | } |
| 3889 | |
| 3890 | function pageScrollX() { |
| 3891 | // Work around https://bugs.chromium.org/p/chromium/issues/detail?id=489206 |
no test coverage detected