aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/window.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2019-07-01 15:15:19 +0200
committerSimon Sapin <simon.sapin@exyr.org>2019-07-01 15:43:24 +0200
commitbddfe9a4684cf6ffa68fb283a222ce14242553c8 (patch)
tree03b9517e6b6b649b90c0ab877e3e3d8765365408 /components/script/dom/window.rs
parentd1efad676301798756c36990de8aa2784dab91db (diff)
downloadservo-bddfe9a4684cf6ffa68fb283a222ce14242553c8.tar.gz
servo-bddfe9a4684cf6ffa68fb283a222ce14242553c8.zip
Remove `default-except-unstable`
… and use remaining unstable features unconditionally. This doesn’t actually change the set of crates that can build on the Stable channel.
Diffstat (limited to 'components/script/dom/window.rs')
-rw-r--r--components/script/dom/window.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/components/script/dom/window.rs b/components/script/dom/window.rs
index a1afdc34a82..596fd711599 100644
--- a/components/script/dom/window.rs
+++ b/components/script/dom/window.rs
@@ -938,10 +938,7 @@ impl WindowMethods for Window {
#[allow(unsafe_code)]
fn Trap(&self) {
- #[cfg(feature = "unstable")]
- unsafe {
- ::std::intrinsics::breakpoint()
- }
+ unsafe { ::std::intrinsics::breakpoint() }
}
#[allow(unsafe_code)]