forked from pool/MozillaThunderbird
35447776a4
* Attachment pane of Write window no longer focussed when attaching files using a keyboard shortcut MFSA 2019-15 (boo#1135824) * CVE-2019-9815 (bmo#1546544) Disable hyperthreading on content JavaScript threads on macOS * CVE-2019-9816 (bmo#1536768) Type confusion with object groups and UnboxedObjects * CVE-2019-9817 (bmo#1540221) Stealing of cross-domain images using canvas * CVE-2019-9818 (bmo#1542581) (Windows only) Use-after-free in crash generation server * CVE-2019-9819 (bmo#1532553) Compartment mismatch with fetch API * CVE-2019-9820 (bmo#1536405) Use-after-free of ChromeEventHandler by DocShell * CVE-2019-11691 (bmo#1542465) Use-after-free in XMLHttpRequest * CVE-2019-11692 (bmo#1544670) Use-after-free removing listeners in the event listener manager * CVE-2019-11693 (bmo#1532525) Buffer overflow in WebGL bufferdata on Linux * CVE-2019-7317 (bmo#1542829) Use-after-free in png_image_free of libpng library * CVE-2019-9797 (bmo#1528909) Cross-origin theft of images with createImageBitmap * CVE-2018-18511 (bmo#1526218) Cross-origin theft of images with ImageBitmapRenderingContext * CVE-2019-11694 (bmo#1534196) (Windows only) Uninitialized memory memory leakage in Windows sandbox OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaThunderbird?expand=0&rev=468
48 lines
1.5 KiB
Diff
48 lines
1.5 KiB
Diff
# HG changeset patch
|
|
# Parent ba0e794338a92e82d4b19e9fb012c848302b7dbd
|
|
|
|
diff --git a/servo/components/style/lib.rs b/servo/components/style/lib.rs
|
|
--- a/servo/components/style/lib.rs
|
|
+++ b/servo/components/style/lib.rs
|
|
@@ -18,17 +18,17 @@
|
|
//! [recalc_style_at]: traversal/fn.recalc_style_at.html
|
|
//!
|
|
//! Major dependencies are the [cssparser][cssparser] and [selectors][selectors]
|
|
//! crates.
|
|
//!
|
|
//! [cssparser]: ../cssparser/index.html
|
|
//! [selectors]: ../selectors/index.html
|
|
|
|
-#![deny(missing_docs)]
|
|
+//#![deny(missing_docs)]
|
|
|
|
extern crate app_units;
|
|
extern crate arrayvec;
|
|
extern crate atomic_refcell;
|
|
#[macro_use]
|
|
extern crate bitflags;
|
|
#[allow(unused_extern_crates)] extern crate byteorder;
|
|
#[cfg(feature = "gecko")] #[macro_use] #[no_link] extern crate cfg_if;
|
|
diff --git a/servo/components/style_traits/lib.rs b/servo/components/style_traits/lib.rs
|
|
--- a/servo/components/style_traits/lib.rs
|
|
+++ b/servo/components/style_traits/lib.rs
|
|
@@ -4,17 +4,17 @@
|
|
|
|
//! This module contains shared types and messages for use by devtools/script.
|
|
//! The traits are here instead of in script so that the devtools crate can be
|
|
//! modified independently of the rest of Servo.
|
|
|
|
#![crate_name = "style_traits"]
|
|
#![crate_type = "rlib"]
|
|
|
|
-#![deny(unsafe_code, missing_docs)]
|
|
+#![deny(unsafe_code)]
|
|
|
|
extern crate app_units;
|
|
#[macro_use] extern crate bitflags;
|
|
#[macro_use] extern crate cssparser;
|
|
extern crate euclid;
|
|
extern crate malloc_size_of;
|
|
#[macro_use] extern crate malloc_size_of_derive;
|
|
extern crate selectors;
|