Skip to content

Commit bf73476

Browse files
committed
FF 144
1 parent fc0506c commit bf73476

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

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

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,15 @@ public void argumentsCalleeProperty() throws Exception {
163163
* @throws Exception if the test fails
164164
*/
165165
@Test
166-
@Alerts({"function/function () { [native code] }", "function/function () { [native code] }",
167-
"W-undefined", "C-false", "E-false"})
166+
@Alerts(DEFAULT = {"function/function () { [native code] }",
167+
"function/function () { [native code] }",
168+
"W-undefined", "C-false", "E-false"},
169+
FF = {"function/function() { [native code] }",
170+
"function/function() { [native code] }",
171+
"W-undefined", "C-false", "E-false"},
172+
FF_ESR = {"function/function() { [native code] }",
173+
"function/function() { [native code] }",
174+
"W-undefined", "C-false", "E-false"})
168175
public void argumentsCalleePropertyStrict() throws Exception {
169176
final String html = DOCTYPE_HTML
170177
+ "<html><body>"

0 commit comments

Comments
 (0)