Skip to content

Commit 838bcf8

Browse files
committed
Chrome/Edge 139
1 parent 3ec13be commit 838bcf8

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

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

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,12 @@ public class NativeArrayTest extends WebDriverTestCase {
3636
*/
3737
@Test
3838
@Alerts(DEFAULT = {"1<>5", "5<>2", "1<>2", "5<>1", "2<>1", "1<>1", "5<>9"},
39+
CHROME = {"5<>1", "2<>5", "2<>1", "1<>2", "1<>1", "9<>2", "9<>5"},
40+
EDGE = {"5<>1", "2<>5", "2<>1", "1<>2", "1<>1", "9<>2", "9<>5"})
41+
@HtmlUnitNYI(
3942
CHROME = {"5<>1", "2<>5", "2<>5", "2<>1", "1<>2", "1<>1", "9<>2", "9<>5"},
40-
EDGE = {"5<>1", "2<>5", "2<>5", "2<>1", "1<>2", "1<>1", "9<>2", "9<>5"})
41-
@HtmlUnitNYI(FF = {"5<>1", "2<>5", "2<>5", "2<>1", "1<>2", "1<>1", "9<>2", "9<>5"},
43+
EDGE = {"5<>1", "2<>5", "2<>5", "2<>1", "1<>2", "1<>1", "9<>2", "9<>5"},
44+
FF = {"5<>1", "2<>5", "2<>5", "2<>1", "1<>2", "1<>1", "9<>2", "9<>5"},
4245
FF_ESR = {"5<>1", "2<>5", "2<>5", "2<>1", "1<>2", "1<>1", "9<>2", "9<>5"})
4346
public void sortSteps() throws Exception {
4447
final String html = DOCTYPE_HTML
@@ -52,7 +55,8 @@ public void sortSteps() throws Exception {
5255
+ " var t = [1, 5, 2, 1, 9];\n"
5356
+ " t.sort(compare);\n"
5457
+ "}\n"
55-
+ "</script></head><body onload='doTest()'>\n"
58+
+ "</script></head>\n"
59+
+ "<body onload='doTest()'>\n"
5660
+ "</body></html>";
5761

5862
loadPageVerifyTitle2(html);

0 commit comments

Comments
 (0)