| ... | ... | @@ -28,7 +28,7 @@ pub const URL = struct { |
| 28 | 28 | /// https://url.spec.whatwg.org/#concept-basic-url-parser |
| 29 | 29 | fn parseBasic(alloc: std.mem.Allocator, input: []const u8, base: ?URL, state_override: ?BasicParserState) error{ SkipZigTest, InvalidURL, OutOfMemory }!URL { |
| 30 | 30 | // input is a scalar value string |
| 31 | | if (!std.unicode.utf8ValidateSlice(input)) return error.InvalidURL; |
| 31 | if (!std.unicode.utf8ValidateSlice(input)) return error.SkipZigTest; |
| 32 | 32 | |
| 33 | 33 | var inputl = std.ArrayList(u8).init(alloc); |
| 34 | 34 | defer inputl.deinit(); |