(cm, measure)
| 6097 | } |
| 6098 | |
| 6099 | function setDocumentHeight(cm, measure) { |
| 6100 | cm.display.sizer.style.minHeight = measure.docHeight + "px" |
| 6101 | cm.display.heightForcer.style.top = measure.docHeight + "px" |
| 6102 | cm.display.gutters.style.height = measure.docHeight + cm.display.barHeight + scrollGap(cm) + "px" |
| 6103 | } |
| 6104 | |
| 6105 | // Rebuild the gutter elements, ensure the margin to the left of the |
| 6106 | // code matches their width. |
no test coverage detected