Index: Source/core/html/parser/HTMLParserIdioms.cpp |
diff --git a/Source/core/html/parser/HTMLParserIdioms.cpp b/Source/core/html/parser/HTMLParserIdioms.cpp |
index 6baada93f07f4e0bb4a458db87adfb4c8e836e70..6f136305f07ee01108d46d0b8da093bcfc11b83c 100644 |
--- a/Source/core/html/parser/HTMLParserIdioms.cpp |
+++ b/Source/core/html/parser/HTMLParserIdioms.cpp |
@@ -272,7 +272,7 @@ bool parseHTMLNonNegativeInteger(const String& input, unsigned& value) |
const LChar* start = input.characters8(); |
return parseHTMLNonNegativeIntegerInternal(start, start + length, value); |
} |
- |
+ |
const UChar* start = input.characters16(); |
return parseHTMLNonNegativeIntegerInternal(start, start + length, value); |
} |