We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6f0450 commit a4abb35Copy full SHA for a4abb35
Libraries/LibWeb/Infra/Strings.cpp
@@ -152,7 +152,9 @@ ByteBuffer isomorphic_encode(StringView input)
152
// NOTE: This is essentially spec-speak for "Encode as ISO-8859-1 / Latin-1".
153
ByteBuffer buf = {};
154
for (auto code_point : Utf8View { input }) {
155
- VERIFY(code_point <= 0xFF);
+ // VERIFY(code_point <= 0xFF);
156
+ if (code_point > 0xFF)
157
+ dbgln("FIXME: Trying to isomorphic encode a string with code points > U+00FF.");
158
buf.append((u8)code_point);
159
}
160
return buf;
0 commit comments