(measurement, options)
| 5845 | |
| 5846 | |
| 5847 | var buildCommon_makeGlue = function makeGlue(measurement, options) { |
| 5848 | // Make an empty span for the space |
| 5849 | var rule = buildCommon_makeSpan(["mspace"], [], options); |
| 5850 | var size = units_calculateSize(measurement, options); |
| 5851 | rule.style.marginRight = size + "em"; |
| 5852 | return rule; |
| 5853 | }; // Takes font options, and returns the appropriate fontLookup name |
| 5854 | |
| 5855 | |
| 5856 | var retrieveTextFontName = function retrieveTextFontName(fontFamily, fontWeight, fontShape) { |
nothing calls this directly
no test coverage detected