Skip to content

Commit 5722fb3

Browse files
committed
Method isReadonly() removed from HtmlButton; because there is no readonly support for this control
1 parent d4b001d commit 5722fb3

2 files changed

Lines changed: 3 additions & 8 deletions

File tree

src/changes/changes.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88

99
<body>
1010
<release version="5.4.0" date="August xx, 2026" description="Firefox 153, Bugfixes">
11+
<action type="remove" dev="rbri">
12+
Method isReadonly() removed from HtmlButton; because there is no readonly support for this control.
13+
</action>
1114
<action type="update" dev="rbri">
1215
DisabledElement now implements Element and provides a default implementation of isDisabled().
1316
</action>

src/main/java/org/htmlunit/html/HtmlButton.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,6 @@ protected boolean doClickStateUpdate(final boolean shiftKey, final boolean ctrlK
104104
return false;
105105
}
106106

107-
/**
108-
* Returns {@code true} if this element is read only.
109-
* @return {@code true} if this element is read only
110-
*/
111-
public boolean isReadOnly() {
112-
return hasAttribute(ATTRIBUTE_READONLY);
113-
}
114-
115107
/**
116108
* {@inheritDoc}
117109
*/

0 commit comments

Comments
 (0)