We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb36019 commit 4e7aa8dCopy full SHA for 4e7aa8d
2 files changed
src/test/java/org/htmlunit/general/HostClassNameTest.java
@@ -4381,6 +4381,15 @@ public void intl_DateTimeFormat() throws Exception {
4381
test("Intl.DateTimeFormat");
4382
}
4383
4384
+ /**
4385
+ * @throws Exception if the test fails
4386
+ */
4387
+ @Test
4388
+ @Alerts("function Locale() { [native code] }")
4389
+ public void intl_Locale() throws Exception {
4390
+ test("Intl.Locale");
4391
+ }
4392
+
4393
/**
4394
* @throws Exception if the test fails
4395
*/
src/test/java/org/htmlunit/general/HostTestsTest.java
@@ -59,6 +59,7 @@ public void test() throws Exception {
59
60
61
set.remove("Iterator");
62
+ set.remove("Locale");
63
set.remove("URLSearchParamsIterator");
64
65
// Worker
0 commit comments