Merge pull request #3468 from Manishearth/jstraceable

Replace our usage our Encodable with JSTraceable; r=jdm
This commit is contained in:
Manish Goregaokar 2014-09-24 21:25:41 +05:30
commit 95a4731c0e
135 changed files with 409 additions and 273 deletions

View file

@ -43,7 +43,7 @@ use std::ascii::StrAsciiExt;
use std::cell::{Cell, RefCell};
use std::mem;
#[deriving(Encodable)]
#[jstraceable]
#[must_root]
pub struct Element {
pub node: Node,
@ -71,7 +71,8 @@ impl Reflectable for Element {
}
}
#[deriving(PartialEq,Encodable)]
#[deriving(PartialEq)]
#[jstraceable]
pub enum ElementTypeId {
HTMLElementTypeId,
HTMLAnchorElementTypeId,