(line)
| 684 | // Read and store the height of line widgets associated with the |
| 685 | // given line. |
| 686 | function updateWidgetHeight(line) { |
| 687 | if (line.widgets) for (var i = 0; i < line.widgets.length; ++i) |
| 688 | line.widgets[i].height = line.widgets[i].node.offsetHeight; |
| 689 | } |
| 690 | |
| 691 | // Do a bulk-read of the DOM positions and sizes needed to draw the |
| 692 | // view, so that we don't interleave reading and writing to the DOM. |
no outgoing calls
no test coverage detected