WebCore/svg/SVGFont.cpp
@
@
struct SVGTextRunWalker {
270
270
// extended to the n-th next character (where n is 'characterLookupRange'), to check for any possible ligature.
271
271
characterLookupRange = endOfScanRange - i;
272
272
273
String lookupString(run.data(i), characterLookupRange);
273
String lookupString(run.data(i),
std::min(
characterLookupRange
, run.length()-i)
);
274
274
Vector<SVGGlyphIdentifier> glyphs;
275
275
if (haveAltGlyph)
276
276
glyphs.append(altGlyphIdentifier);