Skip to content

Commit

Permalink
Fix missing XHTML rendering of 'multiple' attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
BalusC committed Mar 27, 2021
1 parent 7c8f244 commit 9e28e8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public class RenderKitUtils {
* <p>
* <code>Boolean</code> attributes to be rendered using <code>XHMTL</code> semantics.
*/
private static final String[] BOOLEAN_ATTRIBUTES = { "disabled", "ismap", "readonly" };
private static final String[] BOOLEAN_ATTRIBUTES = { "disabled", "ismap", "readonly", "multiple" };

/**
* <p>
Expand Down

0 comments on commit 9e28e8a

Please sign in to comment.