(cm, lineObj, preparedMeasure, target)
| 4117 | } |
| 4118 | |
| 4119 | function wrappedLineExtentChar(cm, lineObj, preparedMeasure, target) { |
| 4120 | if (!preparedMeasure) { |
| 4121 | preparedMeasure = prepareMeasureForLine(cm, lineObj) |
| 4122 | } |
| 4123 | var targetTop = intoCoordSystem(cm, lineObj, measureCharPrepared(cm, preparedMeasure, target), "line").top |
| 4124 | return wrappedLineExtent(cm, lineObj, preparedMeasure, targetTop) |
| 4125 | } |
| 4126 | |
| 4127 | // Returns true if the given side of a box is after the given |
| 4128 | // coordinates, in top-to-bottom, left-to-right order. |
no test coverage detected