From df0eeb91481e3c6314fad58aaccf91d1bc8ee391 Mon Sep 17 00:00:00 2001 From: Anne van Kesteren Date: Mon, 16 Jan 2023 14:21:42 +0000 Subject: [PATCH] Bug 1809928 [wpt PR 37907] - IDNA: add a couple interesting ToASCII cases, a=testonly Automatic update from web-platform-tests IDNA: add a couple interesting ToASCII cases Identified in https://github.com/whatwg/url/issues/341 by karwa. -- wpt-commits: 3d997a3ff43a545b3d36e12d55478fb264e6d0df wpt-pr: 37907 --- .../tests/url/resources/toascii.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/testing/web-platform/tests/url/resources/toascii.json b/testing/web-platform/tests/url/resources/toascii.json index b9ceea310676d..4cb41e94cd4a0 100644 --- a/testing/web-platform/tests/url/resources/toascii.json +++ b/testing/web-platform/tests/url/resources/toascii.json @@ -61,6 +61,10 @@ "input": "xn--a.ß", "output": null }, + { + "input": "xn--ls8h=", + "output": null + }, { "comment": "Invalid Punycode (contains non-ASCII character)", "input": "xn--tešla", @@ -172,5 +176,18 @@ { "input": "xn--", "output": null + }, + { + "comment": "Interesting UseSTD3ASCIIRules=false cases", + "input": "≠", + "output": "xn--1ch" + }, + { + "input": "≮", + "output": "xn--gdh" + }, + { + "input": "≯", + "output": "xn--hdh" } ]