Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions fixtures/attribute-behavior/src/attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -1445,6 +1445,9 @@ const attributes = [
containerTagName: 'svg',
tagName: 'feSpotLight',
},
{name: 'popover'},
{name: 'popoverTarget', tagName: 'input'},
{name: 'popoverTargetAction', tagName: 'input'},
{
name: 'poster',
tagName: 'video',
Expand Down
2 changes: 2 additions & 0 deletions packages/react-dom-bindings/src/client/ReactDOMComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -709,6 +709,7 @@ function setProp(
case 'noValidate':
case 'open':
case 'playsInline':
case 'popover':
case 'readOnly':
case 'required':
case 'reversed':
Expand Down Expand Up @@ -2474,6 +2475,7 @@ function diffHydratedGenericElement(
case 'noValidate':
case 'open':
case 'playsInline':
case 'popover':
case 'readOnly':
case 'required':
case 'reversed':
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1178,6 +1178,7 @@ function pushAttribute(
case 'noValidate':
case 'open':
case 'playsInline':
case 'popover':
case 'readOnly':
case 'required':
case 'reversed':
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ function validateProperty(tagName, name, value, eventRegistry) {
case 'noValidate':
case 'open':
case 'playsInline':
case 'popover':
case 'readOnly':
case 'required':
case 'reversed':
Expand Down Expand Up @@ -305,6 +306,7 @@ function validateProperty(tagName, name, value, eventRegistry) {
case 'noValidate':
case 'open':
case 'playsInline':
case 'popover':
case 'readOnly':
case 'required':
case 'reversed':
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@ const possibleStandardNames = {
pattern: 'pattern',
placeholder: 'placeholder',
playsinline: 'playsInline',
popover: 'popover',
popovertarget: 'popoverTarget',
popovertargetaction: 'popoverTargetAction',
poster: 'poster',
preload: 'preload',
profile: 'profile',
Expand Down