commit_hash stringlengths 40 40 | author stringlengths 1 57 | date timestamp[s]date 2010-07-26 04:45:09 2026-04-14 18:21:10 | message stringlengths 8 1.39M | diff stringlengths 68 51.2k | files_changed int64 1 136 | insertions int64 0 2.35k | deletions int64 0 1.9k |
|---|---|---|---|---|---|---|---|
ada5939604dda7db7c9ccd343cb9f84a270a8d1d | Anthony Ramine | 2016-06-07T08:50:18 | servo: Merge #11565 - Introduce FontFaceRules::effective_sources() (from nox:fonts); r=metajack
Source-Repo: https://github.com/servo/servo
Source-Revision: b64b21ace0e9b3639906c9dc988c66ea596f3d88 | diff --git a/layout/layout_thread.rs b/layout/layout_thread.rs
index b48813a0c..6307e5a79 100644
--- a/layout/layout_thread.rs
+++ b/layout/layout_thread.rs
@@ -355,19 +355,23 @@ fn add_font_face_rules(stylesheet: &Stylesheet,
font_cache_thread: &FontCacheThread,
font_cac... | 2 | 45 | 9 |
a0d13e8683160597f4d2806cb8ea364f0598b11c | Anthony Ramine | 2016-06-07T04:44:16 | servo: Merge #11572 - Implement :placeholder-shown (fixes #10561) (from nox:placeholder-shown); r=SimonSapin
Source-Repo: https://github.com/servo/servo
Source-Revision: 0f1f99a4bf3be2f695b402e8676c3b0b935cbc5b | diff --git a/layout/wrapper.rs b/layout/wrapper.rs
index 24c78f190..10dde4b2f 100644
--- a/layout/wrapper.rs
+++ b/layout/wrapper.rs
@@ -561,7 +561,8 @@ impl<'le> ::selectors::Element for ServoLayoutElement<'le> {
NonTSPseudoClass::Disabled |
NonTSPseudoClass::Checked |
NonTSPseud... | 6 | 51 | 11 |
5114d398d79a7b85deece39bbbfb26823aba49e1 | Orvar Segerström | 2016-06-06T16:54:38 | servo: Merge #11639 - Use base_url instead of url in HTMLAnchorElement::set_url (from awestroke:anchor-element-base-url); r=nox
<!-- Please describe your changes on the following line: -->
`script::dom::HTMLAnchorElement::set_url` now uses `document::base_url` instead of `document::url`, allowing correct parsing of re... | diff --git a/script/dom/htmlanchorelement.rs b/script/dom/htmlanchorelement.rs
index c69e61cae..4fb575dd1 100644
--- a/script/dom/htmlanchorelement.rs
+++ b/script/dom/htmlanchorelement.rs
@@ -64,7 +64,7 @@ impl HTMLAnchorElement {
let attribute = self.upcast::<Element>().get_attribute(&ns!(), &atom!("href"));... | 1 | 1 | 1 |
626d5c167e438a8acea40617a49d601b7ff1ec4b | Ms2ger | 2016-06-06T13:18:05 | servo: Merge #11641 - Correct the signature of flow_ref::deref_mut (from Ms2ger:flow-deref-mut-lifetime); r=nox
This also fixes Undefined Behavior in build_display_list_for_subtree.
Source-Repo: https://github.com/servo/servo
Source-Revision: a316fb73e5fb1b086516ba6786c5ae4c302c3c62 | diff --git a/layout/flow_ref.rs b/layout/flow_ref.rs
index b2dcc5c34..d1717ef20 100644
--- a/layout/flow_ref.rs
+++ b/layout/flow_ref.rs
@@ -20,7 +20,7 @@ pub type WeakFlowRef = Weak<Flow>;
/// See https://github.com/servo/servo/issues/6503
/// Use Arc::get_mut instead when possible (e.g. on an Arc that was just crea... | 2 | 2 | 2 |
0b7a143dca18061435f3228893a58422f63028c3 | Ms2ger | 2016-06-06T11:50:16 | servo: Merge #11635 - Use collect() for more idiomatic code in bluetooth (from Ms2ger:collect); r=nox
Source-Repo: https://github.com/servo/servo
Source-Revision: 2e6711aa5fbf7ddcfad783c268010c293925e675 | diff --git a/net_traits/bluetooth_scanfilter.rs b/net_traits/bluetooth_scanfilter.rs
index ae51ad671..2dd7f14d7 100644
--- a/net_traits/bluetooth_scanfilter.rs
+++ b/net_traits/bluetooth_scanfilter.rs
@@ -19,11 +19,7 @@ impl ServiceUUIDSequence {
}
fn get_services_set(&self) -> HashSet<String> {
- le... | 1 | 2 | 10 |
69424a3d1ba0079c9a159b9b9e224f47a7e6c228 | Ms2ger | 2016-06-06T07:16:07 | servo: Merge #11623 - Move some code out of util::str (from Ms2ger:str); r=nox
Source-Repo: https://github.com/servo/servo
Source-Revision: 9a4460bed101655e55c18be051ead955a70ea3ce | diff --git a/gfx/font_cache_thread.rs b/gfx/font_cache_thread.rs
index a43490036..2a1a1e776 100644
--- a/gfx/font_cache_thread.rs
+++ b/gfx/font_cache_thread.rs
@@ -17,6 +17,7 @@ use platform::font_template::FontTemplateData;
use std::borrow::ToOwned;
use std::collections::HashMap;
use std::mem;
+use std::ops::Deref... | 10 | 40 | 43 |
106942fa3855f69b981a2b62f01e77238fe60a2e | Josh Matthews | 2016-06-06T02:19:22 | servo: Merge #11593 - Make the net monitor panel in FF's devtools show meaningful output (from jdm:netmon); r=nox
<!-- Please describe your changes on the following line: -->
1. Advertise support for the network monitor in the initial protocol communication.
1. Only notify the developer tools server about the final re... | diff --git a/devtools/actors/network_event.rs b/devtools/actors/network_event.rs
index a6282b719..38f7d5767 100644
--- a/devtools/actors/network_event.rs
+++ b/devtools/actors/network_event.rs
@@ -27,7 +27,10 @@ struct HttpRequest {
method: Method,
headers: Headers,
body: Option<Vec<u8>>,
- startedDat... | 10 | 237 | 143 |
0c5a0149fdafdf9b08ad8d7e1c9052321324bd3c | zakorgy | 2016-06-05T13:00:50 | servo: Merge #11580 - Allowed services support (from szeged:allowedservices); r=jdm
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [X] `./mach build -... | diff --git a/net/bluetooth_thread.rs b/net/bluetooth_thread.rs
index 6ff713a9a..f25da702f 100644
--- a/net/bluetooth_thread.rs
+++ b/net/bluetooth_thread.rs
@@ -16,7 +16,7 @@ use net_traits::bluetooth_thread::{BluetoothDeviceMsg, BluetoothMethodMsg};
use net_traits::bluetooth_thread::{BluetoothResult, BluetoothService... | 2 | 41 | 3 |
3ada8b4bdc14c6470676dc33d283a0c387ea901f | Ms2ger | 2016-06-05T11:57:18 | servo: Merge #11619 - Some cleanup in gfx (from Ms2ger:freetype); r=nox
Source-Repo: https://github.com/servo/servo
Source-Revision: d768ee5d4c2ef0429e88191f01f977338c964359 | diff --git a/gfx/lib.rs b/gfx/lib.rs
index e3f3f1d43..58c92f304 100644
--- a/gfx/lib.rs
+++ b/gfx/lib.rs
@@ -104,8 +104,7 @@ pub mod paint_thread;
// Platform-specific implementations.
#[allow(unsafe_code)]
-pub mod platform;
+mod platform;
// Text
-#[allow(unsafe_code)]
pub mod text;
diff --git a/gfx/platform/... | 8 | 22 | 27 |
9ab0460f191cb8fbf2284b945bcb9d00dd4c33ea | Ms2ger | 2016-06-04T23:29:21 | servo: Merge #11614 - Deny unsafe code in some more modules (from Ms2ger:deny-unsafe); r=nox
Source-Repo: https://github.com/servo/servo
Source-Revision: a4650233f0ab960b3ed284733bf057267fcf4b6b | diff --git a/net_traits/hosts.rs b/net_traits/hosts.rs
index dc06d9452..b03bf1610 100644
--- a/net_traits/hosts.rs
+++ b/net_traits/hosts.rs
@@ -2,8 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-#![allow(unsafe_code)]
-... | 3 | 0 | 7 |
4a3df04f8ae8d23cd92d8be24a5d99fa17b56233 | Matt Brubeck | 2016-06-04T21:53:53 | servo: Merge #11590 - Remove unused dev-dependency on image (from mbrubeck:cleanup); r=jdm
This was used by Servo's old reftest harness, which was replaced with WPT.
Source-Repo: https://github.com/servo/servo
Source-Revision: 57cd0aabefdd51fe6cd3cd55ec432bcd76186627 | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index 6a5cfa859..55e0e8570 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -18,7 +18,6 @@ dependencies = [
"gfx_tests 0.0.1",
"gleam 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
"glutin_app 0.0.1",
- "image 0.10.0 (registry+https://githu... | 2 | 0 | 2 |
965a9e42478086f86c5fb00d891ffa4ad27576bd | Mitchell Hentges | 2016-06-04T21:03:59 | servo: Merge #11442 - Fragment debug_id u16 only exists in debug, prod will format mem address (from mitchhentges:87-debug-id); r=KiChjang
<!-- Please describe your changes on the following line: -->
Each fragment has a `u16` `debug_id` in debug mode, but no `debug_id` in production to save memory. To format a debug i... | diff --git a/layout/fragment.rs b/layout/fragment.rs
index 1de7a6ee8..705868a5a 100644
--- a/layout/fragment.rs
+++ b/layout/fragment.rs
@@ -22,6 +22,7 @@ use incremental::{RECONSTRUCT_FLOW, RestyleDamage};
use inline::{FIRST_FRAGMENT_OF_ELEMENT, InlineFragmentContext, InlineFragmentNodeInfo};
use inline::{InlineMetr... | 2 | 62 | 12 |
e397d5a3cbd0b0f0983145e8408010f9a8df76a3 | Ms2ger | 2016-06-04T19:24:56 | servo: Merge #11607 - Remove the layout and paint shutdown channels (from Ms2ger:shutdown-channels); r=asajeffrey
Source-Repo: https://github.com/servo/servo
Source-Revision: 80a58cadc5f864bfb44671e2e7228d7c6cdf4ab4 | diff --git a/constellation/pipeline.rs b/constellation/pipeline.rs
index 7718eb760..0d92cf8ba 100644
--- a/constellation/pipeline.rs
+++ b/constellation/pipeline.rs
@@ -55,8 +55,6 @@ pub struct Pipeline {
/// A channel to the compositor.
pub compositor_proxy: Box<CompositorProxy + 'static + Send>,
pub ch... | 7 | 29 | 63 |
ee851bf530100e1a1418103c9eaf4c744ac08076 | Rafael Quintero | 2016-06-04T14:22:34 | servo: Merge #11605 - Rename the variants of the SubmittedFrom and ResetFrom enums to be less repetitive (from rafaqtro:local_r); r=KiChjang,emilio
<!-- Please describe your changes on the following line: -->
delete suffixes for variants SubmittedFrom, ResetFrom
---
<!-- Thank you for contributing to Servo! Please r... | diff --git a/script/dom/htmlbuttonelement.rs b/script/dom/htmlbuttonelement.rs
index e15d559ce..23b9b79cc 100644
--- a/script/dom/htmlbuttonelement.rs
+++ b/script/dom/htmlbuttonelement.rs
@@ -266,14 +266,14 @@ impl Activatable for HTMLButtonElement {
ButtonType::Submit => {
// TODO: is do... | 3 | 13 | 13 |
11374696448bd10c7af71d6cd2740afd9216bfb7 | Alan Jeffrey | 2016-06-04T03:22:49 | servo: Merge #11585 - Avoid deadlock when closing a pipeline (from asajeffrey:constellation-avoid-deadlock-during-pipeline-closure); r=larsbergstrom
<!-- Please describe your changes on the following line: -->
At the moment, the constellation blocks on a pipeline during closure. This PR makes pipeline closure asynchro... | diff --git a/constellation/constellation.rs b/constellation/constellation.rs
index 6af31b0f0..c1cee272d 100644
--- a/constellation/constellation.rs
+++ b/constellation/constellation.rs
@@ -180,6 +180,9 @@ pub struct Constellation<Message, LTF, STF> {
// Webrender interface, if enabled.
webrender_api_sender: O... | 5 | 57 | 26 |
6597c2861a0a037793286dce9b1985767019e391 | Matt Brubeck | 2016-06-03T21:46:16 | servo: Merge #11591 - Upgrade backtrace, byteorder, compiletest, harfbuzz, hyper, phf, serde_json, url (from mbrubeck:always-be-updating); r=jdm
Source-Repo: https://github.com/servo/servo
Source-Revision: 2093925da8a13832070a8c6b4f27fa1de50514a7 | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index 1af3b51fe..6a5cfa859 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -38,7 +38,7 @@ dependencies = [
"script_traits 0.0.1",
"style 0.0.1",
"style_tests 0.0.1",
- "url 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "url 1.1.1 (regist... | 1 | 85 | 79 |
7bfd0ec0227cf020c01cad3382d8f53c2bf87581 | rwakulszowa | 2016-06-03T20:58:13 | servo: Merge #11576 - Dropped references to RefCell (from rwakulszowa:net-filemanager-idmap-drop-refcell); r=nox
Removed RefCell references from net/filemanager_thread.rs
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:... | diff --git a/net/filemanager_thread.rs b/net/filemanager_thread.rs
index 4fb4eea3f..fc65446a5 100644
--- a/net/filemanager_thread.rs
+++ b/net/filemanager_thread.rs
@@ -6,7 +6,6 @@ use ipc_channel::ipc::{self, IpcReceiver, IpcSender};
use mime_guess::guess_mime_type_opt;
use net_traits::filemanager_thread::{FileManag... | 1 | 5 | 6 |
0fe1ae179e8961701b19eba98c954b6f50c2058c | Zhen Zhang | 2016-06-03T18:26:29 | servo: Merge #11534 - Add Blob URL store (from izgzhen:add-blob-url-store); r=Manishearth
Spec: https://w3c.github.io/FileAPI/#BlobURLStore.
I finally decide to put the store under `ScriptThread` and interpret the "global object" as the script thread itself. The new APIs will be used during the page loading (if schem... | diff --git a/script/blob_url_store.rs b/script/blob_url_store.rs
new file mode 100644
index 000000000..7f6f34ea4
--- /dev/null
+++ b/script/blob_url_store.rs
@@ -0,0 +1,59 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+... | 4 | 71 | 0 |
8672ac157912a80e97854dcee9c873aecf644d52 | Ms2ger | 2016-06-03T15:40:07 | servo: Merge #11571 - Derive Clone for DOMManipulationTaskSource, UserInteractionTaskSource (from Ms2ger:derive-clone); r=nox
Source-Repo: https://github.com/servo/servo
Source-Revision: e75339ca0c5f5aea68be8ef08a28e77e70bd59a8 | diff --git a/script/task_source/dom_manipulation.rs b/script/task_source/dom_manipulation.rs
index 67cac79c4..daf212d8c 100644
--- a/script/task_source/dom_manipulation.rs
+++ b/script/task_source/dom_manipulation.rs
@@ -11,7 +11,7 @@ use std::sync::mpsc::Sender;
use string_cache::Atom;
use task_source::TaskSource;
... | 2 | 2 | 10 |
992d9d7bf2c1beeb8cb3ca02822d6e5c09ec3821 | Ms2ger | 2016-06-03T14:50:29 | servo: Merge #11573 - Remove some options code (from Ms2ger:opts); r=nox
Source-Repo: https://github.com/servo/servo
Source-Revision: 1f5b0008ac763bbb2209a70afddb6434d18cff9d | diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml
index 37cbaa11d..6982ed4a2 100644
--- a/gfx/Cargo.toml
+++ b/gfx/Cargo.toml
@@ -34,7 +34,6 @@ range = {path = "../range"}
rustc-serialize = "0.3"
serde = "0.7"
serde_macros = "0.7"
-servo-skia = "0.20130412.0"
smallvec = "0.1"
string_cache = {version = "0.2.18", feature... | 5 | 10 | 86 |
95809c37bc4ada8af5a814dfa395edb2309277e9 | Andrew Shu | 2016-06-03T07:44:07 | servo: Merge #11569 - compositing: Remove CompositorThread struct (from talklittle:remove_struct_10261); r=metajack
<!-- Please describe your changes on the following line: -->
Remove `CompositorThread` struct, since it wraps only `IOCompositor`. Use `IOCompositor` directly.
---
<!-- Thank you for contributing to Ser... | diff --git a/compositing/compositor_thread.rs b/compositing/compositor_thread.rs
index a51b11706..910e6817d 100644
--- a/compositing/compositor_thread.rs
+++ b/compositing/compositor_thread.rs
@@ -5,7 +5,7 @@
//! Communication with the compositor thread.
use SendableFrameTree;
-use compositor::{CompositingReason, I... | 3 | 4 | 17 |
b05d908da46e27f347b3eb2ed6972ab233db9563 | Rebecca | 2016-06-03T02:51:10 | servo: Merge #11468 - Implement meta referrer policy delivery (3) (from rebstar6:refPol4); r=nox
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [X] `.... | diff --git a/msg/constellation_msg.rs b/msg/constellation_msg.rs
index 14991a75a..7e64619db 100644
--- a/msg/constellation_msg.rs
+++ b/msg/constellation_msg.rs
@@ -358,7 +358,7 @@ pub enum FrameType {
/// [Policies](https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-states)
/// for providing a referr... | 8 | 136 | 23 |
5f74256d8e2b6f2864acc7daa13556f286b3f2cc | Patrick Walton | 2016-06-03T01:50:55 | servo: Merge #11537 - compositing: Don't translate points to layer space when using WebRender (from pcwalton:webrender-remove-layer-space-translation); r=glennw
This makes mouse events take the same code path, regardless of whether
WebRender is in use or not. This approach enables accurate
display-list-based hit testi... | diff --git a/compositing/compositor.rs b/compositing/compositor.rs
index f00cb496e..fb471ab90 100644
--- a/compositing/compositor.rs
+++ b/compositing/compositor.rs
@@ -1387,31 +1387,27 @@ impl<Window: WindowMethods> IOCompositor<Window> {
MouseWindowEvent::MouseUp(_, p) => p,
};
- if let... | 1 | 21 | 27 |
1ebc407fa12f37b6f80f906596ec8beb3dcb4e4b | Patrick Walton | 2016-06-03T00:33:37 | servo: Merge #11568 - servo: Update Glutin and WebRender to pick up performance improvements (from pcwalton:glwrup); r=metajack
r? @metajack
Source-Repo: https://github.com/servo/servo
Source-Revision: ea0fa51b5d4dcceb63761fd70ac1cd1d6178f4f4 | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index cba15b83b..57c0657f5 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -100,7 +100,7 @@ version = "0.4.5"
source = "git+https://github.com/servo/rust-azure#a7177c8df81554352bc51de2f5b77cbb47ec2635"
dependencies = [
"core-foundation 0.2.2 (registry+https:/... | 1 | 14 | 14 |
816d70319c43ccd4686d1dcc33cba4c57ad8885c | Connor Brewster | 2016-06-02T22:24:10 | servo: Merge #11567 - removed unused imports (from cbrewster:no_unused); r=metajack
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not re... | diff --git a/script/dom/bindings/global.rs b/script/dom/bindings/global.rs
index cd0dbfaba..1040e7b59 100644
--- a/script/dom/bindings/global.rs
+++ b/script/dom/bindings/global.rs
@@ -25,8 +25,7 @@ use profile_traits::{mem, time};
use script_runtime::{CommonScriptMsg, ScriptChan, ScriptPort};
use script_thread::{Mai... | 4 | 2 | 7 |
72f90b70cfcf8106c2050e2ff4dd727e5519e3ff | Keith Yeung | 2016-06-02T20:38:55 | servo: Merge #11564 - Clean up DOMManipulationTaskSource (from KiChjang:dom-manipulation-task-source); r=jdm
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes do not require tests because refactoring
Source-Repo: https://github.com/servo/servo
S... | diff --git a/script/dom/bindings/global.rs b/script/dom/bindings/global.rs
index adb94c9d2..cd0dbfaba 100644
--- a/script/dom/bindings/global.rs
+++ b/script/dom/bindings/global.rs
@@ -26,7 +26,7 @@ use script_runtime::{CommonScriptMsg, ScriptChan, ScriptPort};
use script_thread::{MainThreadScriptChan, ScriptThread};
... | 9 | 33 | 19 |
dc2d5daa7f7378b18c7613535a6fa42e98886291 | fokinv | 2016-06-02T18:28:34 | servo: Merge #11523 - Add random Device ID generation (from szeged:random_id); r=jdm
<!-- Please describe your changes on the following line: -->
The [spec](https://webbluetoothcg.github.io/web-bluetooth/#add-an-allowed-bluetooth-device) (2. step) defines that the device id can't be the public address, therefore we ge... | diff --git a/net/Cargo.toml b/net/Cargo.toml
index b9ab660a2..013df85f3 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -30,6 +30,7 @@ openssl = "0.7.6"
openssl-verify = "0.1"
plugins = {path = "../plugins"}
profile_traits = {path = "../profile_traits"}
+rand = "0.3"
rustc-serialize = "0.3"
threadpool = "1.0"
... | 4 | 29 | 3 |
6a1de4834a904ff06975840d8446491126bc685f | Emilio Cobos Álvarez | 2016-06-02T16:50:53 | servo: Merge #11456 - stylo: Support linear-gradients as background-image (from emilio:stylo-linear-gradient); r=mbrubeck
This PR supports setting the background-image property to a linear-gradient in Geckolib.
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete,... | diff --git a/style/properties/longhand/inherited_text.mako.rs b/style/properties/longhand/inherited_text.mako.rs
index 5428caa8a..dedc6e601 100644
--- a/style/properties/longhand/inherited_text.mako.rs
+++ b/style/properties/longhand/inherited_text.mako.rs
@@ -309,8 +309,7 @@ ${helpers.predefined_type("text-indent",
/... | 2 | 2 | 2 |
8bc8650e7d2177414b7159bc22a65a2cdf880537 | Ms2ger | 2016-06-02T09:36:56 | servo: Merge #11553 - Remove spurious JS_Init call (from Ms2ger:init); r=nox
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] We don't run debug-mozjs tests
Runtime::new() will call JS_Init a second time, leading to an assertion.
Source-Repo: https://github... | diff --git a/script/lib.rs b/script/lib.rs
index 77ff99aab..e5967d19d 100644
--- a/script/lib.rs
+++ b/script/lib.rs
@@ -158,7 +158,6 @@ fn perform_platform_specific_initialization() {}
#[allow(unsafe_code)]
pub fn init() {
unsafe {
- assert_eq!(js::jsapi::JS_Init(), true);
SetDOMProxyInformation... | 1 | 0 | 1 |
8d556b79872f947844f8b633a797849e6e299d99 | Martin Robinson | 2016-06-02T00:22:22 | servo: Merge #11035 - Do not create stacking contexts for text fragments (from mrobinson:no-stacking-contexts-for-text-fragments); r=pcwalton
Without this change, each text fragment in a block that establishes a
stacking context will establish its own stacking context. This is
unnecessary and increases the amount of w... | diff --git a/layout/fragment.rs b/layout/fragment.rs
index 9868e141d..1de7a6ee8 100644
--- a/layout/fragment.rs
+++ b/layout/fragment.rs
@@ -2207,6 +2207,13 @@ impl Fragment {
/// Returns true if this fragment establishes a new stacking context and false otherwise.
pub fn establishes_stacking_context(&self)... | 1 | 7 | 0 |
1c2c79b5916d328fad89b5e1cb869d3a6084e5f0 | Ms2ger | 2016-06-01T20:43:58 | servo: Merge #11538 - Fix some build warnings (from Ms2ger:warnings); r=emilio
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes do not require tests because refactoring
Source-Repo: https://github.com/servo/servo
Source-Revision: 0594d58bc8e074... | diff --git a/compositing/compositor.rs b/compositing/compositor.rs
index 89eb0bf29..f00cb496e 100644
--- a/compositing/compositor.rs
+++ b/compositing/compositor.rs
@@ -1932,12 +1932,10 @@ impl<Window: WindowMethods> IOCompositor<Window> {
scroll_offset: scroll_layer_state.scroll_offset,
... | 4 | 6 | 12 |
4265039140706f42ebddc9db4577849e378e110c | Kyle Headley | 2016-06-01T19:06:41 | servo: Merge #11443 - Remove CompositorEventListener trait (from kyleheadley:remove_trait_11339); r=asajeffrey
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data... | diff --git a/compositing/compositor.rs b/compositing/compositor.rs
index d25fdb4b7..89eb0bf29 100644
--- a/compositing/compositor.rs
+++ b/compositing/compositor.rs
@@ -6,8 +6,8 @@ use CompositionPipeline;
use SendableFrameTree;
use app_units::Au;
use compositor_layer::{CompositorData, CompositorLayer, RcCompositorL... | 5 | 39 | 51 |
4a06dcce3bf1bb0452e19e86a7fb9b1e9f4ff2db | Emilio Cobos Álvarez | 2016-06-01T17:54:28 | servo: Merge #11545 - script: Ensure we don't ignore reflows for queries that bail out due to the viewport size not yet present (from emilio:reddit); r=pcwalton
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step i... | diff --git a/script/dom/window.rs b/script/dom/window.rs
index 3d6695986..475fef1a0 100644
--- a/script/dom/window.rs
+++ b/script/dom/window.rs
@@ -1019,26 +1019,33 @@ impl Window {
/// and no reflow is performed. If reflow is suppressed, no reflow will be
/// performed for ForDisplay goals.
///
- //... | 1 | 99 | 46 |
c4e9d483cb6ea55456d576c0f78a5f22264283e8 | Emilio Cobos Álvarez | 2016-06-01T15:01:17 | servo: Merge #11531 - script: Use angle from the servo repo (from emilio:anglemove); r=metajack
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [x] `./... | diff --git a/script/Cargo.toml b/script/Cargo.toml
index c44f2448a..b947fe330 100644
--- a/script/Cargo.toml
+++ b/script/Cargo.toml
@@ -17,7 +17,7 @@ debugmozjs = ['js/debugmozjs']
tinyfiledialogs = {git = "https://github.com/jdm/tinyfiledialogs"}
[dependencies]
-angle = {git = "https://github.com/emilio/angle", b... | 2 | 3 | 3 |
79a87d8def67403df0985ea0e1b7720ffd0d3c15 | Anthony Ramine | 2016-06-01T12:36:47 | servo: Merge #11522 - Remove all uses of &Root<T> (from nox:root-ref); r=jdm
Source-Repo: https://github.com/servo/servo
Source-Revision: 2be5f7211377a9609aad962be443308bef247df1 | diff --git a/script/dom/bindings/js.rs b/script/dom/bindings/js.rs
index 39bd64534..f8ddb80e4 100644
--- a/script/dom/bindings/js.rs
+++ b/script/dom/bindings/js.rs
@@ -76,15 +76,6 @@ impl<T> JS<T> {
}
impl<T: Reflectable> JS<T> {
- /// Create a JS<T> from a Root<T>
- /// XXX Not a great API. Should be a call... | 14 | 40 | 52 |
3b93de96b4a66375b93690bb257d69bd97898b94 | Abelardo E. Mendoza | 2016-06-01T11:46:58 | servo: Merge #11497 - send a reply when thread is done exiting (from ab22:11467-resource-threads-race-with-shutdown-to-write-out-data); r=Ms2ger
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and ... | diff --git a/constellation/constellation.rs b/constellation/constellation.rs
index 5ac8eea10..6af31b0f0 100644
--- a/constellation/constellation.rs
+++ b/constellation/constellation.rs
@@ -817,11 +817,15 @@ impl<Message, LTF, STF> Constellation<Message, LTF, STF>
}
fn handle_exit(&mut self) {
+ // Ch... | 5 | 24 | 8 |
0a43bd9383a0ad0561d91fecc07fa329184e48d2 | Matt Brubeck | 2016-06-01T10:58:56 | servo: Merge #11445 - Support line-height in geckolib (from mbrubeck:line-height); r=emilio
r? @bholley
Source-Repo: https://github.com/servo/servo
Source-Revision: 8caa17a466025adf9e6635e140951c014b33c5d8 | diff --git a/style/properties/longhand/inherited_text.mako.rs b/style/properties/longhand/inherited_text.mako.rs
index c71e158d5..5428caa8a 100644
--- a/style/properties/longhand/inherited_text.mako.rs
+++ b/style/properties/longhand/inherited_text.mako.rs
@@ -15,6 +15,9 @@
#[derive(Debug, Clone, PartialEq, Copy, ... | 1 | 20 | 0 |
5ea1930058b5bbddfe2fa6362ca4c7e0002dbffc | Zhen Zhang | 2016-06-01T10:09:21 | servo: Merge #11221 - Add file backend support for Blob and related (from izgzhen:blob-file-backend); r=Manishearth
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy --faster` does not report any errors
- [x] These changes fix #10851, related to #11131
- [x] These changes do not require tests ... | diff --git a/script/document_loader.rs b/script/document_loader.rs
index 4d5df6c74..82e015eef 100644
--- a/script/document_loader.rs
+++ b/script/document_loader.rs
@@ -8,9 +8,9 @@
use dom::bindings::js::JS;
use dom::document::Document;
use msg::constellation_msg::PipelineId;
-use net_traits::{PendingAsyncLoad, Core... | 16 | 227 | 124 |
7bc458cf6a7e2977e8fa925f01840a419e16a91b | Rafael Quintero | 2016-06-01T05:15:51 | servo: Merge #11480 - rename (from rafaqtro:local_b); r=emilio
rename
<!-- Please describe your changes on the following line: -->
rename of page_fetch_complete and handle_page_fetch_complete for page_headers_available and handle_page_headers_available .
---
<!-- Thank you for contributing to Servo! Please replace e... | diff --git a/script/dom/servohtmlparser.rs b/script/dom/servohtmlparser.rs
index 92658189d..75d6a5e50 100644
--- a/script/dom/servohtmlparser.rs
+++ b/script/dom/servohtmlparser.rs
@@ -94,9 +94,9 @@ impl AsyncResponseListener for ParserContext {
Err(_) => None,
};
let content_type = metad... | 2 | 8 | 8 |
711068b9bf3c22dcabb44c28dc142732f1b8b39d | Patrick Walton | 2016-06-01T01:54:29 | servo: Merge #11398 - script: Keep the DOM-side viewport up to date when scrolling happens in WebRender (from pcwalton:webrender-viewport); r=glennw
This happens asynchronously, just as it does in non-WebRender mode.
This functionality is a prerequisite for doing proper display-list-based
hit testing in WebRender, si... | diff --git a/compositing/compositor.rs b/compositing/compositor.rs
index ed2f0879a..d25fdb4b7 100644
--- a/compositing/compositor.rs
+++ b/compositing/compositor.rs
@@ -15,7 +15,8 @@ use euclid::scale_factor::ScaleFactor;
use euclid::size::TypedSize2D;
use euclid::{Matrix4D, Point2D, Rect, Size2D};
use gfx::paint_th... | 29 | 288 | 96 |
5a0cbe5ddfa38c6f1cda7baf92d1ce859b99dd55 | fokinv | 2016-06-01T01:00:23 | servo: Merge #11335 - Add WebBluetooth GATTBlacklist support (from szeged:blacklist); r=jdm
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy --faster` doe... | diff --git a/script/bluetooth_blacklist.rs b/script/bluetooth_blacklist.rs
new file mode 100644
index 000000000..f9d1c5646
--- /dev/null
+++ b/script/bluetooth_blacklist.rs
@@ -0,0 +1,124 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distrib... | 7 | 184 | 10 |
6c36e4f154e1b9d7b8404192be554db646aa186e | Anthony Ramine | 2016-05-31T13:40:43 | servo: Merge #11520 - Bump rust-mozjs for the safe Runtime::new (fixes #11512) (from nox:runtime); r=tschneidereit
Source-Repo: https://github.com/servo/servo
Source-Revision: d0f5a5fd747e42da0863434f6ede10bafed3a509 | diff --git a/script/dom/dedicatedworkerglobalscope.rs b/script/dom/dedicatedworkerglobalscope.rs
index 295b0029c..d658163c2 100644
--- a/script/dom/dedicatedworkerglobalscope.rs
+++ b/script/dom/dedicatedworkerglobalscope.rs
@@ -240,7 +240,7 @@ impl DedicatedWorkerGlobalScope {
}
};
- ... | 4 | 6 | 5 |
19b390bf61aa18d2097bbee859a0e6aab3473d38 | Ms2ger | 2016-05-31T12:52:30 | servo: Merge #11521 - Remove SharedLayoutContext::url (from Ms2ger:SharedLayoutContext-url); r=nox
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes do not require tests because dead code removal
It is unused.
Source-Repo: https://github.com/se... | diff --git a/layout/context.rs b/layout/context.rs
index 81deafafa..11cfed0d1 100644
--- a/layout/context.rs
+++ b/layout/context.rs
@@ -91,9 +91,6 @@ pub struct SharedLayoutContext {
/// Interface to the font cache thread.
pub font_cache_thread: Mutex<FontCacheThread>,
- /// The URL.
- pub url: Url,
... | 2 | 0 | 10 |
7aab8e895e00e84815af960b68c8d062c00c62a5 | Emilio Cobos Álvarez | 2016-05-30T22:28:34 | servo: Merge #11490 - layout: Fix display list construction of linear gradients (from emilio:linear-gradient); r=SimonSapin
Fixes #11486
The previous code assumed that the diagonals of the elements were
perpendicular, which only happens with squares.
---
<!-- Thank you for contributing to Servo! Please replace each ... | diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs
index e9d7f02ba..8e1d10424 100644
--- a/layout/display_list_builder.rs
+++ b/layout/display_list_builder.rs
@@ -592,36 +592,42 @@ impl FragmentDisplayListBuilding for Fragment {
let mut clip = clip.clone();
clip.intersect_rec... | 1 | 33 | 26 |
b2fbd9498802609f77f8a64eef1c7e503ef81507 | fokinv | 2016-05-30T19:39:34 | servo: Merge #11503 - Add macro to match the adapter (from szeged:adapter_macro); r=jdm
<!-- Please describe your changes on the following line: -->
Refactor WebBluetooth Adapter code.
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with app... | diff --git a/net/bluetooth_thread.rs b/net/bluetooth_thread.rs
index 3338a73af..3d83e7feb 100644
--- a/net/bluetooth_thread.rs
+++ b/net/bluetooth_thread.rs
@@ -62,6 +62,15 @@ macro_rules! return_if_cached(
);
);
+macro_rules! get_adapter_or_return_error(
+ ($bl_manager:expr, $sender:expr) => (
+ matc... | 1 | 20 | 44 |
b1680abbb40d1fdb710cbb9ee7a9f163783c4849 | Mitchell Hentges | 2016-05-30T18:49:47 | servo: Merge #11495 - Fix 9283 - space or comma separated rect() arguments (from mitchhentges:9283-rect-no-comma); r=SimonSapin
<!-- Please describe your changes on the following line: -->
Allow either commas or space to separate `rect()` arguments, but not both. Don't allocate unnecessary `Vec`
---
<!-- Thank you fo... | diff --git a/style/properties/longhand/effects.mako.rs b/style/properties/longhand/effects.mako.rs
index a927e487a..96f832bb7 100644
--- a/style/properties/longhand/effects.mako.rs
+++ b/style/properties/longhand/effects.mako.rs
@@ -344,31 +344,45 @@ ${helpers.predefined_type("opacity",
use std::ascii::AsciiEx... | 1 | 31 | 17 |
9134a5c19599a9f06944bcf8d4719fc95dddf082 | Anthony Ramine | 2016-05-30T18:00:57 | servo: Merge #11094 - Start implementing protocolDescription and canCurrentlyRecord in devtools (from nox:devtools); r=Ms2ger
We can merge it but it doesn't make things work more than before. Mostly filing it for comments, especially the `description` method. If you feel it's too verbose I guess the way to go would be... | diff --git a/devtools/actors/performance.rs b/devtools/actors/performance.rs
index 17687f10f..6d0bc2556 100644
--- a/devtools/actors/performance.rs
+++ b/devtools/actors/performance.rs
@@ -3,7 +3,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
use actor::{Actor, ActorMessageStatus, ActorRegistry... | 4 | 103 | 2 |
fb619df252946b459969643db2a1d17eeeecdf87 | Ms2ger | 2016-05-30T14:58:39 | servo: Merge #11511 - Add a missing JSAutoCompartment to javascript url handling (from Ms2ger:jsurl-crash); r=nox
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] There are tests for these changes OR
Source-Repo: https://github.com/servo/servo
Source-Revisio... | diff --git a/script/script_thread.rs b/script/script_thread.rs
index 9ee604ba2..a1e563d23 100644
--- a/script/script_thread.rs
+++ b/script/script_thread.rs
@@ -30,6 +30,7 @@ use dom::bindings::inheritance::Castable;
use dom::bindings::js::{JS, MutNullableHeap, Root, RootCollection};
use dom::bindings::js::{RootColle... | 1 | 4 | 1 |
e347fed0c35457356e870e82012f2367d62fbcab | Anthony Ramine | 2016-05-30T11:39:36 | servo: Merge #11413 - Support content blocking (from nox:content-blocker); r=nox+jdm+Ms2ger
This is @jdm's rebased work from https://github.com/servo/servo/issues/9749#issuecomment-211115746 with a small addition with regard to cross-origin blocking. Mainly opening this for review and for further discussions.
Source-... | diff --git a/net/Cargo.toml b/net/Cargo.toml
index 2d69776c0..b9ab660a2 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -11,6 +11,7 @@ path = "lib.rs"
[dependencies]
bitflags = "0.7"
brotli = {git = "https://github.com/ende76/brotli-rs"}
+content-blocker = "0.2"
cookie = {version = "0.2.4", features = ["seriali... | 6 | 101 | 5 |
a10d996f38b30ac2defa53c30ec7dab0b66de094 | Ms2ger | 2016-05-28T14:49:44 | servo: Merge #11488 - Remove the ConvertPipelineIdToWebRender trait (from Ms2ger:ConvertPipelineIdToWebRender); r=metajack
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes do not require tests because refactoring
Source-Repo: https://github.com... | diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml
index 531e04a24..29d0c3c73 100644
--- a/compositing/Cargo.toml
+++ b/compositing/Cargo.toml
@@ -11,7 +11,6 @@ path = "lib.rs"
[dependencies]
gfx = {path = "../gfx"}
gfx_traits = {path = "../gfx_traits"}
-layout_traits = {path = "../layout_traits"}
script_... | 8 | 8 | 19 |
085c3c04a7d9de11b54f5dcb624efdaeef64e462 | Ms2ger | 2016-05-28T10:02:26 | servo: Merge #11484 - Remove LayoutControlChan (from Ms2ger:LayoutControlChan); r=nox
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes do not require tests because refactoring
Source-Repo: https://github.com/servo/servo
Source-Revision: 2b58586... | diff --git a/compositing/compositor.rs b/compositing/compositor.rs
index 864c8e33c..4b3f4dbf9 100644
--- a/compositing/compositor.rs
+++ b/compositing/compositor.rs
@@ -27,7 +27,7 @@ use layers::platform::surface::NativeDisplay;
use layers::rendergl;
use layers::rendergl::RenderContext;
use layers::scene::Scene;
-us... | 7 | 14 | 29 |
01bed2581df97c028af761d81733580a6761d370 | Lars Bergstrom | 2016-05-28T00:34:55 | servo: Merge #11474 - Remove the gonk port (from larsbergstrom:remove_gonk); r=metajack
<!-- Please describe your changes on the following line: -->
This removes the code and support infrastructure for the gonk port.
r? @metajack
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when th... | diff --git a/util/opts.rs b/util/opts.rs
index 33d5ee5c1..fd8064913 100644
--- a/util/opts.rs
+++ b/util/opts.rs
@@ -414,7 +414,6 @@ pub fn multiprocess() -> bool {
enum UserAgent {
Desktop,
Android,
- Gonk,
}
#[derive(Clone, Debug, Eq, Deserialize, PartialEq, Serialize)]
@@ -453,21 +452,13 @@ fn defa... | 1 | 2 | 12 |
f342c61f8df171d99c62a92711c380bcb9f10e13 | Josh Matthews | 2016-05-27T23:14:25 | servo: Merge #11472 - Report blank lines that follow an open brace (from jdm:wip); r=mbrubeck
This automates something that I find myself frequently commenting on in PRs.
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:... | diff --git a/canvas/canvas_paint_thread.rs b/canvas/canvas_paint_thread.rs
index 71e721f78..6e15a5ab4 100644
--- a/canvas/canvas_paint_thread.rs
+++ b/canvas/canvas_paint_thread.rs
@@ -548,7 +548,6 @@ impl<'a> CanvasPaintThread<'a> {
offset: Point2D<f64>,
image_data_size: S... | 61 | 3 | 125 |
098263e3018d3b24502f0b677917be4f973df4ff | Ms2ger | 2016-05-27T21:25:52 | servo: Merge #11471 - Split up Constellation::handle_requests (from Ms2ger:handle_request); r=nox
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tid... | diff --git a/constellation/constellation.rs b/constellation/constellation.rs
index 1aa3650d7..dd2d78d20 100644
--- a/constellation/constellation.rs
+++ b/constellation/constellation.rs
@@ -518,46 +518,62 @@ impl<Message, LTF, STF> Constellation<Message, LTF, STF>
}
};
- // Process the req... | 1 | 83 | 67 |
96b4e6ca7184c5d492308284c50ba807c6510927 | Josh Matthews | 2016-05-27T18:06:37 | servo: Merge #11470 - Make script origins sendable and immutable (from servo:postmessage1.5); r=Ms2ger
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach tes... | diff --git a/script/origin.rs b/script/origin.rs
index 97e031626..9b0ba7738 100644
--- a/script/origin.rs
+++ b/script/origin.rs
@@ -2,63 +2,53 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-use ref_filter_map::ref_filter_map... | 1 | 12 | 22 |
345121552562fed878808b97a3f09c228dc9570f | Ms2ger | 2016-05-27T16:14:19 | servo: Merge #11437 - Simplify and improve Pipeline creation (from Ms2ger:pipeline-creation); r=asajeffrey
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes do not require tests because refactoring
Source-Repo: https://github.com/servo/servo
Sou... | diff --git a/constellation/constellation.rs b/constellation/constellation.rs
index 383a9a8d3..1aa3650d7 100644
--- a/constellation/constellation.rs
+++ b/constellation/constellation.rs
@@ -19,14 +19,8 @@ use compositing::compositor_thread::Msg as ToCompositorMsg;
use devtools_traits::{ChromeToDevtoolsControlMsg, Devto... | 2 | 214 | 248 |
e53dfdb61c06cb572b1f213eebfefdb0b7ceaac0 | Ms2ger | 2016-05-27T15:26:23 | servo: Merge #11463 - Remove the LayoutChan type (from Ms2ger:LayoutChan); r=nox
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not repor... | diff --git a/script/dom/bindings/trace.rs b/script/dom/bindings/trace.rs
index 4a1c781a2..65bed8b0b 100644
--- a/script/dom/bindings/trace.rs
+++ b/script/dom/bindings/trace.rs
@@ -54,7 +54,7 @@ use js::glue::{CallObjectTracer, CallUnbarrieredObjectTracer, CallValueTracer};
use js::jsapi::{GCTraceKindToAscii, Heap, Tr... | 8 | 26 | 45 |
8592d03daf3bb3e680bbdb28356ea39883bcc33f | Manish Goregaokar | 2016-05-27T13:49:43 | servo: Merge #11462 - devtools: fix segfault, remove println (from Manishearth:devtools-fixes); r=Ms2ger
This fixes the segfault from #11457 by adding an autocompartment.
It also removes the print statements which clog the command line and replaces
them with `debug!()`
---
<!-- Thank you for contributing to Servo! P... | diff --git a/devtools/Cargo.toml b/devtools/Cargo.toml
index 808fcfa56..099b71edd 100644
--- a/devtools/Cargo.toml
+++ b/devtools/Cargo.toml
@@ -19,3 +19,4 @@ serde = "0.7"
serde_json = "0.7"
serde_macros = "0.7"
time = "0.1"
+log = "0.3.5"
diff --git a/devtools/actor.rs b/devtools/actor.rs
index 6ddb45335..c439ad0e... | 7 | 18 | 12 |
c3bb73f75b8b1d4bc0f4d0a87e8b222c4fe7215b | Cullen Rhodes | 2016-05-27T12:11:17 | servo: Merge #11329 - Report use statements that use {} with only one entry (from c-rhodes:11320); r=jdm
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [X ] `./mach build -d` does not report any errors
- [X ] `./mach test-tid... | diff --git a/compositing/lib.rs b/compositing/lib.rs
index 472c7bbd7..9ff82438d 100644
--- a/compositing/lib.rs
+++ b/compositing/lib.rs
@@ -40,7 +40,7 @@ extern crate webrender_traits;
pub use compositor_thread::{CompositorEventListener, CompositorProxy, CompositorThread};
use euclid::size::TypedSize2D;
use gfx::pa... | 47 | 76 | 77 |
b9b56f3e19fdaa9b32518f23f93be02344d791c6 | Dirkjan Ochtman | 2016-05-27T11:21:36 | servo: Merge #11449 - Remove Document.get_html_element() (fixes #8409) (from djc:rm-get-html-element); r=nox
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: ... | diff --git a/script/dom/document.rs b/script/dom/document.rs
index d65efd7ac..59deb93ab 100644
--- a/script/dom/document.rs
+++ b/script/dom/document.rs
@@ -1229,9 +1229,9 @@ impl Document {
self.stylesheets_changed_since_reflow.set(true);
*self.stylesheets.borrow_mut() = None;
// Mark the do... | 1 | 3 | 3 |
58dd633edb3b13d5bf5ccb220d2737053410c45f | Kosov Eugene | 2016-05-27T08:56:51 | servo: Merge #11458 - add log2(u32) and use it to prevent casting to and from float to int (from kevgs:log2); r=Manishearth
<!-- Please describe your changes on the following line: -->
PR for #11440
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace ... | diff --git a/script/dom/webglrenderingcontext.rs b/script/dom/webglrenderingcontext.rs
index 3e57bae5a..cc3dff56f 100644
--- a/script/dom/webglrenderingcontext.rs
+++ b/script/dom/webglrenderingcontext.rs
@@ -87,6 +87,10 @@ pub struct WebGLRenderingContext {
current_vertex_attrib_0: Cell<(f32, f32, f32, f32)>,
}
... | 1 | 5 | 1 |
c591049754115431473758e1e73aa113353000aa | Ms2ger | 2016-05-27T03:37:23 | servo: Merge #11408 - Take LayoutThread::url out of its RefCell (from Ms2ger:layoutthread-url); r=Manishearth
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-... | diff --git a/layout/layout_thread.rs b/layout/layout_thread.rs
index 5472b9c20..c867079d6 100644
--- a/layout/layout_thread.rs
+++ b/layout/layout_thread.rs
@@ -57,7 +57,6 @@ use script_traits::{LayoutControlMsg, LayoutMsg as ConstellationMsg};
use sequential;
use serde_json;
use std::borrow::ToOwned;
-use std::cell... | 1 | 12 | 13 |
c03f6a98ff70e9eb22f2a3d83793cf19be11e45d | Connor Brewster | 2016-05-27T01:56:14 | servo: Merge #11455 - Remove unused import (from cbrewster:fix_warning); r=emilio
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [X] `./mach build -d`... | diff --git a/script/dom/bluetoothremotegattservice.rs b/script/dom/bluetoothremotegattservice.rs
index fc439717b..78427f7f6 100644
--- a/script/dom/bluetoothremotegattservice.rs
+++ b/script/dom/bluetoothremotegattservice.rs
@@ -2,7 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* fil... | 1 | 0 | 1 |
df25cc073032902e5f282af2271723a1bba2a7d0 | Alan Jeffrey | 2016-05-26T19:53:09 | servo: Merge #11430 - Record the frame type (IFrame or MozBrowserIFrame) in the pipeline (from asajeffrey:constellation-record-mozbrowser-parent-info); r=ConnorGBrewster
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [X] `./m... | diff --git a/constellation/constellation.rs b/constellation/constellation.rs
index c6e7c1605..d183b95b7 100644
--- a/constellation/constellation.rs
+++ b/constellation/constellation.rs
@@ -31,7 +31,7 @@ use ipc_channel::ipc::{self, IpcSender};
use ipc_channel::router::ROUTER;
use layout_traits::{LayoutControlChan, La... | 6 | 66 | 55 |
2bd0fa3d32b7b764151f1b96ca61b31f8936722f | Attila Dusnoki | 2016-05-26T18:15:49 | servo: Merge #11269 - Extend WebBluetooth with discovery session and dialog (from szeged:discovery); r=jdm
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tid... | diff --git a/net/bluetooth_thread.rs b/net/bluetooth_thread.rs
index c8a6e4af3..b81440d34 100644
--- a/net/bluetooth_thread.rs
+++ b/net/bluetooth_thread.rs
@@ -4,6 +4,7 @@
use device::bluetooth::BluetoothAdapter;
use device::bluetooth::BluetoothDevice;
+use device::bluetooth::BluetoothDiscoverySession;
use device... | 2 | 53 | 7 |
7d051b4d9b44f7563b95feb8629f4c3a1f41f51d | Anthony Ramine | 2016-05-26T13:55:32 | servo: Merge #11441 - Update Rust to 1.10.0-nightly (267cde259 2016-05-25) (from servo:rustup); r=Ms2ger
Source-Repo: https://github.com/servo/servo
Source-Revision: bf3c437683808fdfb1f8406c023c391e5728266f | diff --git a/plugins/lints/transmute_type.rs b/plugins/lints/transmute_type.rs
index f151439d0..cc7acf5c6 100644
--- a/plugins/lints/transmute_type.rs
+++ b/plugins/lints/transmute_type.rs
@@ -27,7 +27,7 @@ impl LateLintPass for TransmutePass {
match expr.node {
hir::ExprPath(_, re... | 1 | 1 | 1 |
01804ce1622b90f69aeb423486efcf6574329b73 | Matt Brubeck | 2016-05-26T12:25:58 | servo: Merge #11394 - Reduce the size of StackingContextId (from mbrubeck:stacking-context-id); r=pcwalton
r? @pcwalton
Source-Repo: https://github.com/servo/servo
Source-Revision: 2acb257a82601ad9b48a544cff20ce83f6311a47 | diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs
index 73071d91e..091e9a08c 100644
--- a/gfx/display_list/mod.rs
+++ b/gfx/display_list/mod.rs
@@ -1409,20 +1409,21 @@ pub enum FragmentType {
/// A unique ID for every stacking context.
#[derive(Clone, Copy, Debug, Deserialize, Eq, Hash, HeapSizeOf, Parti... | 1 | 7 | 6 |
1c0079c4496c19e5566fade86a3cd98c41f716ba | Matt Brubeck | 2016-05-26T06:43:21 | servo: Merge #11382 - Fix unused crate warning in script_tests (from mbrubeck:warnings); r=nox
Source-Repo: https://github.com/servo/servo
Source-Revision: 97e58e6cfe6624746a717e224a4be3e087a644a5 | diff --git a/script_traits/lib.rs b/script_traits/lib.rs
index ae860a921..b68d24616 100644
--- a/script_traits/lib.rs
+++ b/script_traits/lib.rs
@@ -51,7 +51,6 @@ use net_traits::bluetooth_thread::BluetoothMethodMsg;
use net_traits::image_cache_thread::ImageCacheThread;
use net_traits::response::HttpsState;
use prof... | 5 | 9 | 8 |
ddb5b3005833239358457542331566329df586fc | Till Schneidereit | 2016-05-26T05:08:42 | servo: Merge #11372 - Pass a parent JS runtime when creating DOM Worker runtimes (from tschneidereit:parent-js-runtime-for-workers); r=nox
This enables sharing data with the parent runtime, decreasing memory usage and startup time. Also contains an update to current rust-mozjs, because that's required for this to work... | diff --git a/script/dom/dedicatedworkerglobalscope.rs b/script/dom/dedicatedworkerglobalscope.rs
index 8373855ac..d02c57845 100644
--- a/script/dom/dedicatedworkerglobalscope.rs
+++ b/script/dom/dedicatedworkerglobalscope.rs
@@ -213,7 +213,8 @@ impl DedicatedWorkerGlobalScope {
worker_url: ... | 5 | 20 | 11 |
50878d5628d41cd966d21fe66a92c418ab131ff9 | Ms2ger | 2016-05-26T03:42:31 | servo: Merge #11370 - Remove the IterableContext trait (from Ms2ger:IterableContext); r=jdm
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy --faster` doe... | diff --git a/script/devtools.rs b/script/devtools.rs
index 73f7604ae..e818b0c0c 100644
--- a/script/devtools.rs
+++ b/script/devtools.rs
@@ -16,7 +16,7 @@ use dom::bindings::global::GlobalRef;
use dom::bindings::inheritance::Castable;
use dom::bindings::js::Root;
use dom::bindings::str::DOMString;
-use dom::browsing... | 4 | 8 | 16 |
24cbe141d512b6d52f01f75d4460c2229bcaa39f | Cameron McCormack | 2016-05-26T01:35:50 | servo: Merge #11412 - Support remaining text-decoration related properties in geckolib (from heycam:text-deco); r=mbrubeck
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [X] `./mach build -d` does not report any errors
- [X] ... | diff --git a/style/properties/longhand/text.mako.rs b/style/properties/longhand/text.mako.rs
index e56cf9359..9bf491a45 100644
--- a/style/properties/longhand/text.mako.rs
+++ b/style/properties/longhand/text.mako.rs
@@ -16,7 +16,8 @@ ${helpers.single_keyword("text-overflow", "clip ellipsis")}
${helpers.single_keywo... | 3 | 75 | 18 |
b6a1aab4b3fdd9fdd1f764cbd5deb2599087eced | Matt Brubeck | 2016-05-25T23:29:48 | servo: Merge #11427 - Stop generating flows under display: none (from mbrubeck:under-display-none); r=pcwalton
Because this is a bottom-up traversal it can generates flows and throw them away. To prevent that, this cascades an internal `-servo-under-display-none` property and then checks that during flow construction.... | diff --git a/layout/construct.rs b/layout/construct.rs
index 2a75c4025..77b388e8a 100644
--- a/layout/construct.rs
+++ b/layout/construct.rs
@@ -1501,7 +1501,15 @@ impl<'a, ConcreteThreadSafeLayoutNode> PostorderNodeMutTraversal<ConcreteThreadS
//
// TODO: This should actually consult the table in that sectio... | 5 | 50 | 10 |
1c77dd8ac7ebbca02c1242874f01290dce67c528 | Cameron McCormack | 2016-05-25T20:36:51 | servo: Merge #11399 - Look past restyle root for parent node when restyling (from heycam:parent-style); r=pcwalton
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [X] `./mach build -d` does not report any errors
- [X] `./mach ... | diff --git a/style/traversal.rs b/style/traversal.rs
index c7ba825ac..386af02e5 100644
--- a/style/traversal.rs
+++ b/style/traversal.rs
@@ -132,7 +132,10 @@ pub fn recalc_style_at<'a, N, C>(context: &'a C,
node.initialize_data();
// Get the parent node.
- let parent_opt = node.layout_parent_node(root);
... | 1 | 4 | 1 |
3a4600e74abcb570227b66566e1623825e25886f | Cameron McCormack | 2016-05-25T18:49:23 | servo: Merge #11401 - Support display:-moz-(inline-)box in geckolib (from heycam:moz-box); r=mbrubeck
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy --f... | diff --git a/style/properties/longhand/box.mako.rs b/style/properties/longhand/box.mako.rs
index f80a42c88..f45973063 100644
--- a/style/properties/longhand/box.mako.rs
+++ b/style/properties/longhand/box.mako.rs
@@ -19,6 +19,8 @@
list-item flex
none
""".split()
+ if product ==... | 1 | 2 | 0 |
ed02ef43f7b121a4a37ea4cc328431efca2c2564 | Patrick Walton | 2016-05-25T16:13:05 | servo: Merge #11379 - Update WebRender (from pcwalton:wrup4); r=mbrubeck
Picks up fixes for #11150, #11151, #11323, and #11327.
r? @mbrubeck
Source-Repo: https://github.com/servo/servo
Source-Revision: 72ffe3468ab221748ce9bc2657aef39fab755b6a | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index 2f3664171..77db6ed0b 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -2500,7 +2500,7 @@ dependencies = [
[[package]]
name = "webrender"
version = "0.1.0"
-source = "git+https://github.com/servo/webrender#53c09c719d27ae0a157ff57009e57f0047070cda"
+source ... | 1 | 1 | 1 |
d8f44c5b873097fc2b644eb872d557cc58dec9d2 | Rahul Sharma | 2016-05-25T15:13:29 | servo: Merge #11376 - Bump string-cache to 0.2.18 (from creativcoder:update-string-cache); r=nox
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy --faster` does not report any errors
- [X] These changes do not require tests because its a crate version bump.
Source-Repo: https://github.com/se... | diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml
index 878fa51f4..37cbaa11d 100644
--- a/gfx/Cargo.toml
+++ b/gfx/Cargo.toml
@@ -36,7 +36,7 @@ serde = "0.7"
serde_macros = "0.7"
servo-skia = "0.20130412.0"
smallvec = "0.1"
-string_cache = {version = "0.2.17", features = ["heap_size"]}
+string_cache = {version = "0.2.18"... | 5 | 13 | 13 |
efb2276cc05833cf417e7b12e2c1d30954d47eea | Ms2ger | 2016-05-25T14:26:04 | servo: Merge #11375 - Remove ScriptThread::layout_to_constellation_chan (from servo:layout_to_constellation_chan); r=mbrubeck
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [x] `./mach build -d` does not report any errors
- [... | diff --git a/constellation/pipeline.rs b/constellation/pipeline.rs
index 2170fd8be..b0a321cd5 100644
--- a/constellation/pipeline.rs
+++ b/constellation/pipeline.rs
@@ -166,6 +166,7 @@ impl Pipeline {
paint_chan: layout_to_paint_chan.clone().to_opaque(),
panic_chan: state.panic... | 3 | 7 | 10 |
7ab37c31d61314e8c03f9a0dc7970f1307957eed | Ms2ger | 2016-05-25T11:10:17 | servo: Merge #11410 - Remove the script listener thread (from Ms2ger:script-listener-thread); r=nox
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy --fas... | diff --git a/compositing/compositor_thread.rs b/compositing/compositor_thread.rs
index 4209a87ba..e6a11d1cd 100644
--- a/compositing/compositor_thread.rs
+++ b/compositing/compositor_thread.rs
@@ -9,13 +9,13 @@ use compositor::{self, CompositingReason};
use euclid::point::Point2D;
use euclid::size::Size2D;
use gfx_t... | 8 | 108 | 172 |
f34b2a00c4b41c1be47e6f16daf32a7c285d0c77 | David Raifaizen | 2016-05-25T10:23:14 | servo: Merge #11377 - Update style attributes on CSSStyleDeclaration changes (from servo:style-attr-ser-rebase); r=SimonSapin
Rebase of #9410. Fixes #9410, fixes #9307.
Source-Repo: https://github.com/servo/servo
Source-Revision: 52f17a88141c8a55de3816e1a7a169cced518b36 | diff --git a/script/dom/attr.rs b/script/dom/attr.rs
index 95ff73e2c..43c1226b2 100644
--- a/script/dom/attr.rs
+++ b/script/dom/attr.rs
@@ -173,13 +173,18 @@ impl Attr {
pub fn set_value(&self, mut value: AttrValue, owner: &Element) {
assert!(Some(owner) == self.owner().r());
owner.will_mutate_a... | 4 | 508 | 110 |
3b447c7087a263f5b7cceec08e61f08179626892 | Ms2ger | 2016-05-25T09:25:50 | servo: Merge #11373 - Use associated types to improve LayoutThreadFactory and ScriptThreadFactory (from servo:threadfactory); r=larsbergstrom
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [x] `./mach build -d` does not repor... | diff --git a/constellation/constellation.rs b/constellation/constellation.rs
index bbe25acc4..c8770245b 100644
--- a/constellation/constellation.rs
+++ b/constellation/constellation.rs
@@ -90,7 +90,7 @@ enum ReadyToSave {
/// `ScriptThreadFactory` (which in practice are implemented by
/// `LayoutThread` in the `layou... | 8 | 47 | 78 |
e61505a4e04f9518fed7a596cdce6977e198f57f | Rahul Sharma | 2016-05-25T07:52:10 | servo: Merge #10498 - Adding default config directories (from creativcoder:default-profile-dir); r=SimonSapin
Fixes #10338
Source-Repo: https://github.com/servo/servo
Source-Revision: affc110fa0aac70d2e676d75bd5e54875ad8d941 | diff --git a/net/resource_thread.rs b/net/resource_thread.rs
index 43919362b..9c6a138da 100644
--- a/net/resource_thread.rs
+++ b/net/resource_thread.rs
@@ -211,17 +211,17 @@ impl ResourceChannelManager {
let _ = sender.send(());
}
CoreResourceMsg::Exit => {
- ... | 8 | 119 | 43 |
c742f919be4be28e2786fce9f0b20b3dff6a65fd | Matt Brubeck | 2016-05-25T06:57:30 | servo: Merge #11381 - Make geckolib build dependencies with the same features as Servo by default (from mbrubeck:geckolib-features); r=nox
This reduces the number of things that need to be recompiled when building Geckolib and Servo in the same source tree.
This is a bit fragile and will need to be maintained by hand... | diff --git a/servo/Cargo.toml b/servo/Cargo.toml
index d93fbfb06..a0ff46201 100644
--- a/servo/Cargo.toml
+++ b/servo/Cargo.toml
@@ -20,7 +20,7 @@ bench = false
[features]
default = ["glutin_app", "webdriver", "max_log_level"]
-max_log_level = ["env_logger/log/release_max_level_info"]
+max_log_level = ["log/release... | 1 | 2 | 1 |
7e13dc72ba2561fc7674f8b12d343be4e174ac5f | Ms2ger | 2016-05-25T06:03:38 | servo: Merge #11337 - Don't block the script listener thread on window.close() (from Ms2ger:compositor-exit-wait); r=pcwalton
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [x] `./mach build -d` does not report any errors
- [... | diff --git a/compositing/compositor.rs b/compositing/compositor.rs
index 5d7b72b09..864c8e33c 100644
--- a/compositing/compositor.rs
+++ b/compositing/compositor.rs
@@ -528,9 +528,8 @@ impl<Window: WindowMethods> IOCompositor<Window> {
return false
}
- (Msg::Exit(channel), _) ... | 2 | 5 | 8 |
443b9671f9253d9fa836b27f313279fe40a2dcc3 | Ms2ger | 2016-05-25T05:09:16 | servo: Merge #11366 - Stop storing CSS errors on the Document (from Ms2ger:css_errors_store); r=SimonSapin
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tid... | diff --git a/script/dom/document.rs b/script/dom/document.rs
index d204bd0d8..427082653 100644
--- a/script/dom/document.rs
+++ b/script/dom/document.rs
@@ -2,7 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-use devtools... | 2 | 13 | 23 |
1f9b36d4d7a6643825da617e4cf5853ffe9bcf44 | Zhen Zhang | 2016-05-25T03:17:15 | servo: Merge #11368 - Fix FileManager thread panic and other misc improvements (from izgzhen:fix-filemanager-exit); r=asajeffrey
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy --faster` does not report any errors
- [x] There are tests for these changes
Changes:
- Add shut down logic for F... | diff --git a/constellation/constellation.rs b/constellation/constellation.rs
index f595b4f65..bbe25acc4 100644
--- a/constellation/constellation.rs
+++ b/constellation/constellation.rs
@@ -38,6 +38,7 @@ use msg::constellation_msg::{SubpageId, WindowSizeData, WindowSizeType};
use msg::constellation_msg::{self, PanicMsg... | 4 | 11 | 3 |
dd31ba527d488235672030ad3417261ad4a27b41 | Simon Sapin | 2016-05-24T22:59:31 | servo: Merge #10796 - Make /dom/nodes/CharacterData-surrogates.html not panic (from servo:character-data-surrogates); r=nox
It now fails since `DOMString` is currently based on `std::string::String` on the Rust side, which is strictly well-formed UTF-8 and can not contain unpaired surrogate code points.
Fixes #10780
... | diff --git a/script/dom/characterdata.rs b/script/dom/characterdata.rs
index 74fd0db94..01f11e3ac 100644
--- a/script/dom/characterdata.rs
+++ b/script/dom/characterdata.rs
@@ -20,6 +20,7 @@ use dom::node::{Node, NodeDamage};
use dom::processinginstruction::ProcessingInstruction;
use dom::text::Text;
use std::cell::... | 1 | 92 | 24 |
1bfc1fd6ad560b5c5b8558bc5957acf8989ec151 | Cameron McCormack | 2016-05-24T21:41:04 | servo: Merge #11287 - Support -moz-binding in geckolib (from heycam:moz-binding); r=bholley
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy --faster` doe... | diff --git a/script/dom/cssstyledeclaration.rs b/script/dom/cssstyledeclaration.rs
index 6d537c40e..df9251f38 100644
--- a/script/dom/cssstyledeclaration.rs
+++ b/script/dom/cssstyledeclaration.rs
@@ -16,6 +16,7 @@ use std::ascii::AsciiExt;
use std::borrow::ToOwned;
use std::cell::Ref;
use string_cache::Atom;
+use s... | 13 | 170 | 33 |
820a5762e74e4af3e04cdd54f8152799bba3d0e6 | Matt Brubeck | 2016-05-24T17:39:44 | servo: Merge #11303 - Always include the last-resort font (from mbrubeck:last-resort); r=pcwalton
This is used as a fallback for any characters that don't have glyphs in the specified font. Without this, per-glyph font fallback doesn't work because the FontGroup always contains only one font. Fixes missing glyphs on... | diff --git a/gfx/font_context.rs b/gfx/font_context.rs
index 42415d9b8..d6c26083b 100644
--- a/gfx/font_context.rs
+++ b/gfx/font_context.rs
@@ -223,38 +223,35 @@ impl FontContext {
}
}
- // If unable to create any of the specified fonts, create one from the
- // list of last resor... | 3 | 35 | 38 |
591a1db50b4015d99805a53219502dafba8699bd | Ms2ger | 2016-05-24T15:33:41 | servo: Merge #11371 - Avoid an unnecessary runtime check in Pipeline::create() (from Ms2ger:pipeline-create); r=asajeffrey
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [x] `./mach build -d` does not report any errors
- [x] ... | diff --git a/constellation/pipeline.rs b/constellation/pipeline.rs
index 8f9252bd2..dcab55b36 100644
--- a/constellation/pipeline.rs
+++ b/constellation/pipeline.rs
@@ -130,7 +130,6 @@ impl Pipeline {
.expect("Pipeline main chan");;
let (script_to_compositor_chan, script_to_compositor_port) = ipc:... | 1 | 4 | 6 |
b8c12b3fe22548d301e1609e81475b853529f018 | Keith Yeung | 2016-05-24T14:42:23 | servo: Merge #10962 - Parse HTMLInputElement attributes (from KiChjang:input-attr-parse); r=asajeffrey
Fixes #10491.
Source-Repo: https://github.com/servo/servo
Source-Revision: 8c4929a196ca933532d0c6948c9eebd92be4013a | diff --git a/script/dom/htmlinputelement.rs b/script/dom/htmlinputelement.rs
index dbc0d4f8f..8977d4504 100644
--- a/script/dom/htmlinputelement.rs
+++ b/script/dom/htmlinputelement.rs
@@ -271,22 +271,22 @@ impl LayoutHTMLInputElementHelpers for LayoutJS<HTMLInputElement> {
impl HTMLInputElementMethods for HTMLInput... | 3 | 44 | 30 |
a94d21f85ff7ffdf5c3b283b4bf6acbce4488f8f | Ms2ger | 2016-05-24T13:48:46 | servo: Merge #11364 - Move CompositorMsg to script_traits (from Ms2ger:CompositorMsg); r=nox
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy --faster` do... | diff --git a/compositing/compositor.rs b/compositing/compositor.rs
index 5d29140e3..5d7b72b09 100644
--- a/compositing/compositor.rs
+++ b/compositing/compositor.rs
@@ -2,9 +2,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-... | 9 | 64 | 60 |
1600f0e353ae2aac5c5988111e0747596c74648b | Ms2ger | 2016-05-24T08:20:30 | servo: Merge #11359 - Remove the unused ScriptControlChan type (from servo:ScriptControlChan); r=Manishearth
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [ ] `./mach build -d` does not report any errors
- [ ] `./mach test-t... | diff --git a/script_traits/lib.rs b/script_traits/lib.rs
index 7e3ebc954..2dee02fec 100644
--- a/script_traits/lib.rs
+++ b/script_traits/lib.rs
@@ -338,10 +338,6 @@ pub struct InitialScriptState {
pub content_process_shutdown_chan: IpcSender<()>,
}
-/// Encapsulates external communication with the script threa... | 1 | 0 | 4 |
0b8e544aabd10d46fe8e3b6864062d1eed414526 | Connor Brewster | 2016-05-24T07:11:01 | servo: Merge #11352 - Fixed colspan not including cell spacing (from cbrewster:colspan_spacing); r=pcwalton
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-ti... | diff --git a/layout/table_row.rs b/layout/table_row.rs
index 7fb6cd6ab..ca5b51339 100644
--- a/layout/table_row.rs
+++ b/layout/table_row.rs
@@ -357,7 +357,7 @@ impl Flow for TableRowFlow {
None => break,
};
column_computed_inline_size.size = column_compute... | 1 | 1 | 1 |
4d4c9bc48351532a2f58d2e295aede2bb8f54a7d | Manish Goregaokar | 2016-05-24T04:56:38 | servo: Merge #11353 - Update webrender (from Manishearth:wrup); r=mbrubeck
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy --faster` does not report any ... | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index e7e3abad1..9d450aacf 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -2501,7 +2501,7 @@ dependencies = [
[[package]]
name = "webrender"
version = "0.1.0"
-source = "git+https://github.com/servo/webrender#5f461db430272f81076bad17188c1f964e85f3b2"
+source ... | 1 | 1 | 1 |
acfaec378fc81a5fe0093b5181c94293aae72479 | Ms2ger | 2016-05-24T02:16:12 | servo: Merge #11338 - Take ScriptThread::compositor out of its RefCell (from Ms2ger:compositor-refcell); r=nox
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [x] `./mach build -d` does not report any errors
- [x] `./mach test... | diff --git a/script/dom/document.rs b/script/dom/document.rs
index 2aebe049d..1962e4622 100644
--- a/script/dom/document.rs
+++ b/script/dom/document.rs
@@ -1055,7 +1055,7 @@ impl Document {
key: Key,
state: KeyState,
modifiers... | 2 | 10 | 11 |
38f02fa701e48eb31b2fd4e8a0dc09a793ff6659 | Matt Brubeck | 2016-05-24T01:21:06 | servo: Merge #11347 - Don't create HarfBuzz shaper if it isn't used (from mbrubeck:fast-shape); r=pcwalton
Move the fast shaping code out of `text::shaping::harfbuzz`, and initialize the HarfBuzz shaper lazily to avoid allocating unnecessary HarfBuzz objects.
Note: As the fast shaping code grows and gains OpenType su... | diff --git a/gfx/font.rs b/gfx/font.rs
index 7fdf217d1..c401c616d 100644
--- a/gfx/font.rs
+++ b/gfx/font.rs
@@ -9,6 +9,7 @@ use platform::font::{FontHandle, FontTable};
use platform::font_context::FontContextHandle;
use platform::font_template::FontTemplateData;
use smallvec::SmallVec;
+use std::ascii::AsciiExt;
u... | 2 | 71 | 106 |
70c16e817ba19f795660cd2ac132da416230aa6f | Ms2ger | 2016-05-23T22:36:43 | servo: Merge #11343 - Privatize some things in compositing (from servo:privatize-compositing); r=nox
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy --fa... | diff --git a/compositing/compositor.rs b/compositing/compositor.rs
index 0b78e6887..5d29140e3 100644
--- a/compositing/compositor.rs
+++ b/compositing/compositor.rs
@@ -58,14 +58,14 @@ use webrender_traits::{self, ScrollEventPhase};
use windowing::{self, MouseWindowEvent, WindowEvent, WindowMethods, WindowNavigateMsg}... | 2 | 20 | 21 |
7f589b1dcc82d75cfedebeba63f785362e51d937 | Matt Brubeck | 2016-05-23T20:05:52 | servo: Merge #11346 - Update gleam, regex, byteorder, openssl, immeta (from mbrubeck:always-be-updating); r=nox
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [x] `./mach build -d` does not report any errors
- [x] `./mach tes... | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index 26349c201..b8690c071 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -16,7 +16,7 @@ dependencies = [
"gaol 0.0.1 (git+https://github.com/servo/gaol)",
"gfx 0.0.1",
"gfx_tests 0.0.1",
- "gleam 0.2.18 (registry+https://github.com/rust-lang/crates.io-ind... | 1 | 42 | 42 |
898c5a50f12bd358362fbf4d97ec3b85ddf9c384 | Anthony Ramine | 2016-05-23T17:50:37 | servo: Merge #11341 - Use a simple Vec for the animation frame list (from nox:raf); r=pcwalton
Adding an animation frame list is now just pushing a new pair onto the vector,
while canceling one is setting its callback to None.
This means we can't send NoAnimationCallbacksPresent anymore to the constellation
when all ... | diff --git a/script/dom/document.rs b/script/dom/document.rs
index 10645b761..2aebe049d 100644
--- a/script/dom/document.rs
+++ b/script/dom/document.rs
@@ -112,8 +112,8 @@ use std::ascii::AsciiExt;
use std::borrow::ToOwned;
use std::boxed::FnBox;
use std::cell::{Cell, Ref, RefMut};
+use std::collections::HashMap;
... | 1 | 15 | 13 |
a92e1e59d0f5890f087e7f86a36d5a42ea4e14a9 | Ms2ger | 2016-05-23T15:17:38 | servo: Merge #11334 - Remove pub uses from compositor_thread.rs (from Ms2ger:pub-use-compositor_thread); r=Manishearth
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [x] `./mach build -d` does not report any errors
- [x] `./m... | diff --git a/compositing/compositor_thread.rs b/compositing/compositor_thread.rs
index 811dd7826..79beb580d 100644
--- a/compositing/compositor_thread.rs
+++ b/compositing/compositor_thread.rs
@@ -5,6 +5,7 @@
//! Communication with the compositor thread.
use CompositorMsg as ConstellationMsg;
+use SendableFrameTree... | 1 | 2 | 3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.