(className, options, thickness)
| 5628 | }; |
| 5629 | |
| 5630 | var makeLineSpan = function makeLineSpan(className, options, thickness) { |
| 5631 | var line = buildCommon_makeSpan([className], [], options); |
| 5632 | line.height = thickness || options.fontMetrics().defaultRuleThickness; |
| 5633 | line.style.borderBottomWidth = line.height + "em"; |
| 5634 | line.maxFontSize = 1.0; |
| 5635 | return line; |
| 5636 | }; |
| 5637 | /** |
| 5638 | * Makes an anchor with the given href, list of classes, list of children, |
| 5639 | * and options. |
nothing calls this directly
no test coverage detected