(old)
| 7034 | } |
| 7035 | |
| 7036 | function splitSpaces(old) { |
| 7037 | var out = " "; |
| 7038 | for (var i = 0; i < old.length - 2; ++i) out += i % 2 ? " " : "\u00a0"; |
| 7039 | out += " "; |
| 7040 | return out; |
| 7041 | } |
| 7042 | |
| 7043 | // Work around nonsense dimensions being reported for stretches of |
| 7044 | // right-to-left text. |
nothing calls this directly
no outgoing calls
no test coverage detected