WebCore/svg/SVGFont.cpp

@@struct SVGTextRunWalker {
270270 // extended to the n-th next character (where n is 'characterLookupRange'), to check for any possible ligature.
271271 characterLookupRange = endOfScanRange - i;
272272
273  String lookupString(run.data(i), characterLookupRange);
 273 String lookupString(run.data(i), std::min(characterLookupRange, run.length()-i));
274274 Vector<SVGGlyphIdentifier> glyphs;
275275 if (haveAltGlyph)
276276 glyphs.append(altGlyphIdentifier);