mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Rename JS<T> to Dom<T>
This commit is contained in:
parent
0e3c54c191
commit
7be32fb237
96 changed files with 494 additions and 494 deletions
|
@ -15,7 +15,7 @@ use dom::bindings::codegen::Bindings::HTMLTextAreaElementBinding::HTMLTextAreaEl
|
|||
use dom::bindings::inheritance::{Castable, ElementTypeId, HTMLElementTypeId, NodeTypeId};
|
||||
use dom::bindings::refcounted::Trusted;
|
||||
use dom::bindings::reflector::DomObject;
|
||||
use dom::bindings::root::{JS, OnceCellJS, Root, RootedReference};
|
||||
use dom::bindings::root::{Dom, OnceCellJS, Root, RootedReference};
|
||||
use dom::bindings::str::DOMString;
|
||||
use dom::blob::Blob;
|
||||
use dom::document::Document;
|
||||
|
@ -66,7 +66,7 @@ pub struct HTMLFormElement {
|
|||
marked_for_reset: Cell<bool>,
|
||||
elements: OnceCellJS<HTMLFormControlsCollection>,
|
||||
generation_id: Cell<GenerationId>,
|
||||
controls: DOMRefCell<Vec<JS<Element>>>,
|
||||
controls: DOMRefCell<Vec<Dom<Element>>>,
|
||||
}
|
||||
|
||||
impl HTMLFormElement {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue