mirror of
https://github.com/servo/servo.git
synced 2025-08-04 05:00:08 +01:00
parent
c9ba16f9fb
commit
0148e9705b
9 changed files with 53 additions and 232 deletions
|
@ -417,6 +417,31 @@ impl TextControl for HTMLInputElement {
|
||||||
_ => false
|
_ => false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://html.spec.whatwg.org/multipage/#concept-input-apply
|
||||||
|
//
|
||||||
|
// Defines input types to which the select() IDL method applies. These are a superset of the
|
||||||
|
// types for which selection_api_applies() returns true.
|
||||||
|
//
|
||||||
|
// Types omitted which could theoretically be included if they were
|
||||||
|
// rendered as a text control: file
|
||||||
|
fn has_selectable_text(&self) -> bool {
|
||||||
|
match self.input_type() {
|
||||||
|
InputType::Text | InputType::Search | InputType::Url
|
||||||
|
| InputType::Tel | InputType::Password | InputType::Email
|
||||||
|
| InputType::Date | InputType::Month | InputType::Week
|
||||||
|
| InputType::Time | InputType::DatetimeLocal | InputType::Number
|
||||||
|
| InputType::Color => {
|
||||||
|
true
|
||||||
|
}
|
||||||
|
|
||||||
|
InputType::Button | InputType::Checkbox | InputType::File
|
||||||
|
| InputType::Hidden | InputType::Image | InputType::Radio
|
||||||
|
| InputType::Range | InputType::Reset | InputType::Submit => {
|
||||||
|
false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl HTMLInputElementMethods for HTMLInputElement {
|
impl HTMLInputElementMethods for HTMLInputElement {
|
||||||
|
@ -687,6 +712,11 @@ impl HTMLInputElementMethods for HTMLInputElement {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://html.spec.whatwg.org/multipage/#dom-textarea/input-select
|
||||||
|
fn Select(&self) {
|
||||||
|
self.dom_select(); // defined in TextControl trait
|
||||||
|
}
|
||||||
|
|
||||||
// https://html.spec.whatwg.org/multipage/#dom-textarea/input-selectionstart
|
// https://html.spec.whatwg.org/multipage/#dom-textarea/input-selectionstart
|
||||||
fn GetSelectionStart(&self) -> Option<u32> {
|
fn GetSelectionStart(&self) -> Option<u32> {
|
||||||
self.get_dom_selection_start()
|
self.get_dom_selection_start()
|
||||||
|
|
|
@ -152,6 +152,10 @@ impl TextControl for HTMLTextAreaElement {
|
||||||
fn selection_api_applies(&self) -> bool {
|
fn selection_api_applies(&self) -> bool {
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn has_selectable_text(&self) -> bool {
|
||||||
|
true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl HTMLTextAreaElementMethods for HTMLTextAreaElement {
|
impl HTMLTextAreaElementMethods for HTMLTextAreaElement {
|
||||||
|
@ -266,6 +270,11 @@ impl HTMLTextAreaElementMethods for HTMLTextAreaElement {
|
||||||
self.upcast::<HTMLElement>().labels()
|
self.upcast::<HTMLElement>().labels()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://html.spec.whatwg.org/multipage/#dom-textarea/input-select
|
||||||
|
fn Select(&self) {
|
||||||
|
self.dom_select(); // defined in TextControl trait
|
||||||
|
}
|
||||||
|
|
||||||
// https://html.spec.whatwg.org/multipage/#dom-textarea/input-selectionstart
|
// https://html.spec.whatwg.org/multipage/#dom-textarea/input-selectionstart
|
||||||
fn GetSelectionStart(&self) -> Option<u32> {
|
fn GetSelectionStart(&self) -> Option<u32> {
|
||||||
self.get_dom_selection_start()
|
self.get_dom_selection_start()
|
||||||
|
|
|
@ -15,6 +15,18 @@ use textinput::{SelectionDirection, TextInput};
|
||||||
pub trait TextControl: DerivedFrom<EventTarget> + DerivedFrom<Node> {
|
pub trait TextControl: DerivedFrom<EventTarget> + DerivedFrom<Node> {
|
||||||
fn textinput(&self) -> &DomRefCell<TextInput<ScriptToConstellationChan>>;
|
fn textinput(&self) -> &DomRefCell<TextInput<ScriptToConstellationChan>>;
|
||||||
fn selection_api_applies(&self) -> bool;
|
fn selection_api_applies(&self) -> bool;
|
||||||
|
fn has_selectable_text(&self) -> bool;
|
||||||
|
|
||||||
|
// https://html.spec.whatwg.org/multipage/#dom-textarea/input-select
|
||||||
|
fn dom_select(&self) {
|
||||||
|
// Step 1
|
||||||
|
if !self.has_selectable_text() {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Step 2
|
||||||
|
self.set_selection_range(Some(0), Some(u32::max_value()), None);
|
||||||
|
}
|
||||||
|
|
||||||
// https://html.spec.whatwg.org/multipage/#dom-textarea/input-selectionstart
|
// https://html.spec.whatwg.org/multipage/#dom-textarea/input-selectionstart
|
||||||
fn get_dom_selection_start(&self) -> Option<u32> {
|
fn get_dom_selection_start(&self) -> Option<u32> {
|
||||||
|
|
|
@ -89,7 +89,7 @@ interface HTMLInputElement : HTMLElement {
|
||||||
|
|
||||||
readonly attribute NodeList labels;
|
readonly attribute NodeList labels;
|
||||||
|
|
||||||
//void select();
|
void select();
|
||||||
[SetterThrows]
|
[SetterThrows]
|
||||||
attribute unsigned long? selectionStart;
|
attribute unsigned long? selectionStart;
|
||||||
[SetterThrows]
|
[SetterThrows]
|
||||||
|
|
|
@ -50,7 +50,7 @@ interface HTMLTextAreaElement : HTMLElement {
|
||||||
|
|
||||||
readonly attribute NodeList labels;
|
readonly attribute NodeList labels;
|
||||||
|
|
||||||
// void select();
|
void select();
|
||||||
[SetterThrows]
|
[SetterThrows]
|
||||||
attribute unsigned long? selectionStart;
|
attribute unsigned long? selectionStart;
|
||||||
[SetterThrows]
|
[SetterThrows]
|
||||||
|
|
|
@ -3090,9 +3090,6 @@
|
||||||
[HTMLInputElement interface: operation setCustomValidity(DOMString)]
|
[HTMLInputElement interface: operation setCustomValidity(DOMString)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: operation select()]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: operation setRangeText(DOMString)]
|
[HTMLInputElement interface: operation setRangeText(DOMString)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -3342,9 +3339,6 @@
|
||||||
[HTMLTextAreaElement interface: operation setCustomValidity(DOMString)]
|
[HTMLTextAreaElement interface: operation setCustomValidity(DOMString)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLTextAreaElement interface: operation select()]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLTextAreaElement interface: operation setRangeText(DOMString)]
|
[HTMLTextAreaElement interface: operation setRangeText(DOMString)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -11787,9 +11781,6 @@
|
||||||
[HTMLInputElement interface: document.createElement("input") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: document.createElement("input") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: document.createElement("input") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: document.createElement("input") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: document.createElement("input") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -11853,9 +11844,6 @@
|
||||||
[HTMLInputElement interface: createInput("text") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("text") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("text") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("text") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("text") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -11919,9 +11907,6 @@
|
||||||
[HTMLInputElement interface: createInput("hidden") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("hidden") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("hidden") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("hidden") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("hidden") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -11985,9 +11970,6 @@
|
||||||
[HTMLInputElement interface: createInput("search") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("search") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("search") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("search") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("search") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -12051,9 +12033,6 @@
|
||||||
[HTMLInputElement interface: createInput("tel") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("tel") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("tel") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("tel") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("tel") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -12117,9 +12096,6 @@
|
||||||
[HTMLInputElement interface: createInput("url") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("url") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("url") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("url") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("url") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -12183,9 +12159,6 @@
|
||||||
[HTMLInputElement interface: createInput("email") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("email") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("email") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("email") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("email") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -12249,9 +12222,6 @@
|
||||||
[HTMLInputElement interface: createInput("password") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("password") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("password") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("password") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("password") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -12315,9 +12285,6 @@
|
||||||
[HTMLInputElement interface: createInput("date") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("date") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("date") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("date") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("date") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -12381,9 +12348,6 @@
|
||||||
[HTMLInputElement interface: createInput("month") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("month") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("month") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("month") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("month") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -12447,9 +12411,6 @@
|
||||||
[HTMLInputElement interface: createInput("week") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("week") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("week") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("week") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("week") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -12513,9 +12474,6 @@
|
||||||
[HTMLInputElement interface: createInput("time") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("time") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("time") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("time") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("time") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -12579,9 +12537,6 @@
|
||||||
[HTMLInputElement interface: createInput("datetime-local") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("datetime-local") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("datetime-local") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("datetime-local") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("datetime-local") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -12645,9 +12600,6 @@
|
||||||
[HTMLInputElement interface: createInput("number") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("number") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("number") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("number") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("number") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -12711,9 +12663,6 @@
|
||||||
[HTMLInputElement interface: createInput("range") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("range") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("range") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("range") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("range") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -12777,9 +12726,6 @@
|
||||||
[HTMLInputElement interface: createInput("color") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("color") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("color") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("color") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("color") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -12843,9 +12789,6 @@
|
||||||
[HTMLInputElement interface: createInput("checkbox") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("checkbox") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("checkbox") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("checkbox") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("checkbox") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -12909,9 +12852,6 @@
|
||||||
[HTMLInputElement interface: createInput("radio") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("radio") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("radio") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("radio") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("radio") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -12978,9 +12918,6 @@
|
||||||
[HTMLInputElement interface: createInput("file") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("file") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("file") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("file") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("file") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -13044,9 +12981,6 @@
|
||||||
[HTMLInputElement interface: createInput("submit") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("submit") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("submit") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("submit") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("submit") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -13110,9 +13044,6 @@
|
||||||
[HTMLInputElement interface: createInput("image") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("image") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("image") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("image") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("image") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -13176,9 +13107,6 @@
|
||||||
[HTMLInputElement interface: createInput("reset") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("reset") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("reset") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("reset") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("reset") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -13242,9 +13170,6 @@
|
||||||
[HTMLInputElement interface: createInput("button") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("button") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("button") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLInputElement interface: createInput("button") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLInputElement interface: createInput("button") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -13377,9 +13302,6 @@
|
||||||
[HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
[HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "setCustomValidity(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "select()" with the proper type]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "setRangeText(DOMString)" with the proper type]
|
[HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "setRangeText(DOMString)" with the proper type]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
[select-event.html]
|
[select-event.html]
|
||||||
type: testharness
|
type: testharness
|
||||||
[textarea: select()]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[textarea: select() a second time (must not fire select)]
|
[textarea: select() a second time (must not fire select)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -24,9 +21,6 @@
|
||||||
[textarea: setRangeText() a second time (must not fire select)]
|
[textarea: setRangeText() a second time (must not fire select)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[input type text: select()]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type text: select() a second time (must not fire select)]
|
[input type text: select() a second time (must not fire select)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -48,9 +42,6 @@
|
||||||
[input type text: setRangeText() a second time (must not fire select)]
|
[input type text: setRangeText() a second time (must not fire select)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[input type search: select()]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type search: select() a second time (must not fire select)]
|
[input type search: select() a second time (must not fire select)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -72,9 +63,6 @@
|
||||||
[input type search: setRangeText() a second time (must not fire select)]
|
[input type search: setRangeText() a second time (must not fire select)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[input type tel: select()]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type tel: select() a second time (must not fire select)]
|
[input type tel: select() a second time (must not fire select)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -96,9 +84,6 @@
|
||||||
[input type tel: setRangeText() a second time (must not fire select)]
|
[input type tel: setRangeText() a second time (must not fire select)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[input type url: select()]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type url: select() a second time (must not fire select)]
|
[input type url: select() a second time (must not fire select)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -120,9 +105,6 @@
|
||||||
[input type url: setRangeText() a second time (must not fire select)]
|
[input type url: setRangeText() a second time (must not fire select)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[input type password: select()]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type password: select() a second time (must not fire select)]
|
[input type password: select() a second time (must not fire select)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
|
|
@ -1,44 +0,0 @@
|
||||||
[selection.html]
|
|
||||||
type: testharness
|
|
||||||
[test if selection text is correct for input]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[test if selection text is correct for textarea]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[test if non-ascii selection text is correct for input]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[test if non-ascii selection text is correct for textarea]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[test SelectionStart offset for input]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[test SelectionStart offset for textarea]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[test SelectionEnd offset for input]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[test SelectionEnd offset for textarea]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[test SelectionDirection for input]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[test SelectionDirection for textarea]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[test SelectionStart offset for input that is appended]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[test SelectionStart offset for textarea that is appended]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[test SelectionEnd offset for input that is appended]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[test SelectionEnd offset for textarea that is appended]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,71 +1,5 @@
|
||||||
[selection.html]
|
[selection.html]
|
||||||
type: testharness
|
type: testharness
|
||||||
[input type text should support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type search should support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type url should support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type tel should support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type email should support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type password should support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type date should support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type month should support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type week should support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type time should support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type datetime-local should support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type number should support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type color should support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type file should support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type hidden should not support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type range should not support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type checkbox should not support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type radio should not support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type submit should not support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type image should not support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type reset should not support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type button should not support the select() method]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type text should support all selection attributes and methods]
|
[input type text should support all selection attributes and methods]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -132,27 +66,3 @@
|
||||||
[input type button should not support variable-length selections]
|
[input type button should not support variable-length selections]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[input type hidden should do nothing when the select() method is called (but, not throw)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type range should do nothing when the select() method is called (but, not throw)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type checkbox should do nothing when the select() method is called (but, not throw)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type radio should do nothing when the select() method is called (but, not throw)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type submit should do nothing when the select() method is called (but, not throw)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type image should do nothing when the select() method is called (but, not throw)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type reset should do nothing when the select() method is called (but, not throw)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[input type button should do nothing when the select() method is called (but, not throw)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue