mirror of
https://github.com/servo/servo.git
synced 2025-06-08 08:33:26 +00:00
* Remove script_plugins * Use crown instead of script_plugins * crown_is_not_used * Use crown in command base * bootstrap crown * tidy happy * disable sccache * Bring crown in tree * Install crown from tree * fix windows ci * fix warning * fix mac libscript_plugins.dylib is not available anymore * Update components/script/lib.rs Co-authored-by: Martin Robinson <mrobinson@igalia.com> * Update for nightly-2023-03-18 Mostly just based off https://github.com/servo/servo/pull/30630 * Always install crown it's slow only when there is new version * Run crown test with `mach test-unit` * Small fixups; better trace_in_no_trace tests * Better doc * crown in config.toml * Fix tidy for real * no sccache on rustc_wrapper * document rustc overrides * fixup of compiletest * Make a few minor comment adjustments * Fix a typo in python/servo/platform/base.py Co-authored-by: Samson <16504129+sagudev@users.noreply.github.com> * Proper test types * Ignore tidy on crown/tests --------- Co-authored-by: Martin Robinson <mrobinson@igalia.com>
134 lines
4.5 KiB
Rust
134 lines
4.5 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
use dom_struct::dom_struct;
|
|
use servo_atoms::Atom;
|
|
|
|
use crate::dom::bindings::codegen::Bindings::HTMLInputElementBinding::HTMLInputElementMethods;
|
|
use crate::dom::bindings::codegen::Bindings::NodeListBinding::NodeListMethods;
|
|
use crate::dom::bindings::codegen::Bindings::RadioNodeListBinding::RadioNodeListMethods;
|
|
use crate::dom::bindings::inheritance::Castable;
|
|
use crate::dom::bindings::reflector::reflect_dom_object;
|
|
use crate::dom::bindings::root::DomRoot;
|
|
use crate::dom::bindings::str::DOMString;
|
|
use crate::dom::htmlformelement::HTMLFormElement;
|
|
use crate::dom::htmlinputelement::{HTMLInputElement, InputType};
|
|
use crate::dom::node::Node;
|
|
use crate::dom::nodelist::{NodeList, NodeListType, RadioList, RadioListMode};
|
|
use crate::dom::window::Window;
|
|
|
|
#[dom_struct]
|
|
pub struct RadioNodeList {
|
|
node_list: NodeList,
|
|
}
|
|
|
|
impl RadioNodeList {
|
|
#[allow(crown::unrooted_must_root)]
|
|
fn new_inherited(list_type: NodeListType) -> RadioNodeList {
|
|
RadioNodeList {
|
|
node_list: NodeList::new_inherited(list_type),
|
|
}
|
|
}
|
|
|
|
#[allow(crown::unrooted_must_root)]
|
|
pub fn new(window: &Window, list_type: NodeListType) -> DomRoot<RadioNodeList> {
|
|
reflect_dom_object(Box::new(RadioNodeList::new_inherited(list_type)), window)
|
|
}
|
|
|
|
pub fn new_controls_except_image_inputs(
|
|
window: &Window,
|
|
form: &HTMLFormElement,
|
|
name: &Atom,
|
|
) -> DomRoot<RadioNodeList> {
|
|
RadioNodeList::new(
|
|
window,
|
|
NodeListType::Radio(RadioList::new(
|
|
form,
|
|
RadioListMode::ControlsExceptImageInputs,
|
|
name.clone(),
|
|
)),
|
|
)
|
|
}
|
|
|
|
pub fn new_images(
|
|
window: &Window,
|
|
form: &HTMLFormElement,
|
|
name: &Atom,
|
|
) -> DomRoot<RadioNodeList> {
|
|
RadioNodeList::new(
|
|
window,
|
|
NodeListType::Radio(RadioList::new(form, RadioListMode::Images, name.clone())),
|
|
)
|
|
}
|
|
|
|
// https://dom.spec.whatwg.org/#dom-nodelist-length
|
|
// https://github.com/servo/servo/issues/5875
|
|
#[allow(non_snake_case)]
|
|
pub fn Length(&self) -> u32 {
|
|
self.node_list.Length()
|
|
}
|
|
}
|
|
|
|
impl RadioNodeListMethods for RadioNodeList {
|
|
// https://html.spec.whatwg.org/multipage/#dom-radionodelist-value
|
|
fn Value(&self) -> DOMString {
|
|
self.upcast::<NodeList>()
|
|
.iter()
|
|
.filter_map(|node| {
|
|
// Step 1
|
|
node.downcast::<HTMLInputElement>().and_then(|input| {
|
|
if input.input_type() == InputType::Radio && input.Checked() {
|
|
// Step 3-4
|
|
let value = input.Value();
|
|
Some(if value.is_empty() {
|
|
DOMString::from("on")
|
|
} else {
|
|
value
|
|
})
|
|
} else {
|
|
None
|
|
}
|
|
})
|
|
})
|
|
.next()
|
|
// Step 2
|
|
.unwrap_or(DOMString::from(""))
|
|
}
|
|
|
|
// https://html.spec.whatwg.org/multipage/#dom-radionodelist-value
|
|
fn SetValue(&self, value: DOMString) {
|
|
for node in self.upcast::<NodeList>().iter() {
|
|
// Step 1
|
|
if let Some(input) = node.downcast::<HTMLInputElement>() {
|
|
match input.input_type() {
|
|
InputType::Radio if value == DOMString::from("on") => {
|
|
// Step 2
|
|
let val = input.Value();
|
|
if val.is_empty() || val == value {
|
|
input.SetChecked(true);
|
|
return;
|
|
}
|
|
},
|
|
InputType::Radio => {
|
|
// Step 2
|
|
if input.Value() == value {
|
|
input.SetChecked(true);
|
|
return;
|
|
}
|
|
},
|
|
_ => {},
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// FIXME: This shouldn't need to be implemented here since NodeList (the parent of
|
|
// RadioNodeList) implements IndexedGetter.
|
|
// https://github.com/servo/servo/issues/5875
|
|
//
|
|
// https://dom.spec.whatwg.org/#dom-nodelist-item
|
|
fn IndexedGetter(&self, index: u32) -> Option<DomRoot<Node>> {
|
|
self.node_list.IndexedGetter(index)
|
|
}
|
|
}
|