diff options
-rw-r--r-- | Cargo.lock | 1 | ||||
-rw-r--r-- | components/script/Cargo.toml | 1 | ||||
-rw-r--r-- | components/script/dom/document.rs | 16 | ||||
-rw-r--r-- | components/script/lib.rs | 2 |
4 files changed, 19 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock index 8717bf9540d..671969a6429 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2249,6 +2249,7 @@ dependencies = [ "ipc-channel 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "js 0.1.4 (git+https://github.com/servo/rust-mozjs)", "jstraceable_derive 0.0.1", + "lazy_static 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", "mime 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/components/script/Cargo.toml b/components/script/Cargo.toml index cb4418b94df..de9456ec1e7 100644 --- a/components/script/Cargo.toml +++ b/components/script/Cargo.toml @@ -54,6 +54,7 @@ image = "0.12" ipc-channel = "0.7" js = {git = "https://github.com/servo/rust-mozjs", features = ["promises"]} jstraceable_derive = {path = "../jstraceable_derive"} +lazy_static = "0.2" libc = "0.2" log = "0.3.5" mime = "0.2.1" diff --git a/components/script/dom/document.rs b/components/script/dom/document.rs index fe1065104f4..8dd3cd17aec 100644 --- a/components/script/dom/document.rs +++ b/components/script/dom/document.rs @@ -2132,7 +2132,21 @@ impl Document { scripts: Default::default(), anchors: Default::default(), applets: Default::default(), - style_shared_lock: StyleSharedRwLock::new(), + style_shared_lock: { + lazy_static! { + /// Per-process shared lock for author-origin stylesheets + /// + /// FIXME: make it per-document or per-pipeline instead: + /// https://github.com/servo/servo/issues/16027 + /// (Need to figure out what to do with the style attribute + /// of elements adopted into another document.) + static ref PER_PROCESS_AUTHOR_SHARED_LOCK: StyleSharedRwLock = { + StyleSharedRwLock::new() + }; + } + PER_PROCESS_AUTHOR_SHARED_LOCK.clone() + //StyleSharedRwLock::new() + }, stylesheets: DOMRefCell::new(None), stylesheets_changed_since_reflow: Cell::new(false), stylesheet_list: MutNullableJS::new(None), diff --git a/components/script/lib.rs b/components/script/lib.rs index ade3543bbe8..2de2e37ea38 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -60,6 +60,8 @@ extern crate ipc_channel; extern crate js; #[macro_use] extern crate jstraceable_derive; +#[macro_use] +extern crate lazy_static; extern crate libc; #[macro_use] extern crate log; |