Remove Untraceable/Traceable from document.rs

This commit is contained in:
Manish Goregaokar 2014-09-29 03:55:07 +05:30
parent ad84dd7e47
commit 4f362ab5e6
3 changed files with 23 additions and 22 deletions

View file

@ -42,6 +42,7 @@ use std::collections::hashmap::HashMap;
use collections::hash::Hash;
use style::PropertyDeclarationBlock;
use std::comm::{Receiver, Sender};
use hubbub::hubbub::QuirksMode;
use string_cache::{Atom, Namespace};
impl<T: Reflectable> JSTraceable for JS<T> {
@ -231,6 +232,7 @@ untraceable!(PropertyDeclarationBlock)
// These three are interdependent, if you plan to put jsmanaged data
// in one of these make sure it is propagated properly to containing structs
untraceable!(SubpageId, WindowSizeData, PipelineId)
untraceable!(QuirksMode)
impl<'a> JSTraceable for &'a str {
#[inline]