Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/gauntlet/imports/happy_dom.ts>HTMLTextAreaElement

Work-in-progress front-end tool which does put a smile on my face
Latest
class HTMLTextAreaElement
extends HTMLElement
Re-export
import { HTMLTextAreaElement } from "https://deno.land/x/gauntlet@v0.0.9/imports/happy_dom.ts";

Properties

_selectionDirection: HTMLInputElementSelectionDirectionEnum
_selectionEnd: any
_selectionStart: any
_value: any
autocomplete: string

Returns autocomplete.

autofocus: boolean

Returns autofocus.

cols: string

Returns cols.

defaultValue: string
disabled: boolean

Returns disabled.

readonly
form: IHTMLFormElement

Returns the parent form element.

inputmode: string

Returns inputmode.

maxLength: number

Returns maxlength.

minLength: number

Returns minlength.

name: string

Returns name.

placeholder: string

Returns placeholder.

readOnly: boolean

Returns readOnly.

required: boolean

Returns required.

rows: string

Returns rows.

selectionDirection: string

Returns selection direction.

selectionEnd: number

Returns selection end.

selectionStart: number

Returns selection start.

readonly
textLength: number

Returns text length.

readonly
type: string
value: string

Returns value.

Methods

checkValidity(): boolean

Checks validity.

Clones a node.

setRangeText(
replacement: string,
start?: number,
end?: number,
selectionMode?: HTMLInputElementSelectionModeEnum,
): void

Set range text.

setSelectionRange(
start: number,
end: number,
direction?: string,
): void

Set selection range.