(name, leftHasMarker, style)
| 22157 | } |
| 22158 | |
| 22159 | function wrapInlineNameHTML(name, leftHasMarker, style) { |
| 22160 | var marginCss = leftHasMarker ? 'margin-left:2px' : ''; |
| 22161 | return "<span style=\"" + style + ";" + marginCss + "\">" + encodeHTML(name) + '</span>'; |
| 22162 | } |
| 22163 | |
| 22164 | function wrapInlineValueHTML(valueList, alignRight, valueCloseToMarker, style) { |
| 22165 | // Do not too close to marker, considering there are multiple values separated by spaces. |
no test coverage detected
searching dependent graphs…