-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Labels
bugA confirmed bug, that we should fixA confirmed bug, that we should fixfixedAn {bug|improvement} that has been {fixed|implemented}An {bug|improvement} that has been {fixed|implemented}
Milestone
Description
jsoup/src/main/java/org/jsoup/parser/Tag.java
Lines 310 to 316 in 3ef2e6e
/** | |
* Get if this tag represents an element that should be submitted with a form. E.g. input, option | |
* @return if submittable with a form | |
*/ | |
public boolean isFormSubmittable() { | |
return (options &= FormSubmittable) != 0; | |
} |
Calling this method modifies the options
field.
Should be changed to return (options & FormSubmittable) != 0;
Metadata
Metadata
Assignees
Labels
bugA confirmed bug, that we should fixA confirmed bug, that we should fixfixedAn {bug|improvement} that has been {fixed|implemented}An {bug|improvement} that has been {fixed|implemented}