Skip to content

Commit 1df466b

Browse files
committed
Merge pull request facebook#3967 from jamischarles/master
Added challenge, keyParams and keyType on <keygen>
2 parents 7491580 + dc01c0e commit 1df466b

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

docs/docs/ref-04-tags-and-attributes.ko-KR.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ React는 모든 `data-*`, `aria-*` 어트리뷰트와 밑에 있는 모든 어
5353

5454
```
5555
accept acceptCharset accessKey action allowFullScreen allowTransparency alt
56-
async autoComplete autoFocus autoPlay cellPadding cellSpacing charSet checked
57-
classID className colSpan cols content contentEditable contextMenu controls
56+
async autoComplete autoFocus autoPlay cellPadding cellSpacing charSet challenge
57+
checked classID className colSpan cols content contentEditable contextMenu controls
5858
coords crossOrigin data dateTime defer dir disabled download draggable encType
5959
form formAction formEncType formMethod formNoValidate formTarget frameBorder
60-
headers height hidden high href hrefLang htmlFor httpEquiv icon id label lang
61-
list loop low manifest marginHeight marginWidth max maxLength media mediaGroup
62-
method min multiple muted name noValidate open optimum pattern placeholder
60+
headers height hidden high href hrefLang htmlFor httpEquiv icon id keyParams keyType
61+
label lang list loop low manifest marginHeight marginWidth max maxLength media
62+
mediaGroup method min multiple muted name noValidate open optimum pattern placeholder
6363
poster preload radioGroup readOnly rel required role rowSpan rows sandbox scope
6464
scoped scrolling seamless selected shape size sizes span spellCheck src srcDoc
6565
srcSet start step style tabIndex target title type useMap value width wmode

docs/docs/ref-04-tags-and-attributes.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ These standard attributes are supported:
5353

5454
```
5555
accept acceptCharset accessKey action allowFullScreen allowTransparency alt
56-
async autoComplete autoFocus autoPlay cellPadding cellSpacing charSet checked
57-
classID className colSpan cols content contentEditable contextMenu controls
56+
async autoComplete autoFocus autoPlay cellPadding cellSpacing charSet challenge
57+
checked classID className colSpan cols content contentEditable contextMenu controls
5858
coords crossOrigin data dateTime defer dir disabled download draggable encType
5959
form formAction formEncType formMethod formNoValidate formTarget frameBorder
60-
headers height hidden high href hrefLang htmlFor httpEquiv icon id label lang
61-
list loop low manifest marginHeight marginWidth max maxLength media mediaGroup
62-
method min multiple muted name noValidate open optimum pattern placeholder
60+
headers height hidden high href hrefLang htmlFor httpEquiv icon id keyParams keyType
61+
label lang list loop low manifest marginHeight marginWidth max maxLength media
62+
mediaGroup method min multiple muted name noValidate open optimum pattern placeholder
6363
poster preload radioGroup readOnly rel required role rowSpan rows sandbox scope
6464
scoped scrolling seamless selected shape size sizes span spellCheck src srcDoc
6565
srcSet start step style tabIndex target title type useMap value width wmode

src/renderers/dom/shared/HTMLDOMPropertyConfig.js

+3
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ var HTMLDOMPropertyConfig = {
6161
cellPadding: null,
6262
cellSpacing: null,
6363
charSet: MUST_USE_ATTRIBUTE,
64+
challenge: MUST_USE_ATTRIBUTE,
6465
checked: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,
6566
classID: MUST_USE_ATTRIBUTE,
6667
// To set className on SVG elements, it's necessary to use .setAttribute;
@@ -102,6 +103,8 @@ var HTMLDOMPropertyConfig = {
102103
httpEquiv: null,
103104
icon: null,
104105
id: MUST_USE_PROPERTY,
106+
keyParams: MUST_USE_ATTRIBUTE,
107+
keyType: MUST_USE_ATTRIBUTE,
105108
label: null,
106109
lang: null,
107110
list: MUST_USE_ATTRIBUTE,

0 commit comments

Comments
 (0)