Whether the element is in RTL mode.
()
| 890 | |
| 891 | /** Whether the element is in RTL mode. */ |
| 892 | _isRtl(): boolean { |
| 893 | return this._dir ? this._dir.value === 'rtl' : false; |
| 894 | } |
| 895 | |
| 896 | /** Handles all keydown events on the select. */ |
| 897 | _handleKeydown(event: KeyboardEvent): void { |
no outgoing calls
no test coverage detected