We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 073e118 commit 05fa75dCopy full SHA for 05fa75d
src/browser/ui/dom/HTMLDOMPropertyConfig.js
@@ -176,7 +176,9 @@ var HTMLDOMPropertyConfig = {
176
autoCorrect: 'autocorrect',
177
autoFocus: 'autofocus',
178
autoPlay: 'autoplay',
179
- encType: 'enctype',
+ // `encoding` is equivalent to `enctype`, IE8 lacks an `enctype` setter.
180
+ // http://www.w3.org/TR/html5/forms.html#dom-fs-encoding
181
+ encType: 'encoding',
182
hrefLang: 'hreflang',
183
radioGroup: 'radiogroup',
184
spellCheck: 'spellcheck',
0 commit comments