Skip to content

Commit 683b15e

Browse files
committed
Chrome/Edge 141, Firefox 143, FirefoxESR 140
1 parent f2f41a5 commit 683b15e

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

src/main/java/org/htmlunit/javascript/host/html/HTMLDetailsElement.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@
1414
*/
1515
package org.htmlunit.javascript.host.html;
1616

17-
import static org.htmlunit.javascript.configuration.SupportedBrowser.CHROME;
18-
import static org.htmlunit.javascript.configuration.SupportedBrowser.EDGE;
19-
import static org.htmlunit.javascript.configuration.SupportedBrowser.FF;
20-
2117
import org.htmlunit.html.HtmlDetails;
2218
import org.htmlunit.javascript.JavaScriptEngine;
2319
import org.htmlunit.javascript.configuration.JsxClass;
@@ -67,7 +63,7 @@ public void setOpen(final Object newValue) {
6763
* Returns the {@code name} property.
6864
* @return the {@code name} property
6965
*/
70-
@JsxGetter({CHROME, EDGE, FF})
66+
@JsxGetter
7167
@Override
7268
public String getName() {
7369
return super.getName();

src/test/java/org/htmlunit/javascript/host/html/HTMLDetailsElementTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,7 @@ public void openString() throws Exception {
130130
* @throws Exception if an error occurs
131131
*/
132132
@Test
133-
@Alerts(DEFAULT = {"", "null", "", "", "abc", "abc", "blah", "blah", "", "null"},
134-
FF_ESR = {"undefined", "null", "", "null", "abc", "null", "abc", "blah", "abc", "null"})
133+
@Alerts({"", "null", "", "", "abc", "abc", "blah", "blah", "", "null"})
135134
public void name() throws Exception {
136135
final String html = DOCTYPE_HTML
137136
+ "<html>\n"

0 commit comments

Comments
 (0)