Skip to content

Commit 92d3237

Browse files
committed
FF 119 / FF ESR 115
1 parent aa2876e commit 92d3237

File tree

5 files changed

+79
-58
lines changed

5 files changed

+79
-58
lines changed

src/main/java/org/htmlunit/BrowserVersionFeatures.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1720,7 +1720,7 @@ public enum BrowserVersionFeatures {
17201720

17211721
/** XMLHttpRequest triggers an additional progress event if a network error
17221722
* was thrown in async mode. */
1723-
@BrowserFeature({FF, FF_ESR})
1723+
@BrowserFeature(FF_ESR)
17241724
XHR_PROGRESS_ON_NETWORK_ERROR_ASYNC,
17251725

17261726
/** If state unsent the response text is empty even if the response type is wrong. */

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ public void setTitle(final String newTitle) {
451451
* Returns the element autofocus property.
452452
* @return the autofocus of this element
453453
*/
454-
@JsxGetter({CHROME, EDGE, FF})
454+
@JsxGetter({CHROME, EDGE, FF, FF_ESR})
455455
public boolean getAutofocus() {
456456
return getDomNodeOrDie().hasAttribute("autofocus");
457457
}
@@ -460,7 +460,7 @@ public boolean getAutofocus() {
460460
* Sets the autofocus of this element.
461461
* @param newAutofocus the new autofocus of this element
462462
*/
463-
@JsxSetter({CHROME, EDGE, FF})
463+
@JsxSetter({CHROME, EDGE, FF, FF_ESR})
464464
public void setAutofocus(final boolean newAutofocus) {
465465
if (newAutofocus) {
466466
getDomNodeOrDie().setAttribute("autofocus", "");

0 commit comments

Comments
 (0)