mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
Make some DOM members private.
I have not reviewed if this is the complete set of members that can be made private.
This commit is contained in:
parent
9f915e9e42
commit
bba9e58df1
19 changed files with 61 additions and 61 deletions
|
@ -25,10 +25,10 @@ pub enum FormDatum {
|
|||
|
||||
#[deriving(Encodable)]
|
||||
pub struct FormData {
|
||||
pub data: Traceable<RefCell<HashMap<DOMString, Vec<FormDatum>>>>,
|
||||
pub reflector_: Reflector,
|
||||
pub window: JS<Window>,
|
||||
pub form: Option<JS<HTMLFormElement>>
|
||||
data: Traceable<RefCell<HashMap<DOMString, Vec<FormDatum>>>>,
|
||||
reflector_: Reflector,
|
||||
window: JS<Window>,
|
||||
form: Option<JS<HTMLFormElement>>
|
||||
}
|
||||
|
||||
impl FormData {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue