diff --git a/src/component/base/DraftEditor.react.js b/src/component/base/DraftEditor.react.js index 2b821e8e52..1a84b26553 100644 --- a/src/component/base/DraftEditor.react.js +++ b/src/component/base/DraftEditor.react.js @@ -245,6 +245,7 @@ class DraftEditor extends React.Component { aria-expanded={readOnly ? null : this.props.ariaExpanded} aria-haspopup={readOnly ? null : this.props.ariaHasPopup} aria-label={this.props.ariaLabel} + aria-multiline={this.props.ariaMultiline} aria-owns={readOnly ? null : this.props.ariaOwneeID} autoCapitalize={this.props.autoCapitalize} autoComplete={this.props.autoComplete} diff --git a/src/component/base/DraftEditorProps.js b/src/component/base/DraftEditorProps.js index b7e5825c10..8fa057944a 100644 --- a/src/component/base/DraftEditorProps.js +++ b/src/component/base/DraftEditorProps.js @@ -96,6 +96,7 @@ export type DraftEditorProps = { ariaExpanded?: boolean, ariaHasPopup?: boolean, ariaLabel?: string, + ariaMultiline?: boolean, ariaOwneeID?: string, webDriverTestID?: string,