Skip to content

Commit 03ced16

Browse files
committed
Chrome/Edge 132, Firefox 134
1 parent 84a95dc commit 03ced16

18 files changed

+94
-81
lines changed

src/changes/changes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</properties>
88

99
<body>
10-
<release version="4.9.0" date="February xx, 2025" description="Bugfixes, BigInt">
10+
<release version="4.9.0" date="February xx, 2025" description="Chrome/Edge 132, Firefox 134, BigInt, Bugfixes">
1111
<action type="fix" dev="rbri">
1212
core-js: junit-vintage-engine was NOT marked as 'test' dependency, therefore we had junit
1313
as part of our depenencies/lib/diestribution (regression from 4.8.0)

src/main/java/org/htmlunit/BrowserVersion.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,18 +64,18 @@
6464
public final class BrowserVersion implements Serializable {
6565

6666
/** Latest Firefox. */
67-
public static final BrowserVersion FIREFOX = new BrowserVersion(133, "FF");
67+
public static final BrowserVersion FIREFOX = new BrowserVersion(134, "FF");
6868

6969
private static final int FIREFOX_ESR_NUMERIC = 128;
7070

7171
/** Firefox ESR. */
7272
public static final BrowserVersion FIREFOX_ESR = new BrowserVersion(FIREFOX_ESR_NUMERIC, "FF-ESR");
7373

7474
/** Latest Edge. */
75-
public static final BrowserVersion EDGE = new BrowserVersion(131, "Edge");
75+
public static final BrowserVersion EDGE = new BrowserVersion(132, "Edge");
7676

7777
/** Latest Chrome. */
78-
public static final BrowserVersion CHROME = new BrowserVersion(131, "Chrome");
78+
public static final BrowserVersion CHROME = new BrowserVersion(132, "Chrome");
7979

8080
/**
8181
* Array with all supported browsers.
@@ -195,9 +195,9 @@ public final class BrowserVersion implements Serializable {
195195
CHROME.imgAcceptHeader_ = "image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";
196196
CHROME.cssAcceptHeader_ = "text/css,*/*;q=0.1";
197197
CHROME.scriptAcceptHeader_ = "*/*";
198-
CHROME.secClientHintUserAgentHeader_ = "\"Google Chrome\";v=\""
199-
+ CHROME.getBrowserVersionNumeric() + "\", \"Chromium\";v=\""
200-
+ CHROME.getBrowserVersionNumeric() + "\", \"Not_A Brand\";v=\"24\"";
198+
CHROME.secClientHintUserAgentHeader_ = "\"Not A(Brand\";v=\"8\", \"Chromium\";v=\""
199+
+ CHROME.getBrowserVersionNumeric() + "\", \"Google Chrome\";v=\""
200+
+ CHROME.getBrowserVersionNumeric() + "\"";
201201
CHROME.fontHeights_ = new int[] {
202202
0, 1, 2, 4, 5, 5, 6, 8, 9, 10, 11, 12, 15, 16, 16, 17, 18, 20, 21, 22, 23, 25, 26, 26,
203203
27, 28, 30, 31, 32, 33, 34, 36, 37, 37, 38, 40, 42, 43, 44, 45, 47, 48, 48, 49, 51, 52, 53, 54, 55, 57,

src/main/java/org/htmlunit/css/StyleAttributes.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -695,10 +695,10 @@ public enum Definition {
695695
BORDER_RIGHT_WIDTH_("border-right-width", "border-right-width", ff("0px")),
696696

697697
/** The style property {@code borderSpacing}. */
698-
BORDER_SPACING("borderSpacing", "border-spacing", chromeAndEdge("0px 0px"), ff("0px 0px")),
698+
BORDER_SPACING("borderSpacing", "border-spacing", chromeAndEdge("0px 0px"), ffEsr("0px 0px"), ffLatest("0px")),
699699

700700
/** The style property {@code border-spacing}. */
701-
BORDER_SPACING_("border-spacing", "border-spacing", ff("0px 0px")),
701+
BORDER_SPACING_("border-spacing", "border-spacing", ffEsr("0px 0px"), ffLatest("0px")),
702702

703703
/** The style property {@code borderStartEndRadius}. */
704704
BORDER_START_END_RADIUS("borderStartEndRadius", "border-start-end-radius", chromeAndEdge("0px"), ff("0px")),

src/test/java/org/htmlunit/BrowserVersionTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ public class BrowserVersionTest {
3838
*/
3939
@Test
4040
public void getBrowserVersionNumeric() {
41-
assertEquals(133, BrowserVersion.FIREFOX.getBrowserVersionNumeric());
41+
assertEquals(134, BrowserVersion.FIREFOX.getBrowserVersionNumeric());
4242
assertEquals(128, BrowserVersion.FIREFOX_ESR.getBrowserVersionNumeric());
43-
assertEquals(131, BrowserVersion.CHROME.getBrowserVersionNumeric());
44-
assertEquals(131, BrowserVersion.EDGE.getBrowserVersionNumeric());
43+
assertEquals(132, BrowserVersion.CHROME.getBrowserVersionNumeric());
44+
assertEquals(132, BrowserVersion.EDGE.getBrowserVersionNumeric());
4545
}
4646

4747
/**

src/test/java/org/htmlunit/ExternalTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public class ExternalTest {
5555
static String MAVEN_REPO_URL_ = "https://repo1.maven.org/maven2/";
5656

5757
/** Chrome driver. */
58-
static String CHROME_DRIVER_ = "131.0.6778";
58+
static String CHROME_DRIVER_ = "132.0.6834";
5959
static String CHROME_DRIVER_URL_ =
6060
"https://googlechromelabs.github.io/chrome-for-testing/last-known-good-versions-with-downloads.json";
6161

src/test/java/org/htmlunit/general/ElementOwnPropertiesTest.java

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17871,12 +17871,14 @@ public void xmlHttpRequest() throws Exception {
1787117871
* @throws Exception if the test fails
1787217872
*/
1787317873
@Test
17874-
@Alerts(CHROME = "arrayBuffer(),blob(),body[GCE],bodyUsed[GCE],cache[GCE],clone(),constructor(),credentials[GCE],"
17874+
@Alerts(CHROME = "arrayBuffer(),blob(),body[GCE],bodyUsed[GCE],bytes(),"
17875+
+ "cache[GCE],clone(),constructor(),credentials[GCE],"
1787517876
+ "destination[GCE],duplex[GCE],formData(),headers[GCE],integrity[GCE],isHistoryNavigation[GCE],json(),"
1787617877
+ "keepalive[GCE],method[GCE],mode[GCE],redirect[GCE],referrer[GCE],referrerPolicy[GCE],signal[GCE],"
1787717878
+ "targetAddressSpace[GCE],text(),"
1787817879
+ "url[GCE]",
17879-
EDGE = "arrayBuffer(),blob(),body[GCE],bodyUsed[GCE],cache[GCE],clone(),constructor(),credentials[GCE],"
17880+
EDGE = "arrayBuffer(),blob(),body[GCE],bodyUsed[GCE],bytes(),"
17881+
+ "cache[GCE],clone(),constructor(),credentials[GCE],"
1788017882
+ "destination[GCE],duplex[GCE],formData(),headers[GCE],integrity[GCE],isHistoryNavigation[GCE],json(),"
1788117883
+ "keepalive[GCE],method[GCE],mode[GCE],redirect[GCE],referrer[GCE],referrerPolicy[GCE],signal[GCE],"
1788217884
+ "targetAddressSpace[GCE],text(),"
@@ -17903,10 +17905,12 @@ public void request() throws Exception {
1790317905
* @throws Exception if the test fails
1790417906
*/
1790517907
@Test
17906-
@Alerts(CHROME = "arrayBuffer(),blob(),body[GCE],bodyUsed[GCE],clone(),constructor(),formData(),headers[GCE],"
17908+
@Alerts(CHROME = "arrayBuffer(),blob(),body[GCE],bodyUsed[GCE],bytes(),"
17909+
+ "clone(),constructor(),formData(),headers[GCE],"
1790717910
+ "json(),ok[GCE],redirected[GCE],status[GCE],statusText[GCE],text(),type[GCE],"
1790817911
+ "url[GCE]",
17909-
EDGE = "arrayBuffer(),blob(),body[GCE],bodyUsed[GCE],clone(),constructor(),formData(),headers[GCE],"
17912+
EDGE = "arrayBuffer(),blob(),body[GCE],bodyUsed[GCE],bytes(),"
17913+
+ "clone(),constructor(),formData(),headers[GCE],"
1791017914
+ "json(),ok[GCE],redirected[GCE],status[GCE],statusText[GCE],text(),type[GCE],"
1791117915
+ "url[GCE]",
1791217916
FF = "arrayBuffer(),blob(),body[GCE],bodyUsed[GCE],bytes(),clone(),constructor(),formData(),"
@@ -18141,8 +18145,10 @@ public void mimeType() throws Exception {
1814118145
+ "canLoadAdAuctionFencedFrame(),canShare(),clearAppBadge(),clearOriginJoinedAdInterestGroups(),"
1814218146
+ "clipboard[GCE],connection[GCE],constructor(),cookieEnabled[GCE],createAuctionNonce(),"
1814318147
+ "credentials[GCE],deprecatedReplaceInURN(),deprecatedRunAdAuctionEnforcesKAnonymity[GCE],"
18144-
+ "deprecatedURNToURL(),deviceMemory[GCE],doNotTrack[GCE],geolocation[GCE],getBattery(),"
18145-
+ "getGamepads(),getInstalledRelatedApps(),getUserMedia(),gpu[GCE],hardwareConcurrency[GCE],"
18148+
+ "deprecatedURNToURL(),deviceMemory[GCE],devicePosture[GCE],"
18149+
+ "doNotTrack[GCE],geolocation[GCE],getBattery(),"
18150+
+ "getGamepads(),getInstalledRelatedApps(),getInterestGroupAdAuctionData(),"
18151+
+ "getUserMedia(),gpu[GCE],hardwareConcurrency[GCE],"
1814618152
+ "hid[GCE],ink[GCE],javaEnabled(),joinAdInterestGroup(),keyboard[GCE],language[GCE],languages[GCE],"
1814718153
+ "leaveAdInterestGroup(),locks[GCE],login[GCE],managed[GCE],maxTouchPoints[GCE],"
1814818154
+ "mediaCapabilities[GCE],mediaDevices[GCE],mediaSession[GCE],mimeTypes[GCE],onLine[GCE],"
@@ -18159,8 +18165,10 @@ public void mimeType() throws Exception {
1815918165
+ "canLoadAdAuctionFencedFrame(),canShare(),clearAppBadge(),clearOriginJoinedAdInterestGroups(),"
1816018166
+ "clipboard[GCE],connection[GCE],constructor(),cookieEnabled[GCE],createAuctionNonce(),"
1816118167
+ "credentials[GCE],deprecatedReplaceInURN(),deprecatedRunAdAuctionEnforcesKAnonymity[GCE],"
18162-
+ "deprecatedURNToURL(),deviceMemory[GCE],doNotTrack[GCE],geolocation[GCE],getBattery(),"
18163-
+ "getGamepads(),getInstalledRelatedApps(),getUserMedia(),gpu[GCE],hardwareConcurrency[GCE],"
18168+
+ "deprecatedURNToURL(),deviceMemory[GCE],devicePosture[GCE],"
18169+
+ "doNotTrack[GCE],geolocation[GCE],getBattery(),"
18170+
+ "getGamepads(),getInstalledRelatedApps(),getInterestGroupAdAuctionData(),"
18171+
+ "getUserMedia(),gpu[GCE],hardwareConcurrency[GCE],"
1816418172
+ "hid[GCE],ink[GCE],javaEnabled(),joinAdInterestGroup(),keyboard[GCE],language[GCE],languages[GCE],"
1816518173
+ "leaveAdInterestGroup(),locks[GCE],login[GCE],managed[GCE],maxTouchPoints[GCE],"
1816618174
+ "mediaCapabilities[GCE],mediaDevices[GCE],mediaSession[GCE],mimeTypes[GCE],onLine[GCE],"

src/test/java/org/htmlunit/general/ElementPropertiesTest.java

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8990,11 +8990,13 @@ public void xmlHttpRequest() throws Exception {
89908990
* @throws Exception if the test fails
89918991
*/
89928992
@Test
8993-
@Alerts(CHROME = "arrayBuffer(),blob(),body,bodyUsed,cache,clone(),credentials,destination,duplex,formData(),"
8993+
@Alerts(CHROME = "arrayBuffer(),blob(),body,bodyUsed,bytes(),"
8994+
+ "cache,clone(),credentials,destination,duplex,formData(),"
89948995
+ "headers,integrity,isHistoryNavigation,json(),keepalive,method,mode,redirect,referrer,"
89958996
+ "referrerPolicy,signal,targetAddressSpace,text(),"
89968997
+ "url",
8997-
EDGE = "arrayBuffer(),blob(),body,bodyUsed,cache,clone(),credentials,destination,duplex,formData(),"
8998+
EDGE = "arrayBuffer(),blob(),body,bodyUsed,bytes(),"
8999+
+ "cache,clone(),credentials,destination,duplex,formData(),"
89989000
+ "headers,integrity,isHistoryNavigation,json(),keepalive,method,mode,redirect,referrer,"
89999001
+ "referrerPolicy,signal,targetAddressSpace,text(),"
90009002
+ "url",
@@ -9018,10 +9020,12 @@ public void request() throws Exception {
90189020
* @throws Exception if the test fails
90199021
*/
90209022
@Test
9021-
@Alerts(CHROME = "arrayBuffer(),blob(),body,bodyUsed,clone(),formData(),headers,json(),ok,redirected,status,"
9023+
@Alerts(CHROME = "arrayBuffer(),blob(),body,bodyUsed,bytes(),"
9024+
+ "clone(),formData(),headers,json(),ok,redirected,status,"
90229025
+ "statusText,text(),type,"
90239026
+ "url",
9024-
EDGE = "arrayBuffer(),blob(),body,bodyUsed,clone(),formData(),headers,json(),ok,redirected,status,"
9027+
EDGE = "arrayBuffer(),blob(),body,bodyUsed,bytes(),"
9028+
+ "clone(),formData(),headers,json(),ok,redirected,status,"
90259029
+ "statusText,text(),type,"
90269030
+ "url",
90279031
FF = "arrayBuffer(),blob(),body,bodyUsed,bytes(),clone(),formData(),headers,json(),ok,redirected,"
@@ -9265,8 +9269,10 @@ public void mimeType() throws Exception {
92659269
@Alerts(CHROME = "adAuctionComponents(),appCodeName,appName,appVersion,bluetooth,canLoadAdAuctionFencedFrame(),"
92669270
+ "canShare(),clearAppBadge(),clearOriginJoinedAdInterestGroups(),clipboard,connection,"
92679271
+ "cookieEnabled,createAuctionNonce(),credentials,deprecatedReplaceInURN(),"
9268-
+ "deprecatedRunAdAuctionEnforcesKAnonymity,deprecatedURNToURL(),deviceMemory,doNotTrack,"
9269-
+ "geolocation,getBattery(),getGamepads(),getInstalledRelatedApps(),getUserMedia(),gpu,"
9272+
+ "deprecatedRunAdAuctionEnforcesKAnonymity,deprecatedURNToURL(),deviceMemory,devicePosture,"
9273+
+ "doNotTrack,"
9274+
+ "geolocation,getBattery(),getGamepads(),getInstalledRelatedApps(),getInterestGroupAdAuctionData(),"
9275+
+ "getUserMedia(),gpu,"
92709276
+ "hardwareConcurrency,hid,ink,javaEnabled(),joinAdInterestGroup(),keyboard,language,languages,"
92719277
+ "leaveAdInterestGroup(),locks,login,managed,maxTouchPoints,mediaCapabilities,mediaDevices,"
92729278
+ "mediaSession,mimeTypes,onLine,pdfViewerEnabled,permissions,platform,plugins,presentation,product,"
@@ -9280,8 +9286,10 @@ public void mimeType() throws Exception {
92809286
EDGE = "adAuctionComponents(),appCodeName,appName,appVersion,bluetooth,canLoadAdAuctionFencedFrame(),"
92819287
+ "canShare(),clearAppBadge(),clearOriginJoinedAdInterestGroups(),clipboard,connection,"
92829288
+ "cookieEnabled,createAuctionNonce(),credentials,deprecatedReplaceInURN(),"
9283-
+ "deprecatedRunAdAuctionEnforcesKAnonymity,deprecatedURNToURL(),deviceMemory,doNotTrack,"
9284-
+ "geolocation,getBattery(),getGamepads(),getInstalledRelatedApps(),getUserMedia(),gpu,"
9289+
+ "deprecatedRunAdAuctionEnforcesKAnonymity,deprecatedURNToURL(),deviceMemory,devicePosture,"
9290+
+ "doNotTrack,"
9291+
+ "geolocation,getBattery(),getGamepads(),getInstalledRelatedApps(),getInterestGroupAdAuctionData(),"
9292+
+ "getUserMedia(),gpu,"
92859293
+ "hardwareConcurrency,hid,ink,javaEnabled(),joinAdInterestGroup(),keyboard,language,languages,"
92869294
+ "leaveAdInterestGroup(),locks,login,managed,maxTouchPoints,mediaCapabilities,mediaDevices,"
92879295
+ "mediaSession,mimeTypes,onLine,pdfViewerEnabled,permissions,platform,plugins,presentation,product,"

src/test/java/org/htmlunit/html/serializer/HtmlSerializerInnerOuterText2Test.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1316,7 +1316,6 @@ public void getInnerTextWhiteSpaceOrderedListPreWrap() throws Exception {
13161316
@Test
13171317
@Alerts(DEFAULT = "\n\nfirst item\n\n\nA B C D\nEF\nG\nH\nI"
13181318
+ "\n\n\nthird item\n4. item\n\nsome text\n\nlast item\n\n",
1319-
FF = "first item\nA B C D\nEF\nG\nH\nI\nthird item\n4. item\nsome text\n\nlast item",
13201319
FF_ESR = "first item\nA B C D\nEFGH\nI\nthird item\n4. item\nsome text\nlast item")
13211320
@HtmlUnitNYI(CHROME = "first item\n\n\n A B C D\nEF\nG\nH\n I"
13221321
+ "\n\n\nthird item\n4. item\n\nsome text\n\nlast item\n\n",
@@ -1425,7 +1424,6 @@ public void getInnerTextWhiteSpaceUnorderedListPreWrap() throws Exception {
14251424
@Test
14261425
@Alerts(DEFAULT = "\n\nfirst item\n\n\nA B C D\nEF\nG\nH\nI\n"
14271426
+ "\n\nthird item\n4. item\n\nsome text\n\nlast item\n\n",
1428-
FF = "first item\nA B C D\nEF\nG\nH\nI\nthird item\n4. item\nsome text\n\nlast item",
14291427
FF_ESR = "first item\nA B C D\nEFGH\nI\nthird item\n4. item\nsome text\nlast item")
14301428
@HtmlUnitNYI(CHROME = "first item\n\n\n A B C D\nEF\nG\nH\n I"
14311429
+ "\n\n\nthird item\n4. item\n\nsome text\n\nlast item\n\n",

src/test/java/org/htmlunit/html/serializer/HtmlSerializerVisibleText2Test.java

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -799,9 +799,9 @@ private void getVisibleTextWhiteSpaceTitle(final String whiteSpace) throws Excep
799799
* @throws Exception if the test fails
800800
*/
801801
@Test
802-
@Alerts(DEFAULT = "A B C D EF G H I\nSecond",
803-
CHROME = " A B C D EF G H\nI\n Second\n ",
804-
EDGE = " A B C D EF G H\nI\n Second\n ")
802+
@Alerts(DEFAULT = " A B C D EF G H I\n Second\n ",
803+
FF = "A B C D EF G H I\nSecond",
804+
FF_ESR = "A B C D EF G H I\nSecond")
805805
@HtmlUnitNYI(CHROME = "A B C D EF G H I\nSecond",
806806
EDGE = "A B C D EF G H I\nSecond")
807807
public void getVisibleTextWhiteSpaceSelect() throws Exception {
@@ -813,11 +813,7 @@ public void getVisibleTextWhiteSpaceSelect() throws Exception {
813813
* @throws Exception if the test fails
814814
*/
815815
@Test
816-
@Alerts(DEFAULT = "A B C D EF G H\nI\nSecond",
817-
FF = "A B C D EF G H I\nSecond",
818-
FF_ESR = "A B C D EF G H I\nSecond")
819-
@HtmlUnitNYI(CHROME = "A B C D EF G H I\nSecond",
820-
EDGE = "A B C D EF G H I\nSecond")
816+
@Alerts("A B C D EF G H I\nSecond")
821817
public void getVisibleTextWhiteSpaceSelectNormal() throws Exception {
822818
getVisibleTextWhiteSpaceSelect("normal");
823819
}
@@ -827,11 +823,7 @@ public void getVisibleTextWhiteSpaceSelectNormal() throws Exception {
827823
* @throws Exception if the test fails
828824
*/
829825
@Test
830-
@Alerts(DEFAULT = "A B C D EF G H\nI\nSecond",
831-
FF = "A B C D EF G H I\nSecond",
832-
FF_ESR = "A B C D EF G H I\nSecond")
833-
@HtmlUnitNYI(CHROME = "A B C D EF G H I\nSecond",
834-
EDGE = "A B C D EF G H I\nSecond")
826+
@Alerts("A B C D EF G H I\nSecond")
835827
public void getVisibleTextWhiteSpaceSelectNowrap() throws Exception {
836828
getVisibleTextWhiteSpaceSelect("nowrap");
837829
}
@@ -841,7 +833,7 @@ public void getVisibleTextWhiteSpaceSelectNowrap() throws Exception {
841833
* @throws Exception if the test fails
842834
*/
843835
@Test
844-
@Alerts(DEFAULT = " A B C D EF G H\nI\n Second\n ",
836+
@Alerts(DEFAULT = " A B C D EF G H I\n Second\n ",
845837
FF = "A B C D EF G H I\nSecond",
846838
FF_ESR = "A B C D EF G H I\nSecond")
847839
@HtmlUnitNYI(CHROME = " A B C D \nEF\nG \n H I \n Second\n ",
@@ -857,7 +849,7 @@ public void getVisibleTextWhiteSpaceSelectPre() throws Exception {
857849
* @throws Exception if the test fails
858850
*/
859851
@Test
860-
@Alerts(DEFAULT = " A B C D EF G H\nI\n Second\n ",
852+
@Alerts(DEFAULT = " A B C D EF G H I\n Second\n ",
861853
FF = "A B C D EF G H I\nSecond",
862854
FF_ESR = "A B C D EF G H I\nSecond")
863855
@HtmlUnitNYI(CHROME = " A B C D \nEF\nG \n H I \n Second\n ",
@@ -873,9 +865,7 @@ public void getVisibleTextWhiteSpaceSelectPreWrap() throws Exception {
873865
* @throws Exception if the test fails
874866
*/
875867
@Test
876-
@Alerts(DEFAULT = "A B C D EF G H\nI\nSecond",
877-
FF = "A B C D EF G H I\nSecond",
878-
FF_ESR = "A B C D EF G H I\nSecond")
868+
@Alerts("A B C D EF G H I\nSecond")
879869
@HtmlUnitNYI(CHROME = "A B C D \nEF\nG \n H I\n Second",
880870
EDGE = "A B C D \nEF\nG \n H I\n Second",
881871
FF = "A B C D \nEF\nG \n H I\n Second",

src/test/java/org/htmlunit/javascript/NativeBigIntTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
import org.htmlunit.WebDriverTestCase;
1818
import org.htmlunit.junit.BrowserRunner;
1919
import org.htmlunit.junit.BrowserRunner.Alerts;
20-
import org.htmlunit.junit.BrowserRunner.HtmlUnitNYI;
2120
import org.junit.Test;
2221
import org.junit.runner.RunWith;
2322

@@ -33,7 +32,7 @@ public class NativeBigIntTest extends WebDriverTestCase {
3332
* @throws Exception if the test fails
3433
*/
3534
@Test
36-
@Alerts(DEFAULT = {"bigint", "bigint"})
35+
@Alerts({"bigint", "bigint"})
3736
public void typeof() throws Exception {
3837
final String html
3938
= "<html>"

0 commit comments

Comments
 (0)