Skip to content

Tag#isFormSubmittable() modifies options #2323

@szhou1998

Description

@szhou1998

/**
* 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

No one assigned

    Labels

    bugA confirmed bug, that we should fixfixedAn {bug|improvement} that has been {fixed|implemented}

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions