diff options
Diffstat (limited to 'components/script/dom/attr.rs')
-rw-r--r-- | components/script/dom/attr.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/dom/attr.rs b/components/script/dom/attr.rs index 9c4b221f6f3..2ad3d60bbbd 100644 --- a/components/script/dom/attr.rs +++ b/components/script/dom/attr.rs @@ -27,7 +27,9 @@ use style::values::GenericAtomIdent; #[dom_struct] pub struct Attr { node_: Node, + #[no_trace] identifier: AttrIdentifier, + #[no_trace] value: DomRefCell<AttrValue>, /// the element that owns this attribute. |