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