We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c628103 commit 79e2468Copy full SHA for 79e2468
src/platforms/web/util/attrs.js
@@ -17,10 +17,12 @@ export const mustUseProp = (tag: string, type: ?string, attr: string): boolean =
17
)
18
}
19
20
-export const isEnumeratedAttr = makeMap('contenteditable,draggable,spellcheck')
+export const isEnumeratedAttr = makeMap(
21
+ 'allowfullscreen,contenteditable,draggable,spellcheck'
22
+)
23
24
export const isBooleanAttr = makeMap(
- 'allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,' +
25
+ 'async,autofocus,autoplay,checked,compact,controls,declare,' +
26
'default,defaultchecked,defaultmuted,defaultselected,defer,disabled,' +
27
'enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,' +
28
'muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,' +
0 commit comments