ElementInternals: ariaMultiLine プロパティ

Baseline 2023

Newly available

Since October 2023, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.

ariaMultiLineElementInternals インターフェイスのプロパティで、 aria-multiline 属性の値を反映し、テキストボックスが複数行の入力を受け入れるか、単一の行のみを受け入れるかを示します。

メモ: ElementInternals に aria 属性を設定すると、カスタム要素に既定の意味づけを定義することができます。これらは作成者が定義した属性によって上書きされる可能性がありますが、作成者が属性を削除したり、まったく追加しなかった場合でも、確実に既定の意味づけを保持することができます。より詳しい情報は、 Accessibility Object Model explainer を参照してください。

以下のいずれかの値を持つ文字列です。

"true"

これは複数行テキストボックスです。

"false"

これは単一行テキストボックスです。

この例では、ariaMultiLineの値を "true" に設定しています。

js
this.internals_.ariaMultiLine = "true";

仕様書

Specification
Accessible Rich Internet Applications (WAI-ARIA)
# dom-ariamixin-ariamultiline

ブラウザーの互換性

BCD tables only load in the browser

関連情報