diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2017-01-11 14:13:15 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2017-01-11 17:37:19 +0100 |
commit | 30f0553ac744789705a3cf67ffce91f2ed5beb3e (patch) | |
tree | e92592e023b594110d6140988df0210d9e4e0e60 /components/script/lib.rs | |
parent | 965370c0bf2806c3f054345199e098bfb8a84b71 (diff) | |
download | servo-30f0553ac744789705a3cf67ffce91f2ed5beb3e.tar.gz servo-30f0553ac744789705a3cf67ffce91f2ed5beb3e.zip |
Introduce PendingScript
This moves scripts' loading results in Document, instead of maintaining them
behind a DOMRefCell in each HTMLScriptElement.
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 127194ebf65..f1fbe6f99c5 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -7,6 +7,7 @@ #![feature(const_fn)] #![feature(core_intrinsics)] #![feature(field_init_shorthand)] +#![feature(more_struct_aliases)] #![feature(mpsc_select)] #![feature(nonzero)] #![feature(on_unimplemented)] |