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
6739dd90dce1741a73af320e5d7ca80aaa234555
Bastien Orivel
2018-03-21T13:00:16
servo: Merge #20371 - Bump ipc-channel and bincode (from Eijebong:ipc-channel); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 02c758a2266f51a95dc2ef647462e13fad4bb6a8
diff --git a/bluetooth/Cargo.toml b/bluetooth/Cargo.toml index 3fd11443d..53784d13e 100644 --- a/bluetooth/Cargo.toml +++ b/bluetooth/Cargo.toml @@ -13,10 +13,10 @@ path = "lib.rs" bitflags = "1.0" bluetooth_traits = {path = "../bluetooth_traits"} device = {git = "https://github.com/servo/devices", features = ["blue...
30
45
35
71cf40892c4726c80191960ade1f658f3294fd6e
Bastien Orivel
2018-03-21T10:41:31
servo: Merge #20298 - Bump servo-websocket to 0.21 (from Eijebong:websocket); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 5b575e36479bd1edc46a036c780dccf274dd430c
diff --git a/net/Cargo.toml b/net/Cargo.toml index 278076637..b9f24ebac 100644 --- a/net/Cargo.toml +++ b/net/Cargo.toml @@ -35,7 +35,7 @@ serde = "1.0" serde_json = "1.0" servo_config = {path = "../config"} servo_url = {path = "../url"} -servo-websocket = "0.20" +servo-websocket = { version = "0.21", default-featur...
2
34
19
be587f56976bd99910a37e2c2509cf915ce8c61a
Igor Gutorov
2018-03-20T23:58:58
servo: Merge #20369 - Move WebGL validation (from gootorov:move-validation); r=emilio This moves validation from `canvas/webgl_thread` to `dom/webglrenderingcontext` for consistency and speed and simplifies it where it is possible. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when ...
diff --git a/canvas/webgl_thread.rs b/canvas/webgl_thread.rs index bfb6c7ab5..e27d85c43 100644 --- a/canvas/webgl_thread.rs +++ b/canvas/webgl_thread.rs @@ -1066,21 +1066,8 @@ impl WebGLImpl { fn get_tex_parameter(gl: &gl::Gl, target: u32, pname: u32, - ...
3
78
90
0ec6e398378f50064ee81fe9d06ec98818c5c721
Matt
2018-03-19T21:46:42
servo: Merge #20328 - Re-expose webrender debugger feature in components/servo (from Moggers:enable-debugger); 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 appropriat...
diff --git a/debugger/Cargo.toml b/debugger/Cargo.toml index d09814852..a5f2f4b4e 100644 --- a/debugger/Cargo.toml +++ b/debugger/Cargo.toml @@ -12,4 +12,4 @@ crate_type = ["rlib"] [dependencies] log = "0.3.5" -ws = "0.6" +ws = "0.7.3" diff --git a/servo/Cargo.toml b/servo/Cargo.toml index a7860f5ef..2bdb5e9af 1006...
2
2
1
162755e3871cde166a2b3eeb54ee30b660063dbe
Jonathan Watt
2018-03-19T16:53:48
servo: Merge #20351 - Add Servo_Property_IsShorthand to geckolib/glue.rs (from jwatt:master); 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: --> - ...
diff --git a/style/properties/properties.mako.rs b/style/properties/properties.mako.rs index 283e8dd1f..99922dacf 100644 --- a/style/properties/properties.mako.rs +++ b/style/properties/properties.mako.rs @@ -1645,6 +1645,12 @@ impl PropertyId { } } + /// Returns true if the property is a shorthand o...
1
6
0
0149d2e2592c3d82e13ccfe7aaa44ac801c1f7ba
Emilio Cobos Álvarez
2018-03-19T13:34:00
servo: Merge #20340 - style: Better Shadow DOM assertions (from emilio:shadow-dom-assert); r=xidorn Bug: 1445682 Reviewed-by: xidorn Differential Revision: https://phabricator.services.mozilla.com/D748 Source-Repo: https://github.com/servo/servo Source-Revision: 794c0d445a6c5eb5977b9d2cd4ba3b30ce18eefa
diff --git a/style/gecko/wrapper.rs b/style/gecko/wrapper.rs index db3188bd0..ace768672 100644 --- a/style/gecko/wrapper.rs +++ b/style/gecko/wrapper.rs @@ -171,6 +171,7 @@ impl<'lr> TShadowRoot for GeckoShadowRoot<'lr> { let author_styles = AuthorStyles::<GeckoStyleSheet>::from_ffi(author_styles)...
2
2
1
769fd0154767f9704796cd063cf39b49056ad5ee
Emilio Cobos Álvarez
2018-03-19T11:18:02
servo: Merge #20338 - Add a pref to allow parsing @-moz-document url-prefix in content (from emilio:moz-document-haxx); r=xidorn Bug: 1446470 Reviewed-by: xidorn Source-Repo: https://github.com/servo/servo Source-Revision: 28348ba6b6562892eaccdc2cb2dfcd6322b8e4da
diff --git a/style/gecko/generated/structs.rs b/style/gecko/generated/structs.rs index 5374f420c..381555782 100644 --- a/style/gecko/generated/structs.rs +++ b/style/gecko/generated/structs.rs @@ -12244,6 +12244,10 @@ pub mod root { #[link_name = "\u{1}_ZN7mozilla10StylePrefs28sMozDocumentEnabledInContentE...
3
77
39
8547b440c0012805caf44ae57e4f080ca08396c7
Emilio Cobos Álvarez
2018-03-19T10:11:14
servo: Merge #20339 - style: Remove unsound Atom From implementations (from emilio:atom-from-dead-beef); r=nox Fixes #20158 Source-Repo: https://github.com/servo/servo Source-Revision: b47224dbcce2974e6f572b284cba1e2f5393b95d
diff --git a/style/gecko/conversions.rs b/style/gecko/conversions.rs index b4171abb2..43a4b8dc9 100644 --- a/style/gecko/conversions.rs +++ b/style/gecko/conversions.rs @@ -413,7 +413,7 @@ impl nsStyleImage { nsStyleImageType::eStyleImageType_Element => { use gecko_string_cache::Atom; ...
6
44
48
c9f04132972625043ca7769a6b2450a1bc117032
Nupur Baghel
2018-03-19T08:25:56
servo: Merge #20304 - CounterBound::Integer made to store an Integer (from nupurbaghel:counterbound); 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...
diff --git a/style/counter_style/mod.rs b/style/counter_style/mod.rs index e727e004e..475a2186b 100644 --- a/style/counter_style/mod.rs +++ b/style/counter_style/mod.rs @@ -22,6 +22,7 @@ use str::CssStringWriter; use style_traits::{Comma, CssWriter, OneOrMoreSeparated, ParseError}; use style_traits::{StyleParseErrorK...
2
11
17
84cc2657e455c58ce7fbcd77ee533a19737ca4aa
Paul Rouget
2018-03-16T21:18:24
servo: Merge #20071 - Use typed coordinates more (from paulrouget:typedsize); r=glennw Requires https://github.com/servo/servo/pull/19895 We use Size2D and Point2D across compositing, constellation and script, loosing the type of pixels we use (DevicePixel, DeviceIndepententPixel or CSSPixel) along the way, which mig...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 88a3dc6b5..2b409b7ae 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -21,7 +21,7 @@ use script_traits::{MouseButton, MouseEventType, ScrollState, TouchEventType, To use script_traits::{UntrustedNodeAddress, WindowSizeDat...
11
106
86
f1cfa20e6cee00a88e75a29985f5716e06e3eb6b
OJ Kwon
2018-03-16T17:49:17
servo: Merge #20315 - feat(window): bind hotkey to trigger capture event (from kwonoj:feat-webrender-capture); r=jdm <!-- Please describe your changes on the following line: --> Relates to #20295. This PR intends to expose additional hotkey to window to allow capture webrender. Internally it adds one new `WindowEvent...
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index 88cd1c479..736fef8a5 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -27,5 +27,5 @@ servo_geometry = {path = "../geometry"} servo_url = {path = "../url"} style_traits = {path = "../style_traits"} time = "0.1.17" -webrender = {git ...
4
21
2
f5ef5d340205bc35832294c1b0b1abdd8b01ef6a
Fabrice Desré
2018-03-16T03:23:54
servo: Merge #20310 - Update the MULTIPROCESS static when changing default options (from fabricedesre:opt-multiprocess); r=jdm <!-- Please describe your changes on the following line: --> When the options are set not from the command line but by calling `set_defaults()` which is common for embedders, the MULTIPROCESS ...
diff --git a/config/opts.rs b/config/opts.rs index fbca63417..c9b70b5a1 100644 --- a/config/opts.rs +++ b/config/opts.rs @@ -911,6 +911,9 @@ lazy_static! { } pub fn set_defaults(opts: Opts) { + // Set the static to the new default value. + MULTIPROCESS.store(opts.multiprocess, Ordering::SeqCst); + unsafe...
1
3
0
f198a72f5937ca7fd75ea5e266ce7a765597c862
Glenn Watson
2018-03-16T02:19:31
servo: Merge #20311 - Update WR (local clip API change, texture cache optimizations) (from glennw:update-wr-pic); r=mbrubeck Update WR (local clip API change, texture cache optimizations). Source-Repo: https://github.com/servo/servo Source-Revision: 57b12aaaaf61ad02006014465ed2c93c7ecb1e77
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 23efeaf94..aa081c1e2 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -28,8 +28,8 @@ use std::fmt; use webrender_api::{BorderRadius, BorderWidths, BoxShadowClipMode, ClipMode, ColorF}; use webrender_api::{ComplexClipRegion, Exte...
4
36
35
671927ed426537b75a145021affde0879119cb8d
Anthony Ramine
2018-03-15T14:17:43
servo: Merge #20305 - Don't access the reflector when dropping a Promise (fixes #18651) (from servo:OMAE-WA-MOU-SHINDEIRU); r=jdm The reflector may be dead already. Source-Repo: https://github.com/servo/servo Source-Revision: 46a8e7184b949d3c03d3a66aa3a9d6fdf7156254
diff --git a/script/dom/promise.rs b/script/dom/promise.rs index 20485618c..ef5eb1906 100644 --- a/script/dom/promise.rs +++ b/script/dom/promise.rs @@ -19,13 +19,13 @@ use dom::globalscope::GlobalScope; use dom::promisenativehandler::PromiseNativeHandler; use dom_struct::dom_struct; use js::conversions::ToJSValConv...
1
13
8
7c71045af3323cc86961bbfbd545da8a75eca62a
Emilio Cobos Álvarez
2018-03-14T17:26:00
servo: Merge #20224 - Fix counter() and counters() serialization (from emilio:counter-serialization); r=nox See https://github.com/w3c/csswg-drafts/issues/670 and https://github.com/w3c/web-platform-tests/pull/9862. Source-Repo: https://github.com/servo/servo Source-Revision: 7b326529db64ac27f0b956880b3b63dd12cd0c1a
diff --git a/style/values/specified/counters.rs b/style/values/specified/counters.rs index f7130a79b..d1d4f138f 100644 --- a/style/values/specified/counters.rs +++ b/style/values/specified/counters.rs @@ -76,9 +76,22 @@ fn parse_counters<'i, 't>( #[cfg(feature = "servo")] type CounterStyleType = ListStyleType; + #...
1
15
2
e5ec3f2d39e688dfabf16f32b32fc70f8fbc3c4d
Emilio Cobos Álvarez
2018-03-14T14:38:45
servo: Merge #20243 - style: add infrastructure to match the :host selector (from emilio:host-selector-on-the-way); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 148beb4ea5f8f1680e694ac48045a632da58269c
diff --git a/layout_thread/dom_wrapper.rs b/layout_thread/dom_wrapper.rs index 5c5fc4be0..55bacd037 100644 --- a/layout_thread/dom_wrapper.rs +++ b/layout_thread/dom_wrapper.rs @@ -659,6 +659,14 @@ impl<'le> ::selectors::Element for ServoLayoutElement<'le> { } } + fn parent_node_is_shadow_root(&self)...
9
178
51
977b4f96042eac93dbfa05fa48672d374bc91fb6
Bastien Orivel
2018-03-13T11:38:06
servo: Merge #20288 - Update libloading to 0.5 (from Eijebong:libloading); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: b051e9eb6ce0d188c760aee287e4e554dc5abfc3
diff --git a/style/Cargo.toml b/style/Cargo.toml index 2a81d1e0f..e631cd133 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -78,7 +78,7 @@ kernel32-sys = "0.2" [build-dependencies] lazy_static = "1" log = "0.3" -bindgen = { version = "0.33.1", optional = true, default-features = false } +bindgen = { version ...
1
1
1
ead4695e058941b193dd65db74fca6c28a581754
Bastien Orivel
2018-03-13T09:36:44
servo: Merge #20204 - Rebump toml and error-chain (from Eijebong:bump); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 7e0f45b1c7047d9e1b16f39c005de7f92e462df7
diff --git a/style/Cargo.toml b/style/Cargo.toml index 88b64ca81..2a81d1e0f 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -81,4 +81,4 @@ log = "0.3" bindgen = { version = "0.33.1", optional = true, default-features = false } regex = {version = "0.2", optional = true} walkdir = "1.0" -toml = {version = "0.2...
2
17
25
6325c877bac3c58716e7dc54dc114bd694c051e4
Igor Gutorov
2018-03-13T00:26:53
servo: Merge #20283 - style: Fix a typo in Integer struct docs (from gootorov:patch-1); r=jdm <!-- Please describe your changes on the following line: --> Fix a typo in `Integer` struct documentation. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and repla...
diff --git a/style/values/specified/mod.rs b/style/values/specified/mod.rs index ef7cb87eb..16d4c5129 100644 --- a/style/values/specified/mod.rs +++ b/style/values/specified/mod.rs @@ -377,7 +377,7 @@ impl ToComputedValue for Opacity { } } -/// An specified `<integer>`, optionally coming from a `calc()` express...
1
1
1
d9c0cd0a55e92defae97835d23d42ef91d50a4be
Emilio Cobos Álvarez
2018-03-12T20:48:36
servo: Merge #20223 - style: Allow to share style across elements with similar XBL bindings (from emilio:share-xbl); r=xidorn,bholley Also move the checks so that the tag name checks (presumably cheaper) come earlier. Source-Repo: https://github.com/servo/servo Source-Revision: 087cf21d79cb090c2a8b55b441e6004921b540a...
diff --git a/layout_thread/dom_wrapper.rs b/layout_thread/dom_wrapper.rs index 5cf29e8e1..5c5fc4be0 100644 --- a/layout_thread/dom_wrapper.rs +++ b/layout_thread/dom_wrapper.rs @@ -151,10 +151,10 @@ impl<'ln> NodeInfo for ServoLayoutNode<'ln> { } } -#[derive(Clone, Copy)] +#[derive(Clone, Copy, PartialEq)] enu...
4
48
44
b1ab4f5f888a0d8d8fee3632f65091d75e556c44
Simon Sapin
2018-03-12T13:23:52
servo: Merge #20216 - Switch from servo/angle to the mozangle crate (from servo:mozangle); r=emilio https://github.com/servo/mozangle Source-Repo: https://github.com/servo/servo Source-Revision: 345c373192a30329c2c4f70631ab0792fc348f7d
diff --git a/script/Cargo.toml b/script/Cargo.toml index 3db7e6970..a82a10df5 100644 --- a/script/Cargo.toml +++ b/script/Cargo.toml @@ -99,4 +99,4 @@ webrender_api = {git = "https://github.com/servo/webrender", features = ["ipc"]} webvr_traits = {path = "../webvr_traits"} [target.'cfg(not(target_os = "ios"))'.depe...
4
61
11
a3a0ddcb427e4696949b5bdd34e9db073a1406da
Emilio Cobos Álvarez
2018-03-12T11:12:13
servo: Merge #20274 - style: Make the generated bindings really be formatted (from emilio:moz-src); r=xidorn TOOLTOOL_DIR isn't passed down to the rust scripts it seems, per: https://treeherder.mozilla.org/#/jobs?repo=try&revision=46854db239166ab3a43d36c7a954debb56968eab Source-Repo: https://github.com/servo/servo...
diff --git a/style/build_gecko.rs b/style/build_gecko.rs index bf6ded11c..eeb15c8e7 100644 --- a/style/build_gecko.rs +++ b/style/build_gecko.rs @@ -207,7 +207,7 @@ mod bindings { let mut builder = Builder::default() .rust_target(RustTarget::Stable_1_0); let rustfmt_path = env...
1
1
1
721abf35920e588a62bfb8e05f9aeb369653cf4f
Anthony Ramine
2018-03-12T08:52:02
servo: Merge #20275 - Finish cleaning up trait bounds generation in style_derive (from servo:derive-all-the-things); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 9d4cdfcfc31e4d3fca16e074c7481211f880be9f
diff --git a/style/values/animated/mod.rs b/style/values/animated/mod.rs index ad81a4ecc..9e0653d8a 100644 --- a/style/values/animated/mod.rs +++ b/style/values/animated/mod.rs @@ -35,6 +35,9 @@ pub mod effects; /// /// If the two values are not similar, an error is returned unless a fallback /// function has been s...
9
132
206
5a65c20a96447697266e216a8586ff27bc9ce892
Florian Wagner
2018-03-11T11:47:21
servo: Merge #20185 - Make KeyframesPercentage::parse faster (from Beta-Alf:master); r=emilio Minor refactoring of the parsing of keyframes. --- <!-- 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` d...
diff --git a/style/stylesheets/keyframes_rule.rs b/style/stylesheets/keyframes_rule.rs index 266d953cd..302ac36e4 100644 --- a/style/stylesheets/keyframes_rule.rs +++ b/style/stylesheets/keyframes_rule.rs @@ -5,7 +5,7 @@ //! Keyframes: https://drafts.csswg.org/css-animations/#keyframes use cssparser::{AtRuleParser,...
1
16
15
640527c68870dfb3d887043c4d41bb2d8ce0bcb6
Dmitry
2018-03-10T00:20:10
servo: Merge #20252 - Extract text emphasis style (from NeverHappened:extract_text_emphasis_style); r=upsuper <!-- Please describe your changes on the following line: --> Extracted the text-emphasis-style property out of the inherited_text.mako.rs. This is a part of #19015 --- <!-- Thank you for contributing to Servo...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 5c3de4a50..5ec5e6d41 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -4707,29 +4707,29 @@ fn static_assert() { ${impl_simple_type_with_conversion("text_emphasis_position")} - pub fn set_tex...
6
211
189
64c717d45e87f2c2a6dbf56d63cf5acc92bc3e69
Emilio Cobos Álvarez
2018-03-09T23:24:56
servo: Merge #20262 - constellation: Make setting up the WebGL state fallible (from emilio:webgl-fallible); r=jdm This fixes a regression caused by the glutin update. We now are creating EGL contexts in Linux Wayland, instead of X context, so the GLContextFactory assumption of one GL back-end per platform is broken. ...
diff --git a/canvas/gl_context.rs b/canvas/gl_context.rs index e0d686f62..7720f8f67 100644 --- a/canvas/gl_context.rs +++ b/canvas/gl_context.rs @@ -24,6 +24,9 @@ pub enum GLContextFactory { impl GLContextFactory { /// Creates a new GLContextFactory that uses the currently bound GL context to create shared contex...
8
49
32
f88c75e536ec5f307b544bac5f7e21e04953357b
Anthony Ramine
2018-03-09T22:29:05
servo: Merge #20258 - Continue to improve style_derive (from servo:derive-all-the-things); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 909ebff1844c3fcf95ea3b479b61077ff5a552e2
diff --git a/style/values/computed/mod.rs b/style/values/computed/mod.rs index ff16e3288..ab962c055 100644 --- a/style/values/computed/mod.rs +++ b/style/values/computed/mod.rs @@ -293,8 +293,7 @@ impl<'a, 'cx, 'cx_a: 'cx, S: ToComputedValue + 'a> Iterator for ComputedVecIter< /// /// This trait is derivable with `#[...
8
79
83
b0601ed49064aca07d35e2e12526fb45360d1109
Emilio Cobos Álvarez
2018-03-09T14:49:57
servo: Merge #20255 - style: Fix serialization of place-items (from emilio:place-items); r=xidorn If the justify-items / align-items value has the `legacy` bit or anything like that we shouldn't serialize it, just as we don't parse it. Bug: 1339656 Reviewed-by: xidorn MozReview-Commit-ID: JsM4NrePEU6 Source-Repo: htt...
diff --git a/style/properties/shorthand/position.mako.rs b/style/properties/shorthand/position.mako.rs index 53e4edbc5..971f74ddb 100644 --- a/style/properties/shorthand/position.mako.rs +++ b/style/properties/shorthand/position.mako.rs @@ -722,8 +722,10 @@ } } - pub fn parse_value<'i, 't>(context: &...
1
14
7
df6ec735dd0cbdcac1e0ba53aa102a1ad54aad17
Anthony Ramine
2018-03-09T10:58:22
servo: Merge #20254 - Some random improvements to derived style code (from servo:derive-all-the-things); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 664efab4a33264c07d68013a0ac3585544556b72
diff --git a/style/gecko/url.rs b/style/gecko/url.rs index e737b2992..2642e174b 100644 --- a/style/gecko/url.rs +++ b/style/gecko/url.rs @@ -121,7 +121,7 @@ impl MallocSizeOf for CssUrl { } /// A specified url() value for general usage. -#[derive(Clone, Debug, ToCss)] +#[derive(Clone, Debug, ToComputedValue, ToCss)...
12
63
87
5d610a292960d09381c0a199929186b5507c4c7e
Josh Matthews
2018-03-09T03:47:49
servo: Merge #20251 - Chart memory reports over time (from jdm:memchart); r=ajeffrey This is a tool that can take the output of Servo when run with `-m N` and generate an HTML file that charts the behaviour of the various labels over time. Run with `./mach run http://url >/tmp/log; python etc/memory_reports_over_time...
diff --git a/profile/mem.rs b/profile/mem.rs index 9d09853d5..bb2a3873a 100644 --- a/profile/mem.rs +++ b/profile/mem.rs @@ -12,6 +12,7 @@ use std::borrow::ToOwned; use std::cmp::Ordering; use std::collections::HashMap; use std::thread; +use std::time::Instant; use time::duration_from_seconds; pub struct Profile...
1
7
1
ea77fdafe39d90e66c69702be759feca4cd9b023
Paul Rouget
2018-03-09T02:00:13
servo: Merge #19895 - unfork glutin (from paulrouget:unfork); r=paulrouget I'm taking over #19120. Fix #18918. Beside the change in the API, I had to rewrite main loop. At this point, we should have a very similar behavior as servo-glutin. Source-Repo: https://github.com/servo/servo Source-Revision: c9f60c5a6778fe...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 62d5740d3..027151af9 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -646,10 +646,9 @@ impl<Window: WindowMethods> IOCompositor<Window> { device_pixel_ratio: dppx, initial_viewport: initial_viewp...
3
9
8
e844b3c9b9103f96d7d6d588afee50c41520dee8
Emilio Cobos Álvarez
2018-03-08T23:44:29
servo: Merge #20248 - style: Change the order we match selectors on invalidation to match normal order (from emilio:invalidation-selectors-faster); r=bholley This changes the order to match the normal selector-matching order, which is usually faster. That is, when matching div:nth-child(2), for example, before this p...
diff --git a/selectors/matching.rs b/selectors/matching.rs index 849edf74a..6cb9acf59 100644 --- a/selectors/matching.rs +++ b/selectors/matching.rs @@ -249,23 +249,52 @@ where matches_hover_and_active_quirk: MatchesHoverAndActiveQuirk::No, }; + // Find the end of the selector or the next combinator,...
1
34
5
b037f851eaf8c5b0f5a7c8baf98c6723bb4d584b
Emilio Cobos Álvarez
2018-03-08T21:52:43
servo: Merge #20250 - style: Reorder style sharing checks so that cheaper and broader ones are earlier (from emilio:style-sharing-checks-order); r=xidorn This was reviewed by Xidorn in #20223, but that needs to wait for a few days so let's land this separately. Source-Repo: https://github.com/servo/servo Source-Revis...
diff --git a/style/sharing/mod.rs b/style/sharing/mod.rs index de815d115..6b3bbb9bc 100644 --- a/style/sharing/mod.rs +++ b/style/sharing/mod.rs @@ -656,6 +656,29 @@ impl<E: TElement> StyleSharingCache<E> { return None; } + if target.local_name() != candidate.element.local_name() { + ...
1
23
23
ce18f591236a1924221c4b823ed162eb73e332ae
Bobby Holley
2018-03-08T20:53:11
servo: Merge #20247 - Stop unconditionally collecting traversal statistics in nightly builds (from bholley:fix_stat_collection); r=Manishearth The current code also makes us panic when DUMP_STYLE_STATISTICS=1 is set. :-( Source-Repo: https://github.com/servo/servo Source-Revision: 4c797dfb5239c5e9a4014e91ed121ef9cf64...
diff --git a/style/driver.rs b/style/driver.rs index 4b5528703..93983233c 100644 --- a/style/driver.rs +++ b/style/driver.rs @@ -42,7 +42,6 @@ where token.traversal_root().expect("Should've ensured we needed to traverse"); let dump_stats = traversal.shared_context().options.dump_style_statistics; - l...
1
5
6
46710cf8103fbba253b5437c07b7955f2ac5b1cd
Matt Brubeck
2018-03-08T18:36:04
servo: Merge #20245 - Disable logging in bindgen to reduce code size (from mbrubeck:logging); r=emilio This disables bindgen's `logging` feature, which builds `env_logger` with default features, including regex support. Disabling it allows Gecko to build `env_logger` without the `regex` crate, reducing code size. Pa...
diff --git a/style/Cargo.toml b/style/Cargo.toml index 9b9fa063a..88b64ca81 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -78,7 +78,7 @@ kernel32-sys = "0.2" [build-dependencies] lazy_static = "1" log = "0.3" -bindgen = { version = "0.33.1", optional = true } +bindgen = { version = "0.33.1", optional = tru...
1
1
1
00da578681e0448c8e4e856e830d11eff5bf04a4
Anthony Ramine
2018-03-08T17:25:20
servo: Merge #20237 - Opt into field bounds when deriving ToCss, instead of opting out (from servo:derive-all-the-things); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: b6de0563fbd74799060735b8452f86a533f19573
diff --git a/style/values/generics/basic_shape.rs b/style/values/generics/basic_shape.rs index f0d68b56f..e65350839 100644 --- a/style/values/generics/basic_shape.rs +++ b/style/values/generics/basic_shape.rs @@ -62,9 +62,9 @@ pub enum ShapeSource<BasicShape, ReferenceBox, ImageOrUrl> { #[derive(Animate, Clone, Comput...
10
99
150
d699aa8d4a65d826fe24ac314195d5b5e34a8cf6
Emilio Cobos Álvarez
2018-03-08T16:31:35
servo: Merge #20241 - style: Make getting the XBL binding faster (from emilio:xbl-faster); r=bholley Source-Repo: https://github.com/servo/servo Source-Revision: 9b540d199e87acdbc7aea51f5b7e4370b187ce09
diff --git a/style/gecko/wrapper.rs b/style/gecko/wrapper.rs index f3e609701..b4e7862bc 100644 --- a/style/gecko/wrapper.rs +++ b/style/gecko/wrapper.rs @@ -616,7 +616,8 @@ impl<'le> GeckoElement<'le> { return None; } - unsafe { bindings::Gecko_GetXBLBinding(self.0).map(GeckoXBLBinding) }...
1
2
1
b0b0337c0c6b783b0510c003f1c81edd022b1da2
Emilio Cobos Álvarez
2018-03-08T15:06:03
servo: Merge #20240 - style: Fix special color keywords (from emilio:special-color-fix); r=upsuper They're -moz-activehyperlinktext and -moz-visitedhyperlinktext. This fixes https://bugzilla.mozilla.org/show_bug.cgi?id=1444059. Source-Repo: https://github.com/servo/servo Source-Revision: 212c321145a516ddf3ae17a9f045...
diff --git a/style/properties/longhand/color.mako.rs b/style/properties/longhand/color.mako.rs index 3dfc685f0..a4d183019 100644 --- a/style/properties/longhand/color.mako.rs +++ b/style/properties/longhand/color.mako.rs @@ -63,7 +63,6 @@ pub mod system_colors { IMESelectedConvertedTextBackgr...
2
13
13
90941479a34212eda42efdd2c1748a1bc9f88f08
Emilio Cobos Álvarez
2018-03-08T14:16:55
servo: Merge #20236 - Introduce #[css(skip_if)] (from emilio:to-css-skip-if); r=nox This is most of #20224 but without the actual counter() fix since it's waiting on a WPT update. Source-Repo: https://github.com/servo/servo Source-Revision: 8133f788cfbde23cc54032a3327303b42257b91d
diff --git a/style/properties/longhand/list.mako.rs b/style/properties/longhand/list.mako.rs index 12a73d046..c478dc6f9 100644 --- a/style/properties/longhand/list.mako.rs +++ b/style/properties/longhand/list.mako.rs @@ -15,31 +15,29 @@ ${helpers.single_keyword("list-style-position", "outside inside", animation_valu /...
4
50
68
9466cfe67d4ee817421f7e5a99be1deee4c5fe1c
Anthony Ramine
2018-03-07T16:06:09
servo: Merge #20230 - Introduce #[css(if_empty = "…", iterable)] (from servo:derive-all-the-things); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 2f4c13d27d4acf5a5a356c9168feb7203ecf2d14
diff --git a/style/properties/helpers.mako.rs b/style/properties/helpers.mako.rs index 1be21cd37..43c912516 100644 --- a/style/properties/helpers.mako.rs +++ b/style/properties/helpers.mako.rs @@ -83,10 +83,6 @@ need_animatable=need_animatable, **kwargs)"> #[allow(unused_imports)] ...
5
52
96
1c3746a2e57a8e54071ba58290f031b43b5c3581
Emilio Cobos Álvarez
2018-03-07T15:06:05
servo: Merge #20229 - style: Separate the XBL and shadow dom styling bits (from emilio:finally); r=xidorn Bug: 1441022 Reviewed-by: xidorn MozReview-Commit-ID: 2W0BmZ8wWXg Source-Repo: https://github.com/servo/servo Source-Revision: 6272233c50071534ddbab118b64ecdb8fdda7c8a
diff --git a/layout_thread/dom_wrapper.rs b/layout_thread/dom_wrapper.rs index 3161de39b..5cf29e8e1 100644 --- a/layout_thread/dom_wrapper.rs +++ b/layout_thread/dom_wrapper.rs @@ -74,6 +74,7 @@ use style::selector_parser::{AttrValue as SelectorAttrValue, NonTSPseudoClass, P use style::selector_parser::{PseudoElement,...
7
107
57
d4c1a77c16baf0c54efc8b16675b588aafb624bf
Xidorn Quan
2018-03-06T22:54:34
servo: Merge #20222 - Do not disable thread pool in the parent process (from upsuper:chrome-thread-pool); r=bholley This is the Servo side change of [bug 1375913](https://bugzilla.mozilla.org/show_bug.cgi?id=1375913). Source-Repo: https://github.com/servo/servo Source-Revision: 3b96fb2cbe8754b30646e8bd914806048c0b6db...
diff --git a/style/gecko/generated/bindings.rs b/style/gecko/generated/bindings.rs index 9f1a6b529..af68adf76 100644 --- a/style/gecko/generated/bindings.rs +++ b/style/gecko/generated/bindings.rs @@ -1684,9 +1684,6 @@ extern "C" { extern "C" { pub fn Gecko_RegisterNamespace(ns: *mut nsAtom) -> i32; } -extern "C...
2
1
5
e243791109b75e9c23020269003841d4a6eb931f
Martin Robinson
2018-03-06T20:53:11
servo: Merge #20214 - Stop using LocalClip::RoundedRect (from mrobinson:stop-using-using-localclip-roundedrect); r=glennw We would like to remove this functionality from WebRender, so convert its use to clip scroll nodes. This change also removes the redundant BlocBlockStackingContextType in favor of Option<StackingCo...
diff --git a/layout/block.rs b/layout/block.rs index d7505e7b8..225def736 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -3109,11 +3109,3 @@ impl ISizeAndMarginsComputer for InlineFlexItem { fragment.margin.inline_end) } } - -/// A stacking context, a pseudo-stacking c...
2
135
120
0b9f48a05cb9b7e51440274d9f4fef0bc82899d3
Anthony Ramine
2018-03-06T16:42:58
servo: Merge #20211 - Improve #[derive(ToCss)] (from servo:derive-all-the-things); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 785b7c7775ae13c02556c84a16469efc6c4d71e8
diff --git a/style/counter_style/mod.rs b/style/counter_style/mod.rs index 397598d45..e727e004e 100644 --- a/style/counter_style/mod.rs +++ b/style/counter_style/mod.rs @@ -547,9 +547,8 @@ impl Parse for Fallback { /// <https://drafts.csswg.org/css-counter-styles/#descdef-counter-style-symbols> #[cfg_attr(feature =...
10
146
111
fcdf02c74925b802deffb99f8bab4a5438037ae5
Emilio Cobos Álvarez
2018-03-06T10:29:17
servo: Merge #20210 - style: Add a comment about the weird setup for justify-items (from emilio:justify-items-kinda-sucks); r=Manishearth And derive ToCss while at it. Source-Repo: https://github.com/servo/servo Source-Revision: 226d9a5b0e69185b95c62e79b81044beba477654
diff --git a/style/values/computed/align.rs b/style/values/computed/align.rs index 02a93ee6f..ec6882a15 100644 --- a/style/values/computed/align.rs +++ b/style/values/computed/align.rs @@ -6,8 +6,6 @@ //! //! https://drafts.csswg.org/css-align/ -use std::fmt; -use style_traits::{CssWriter, ToCss}; use values::comp...
1
20
12
9a260a504dd4c66803890297946aade688c2e7a6
Anthony Ramine
2018-03-06T08:33:18
servo: Merge #20200 - Derive some more ToCss stuff again (from servo:derive-all-the-things); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 17b5a8332b4309188ea7ce9c1aa5919aeb7834e6
diff --git a/style/font_face.rs b/style/font_face.rs index 38de34a37..96a13416f 100644 --- a/style/font_face.rs +++ b/style/font_face.rs @@ -48,24 +48,16 @@ impl OneOrMoreSeparated for Source { /// `url()` function. /// /// <https://drafts.csswg.org/css-fonts/#src-desc> -#[derive(Clone, Debug, Eq, PartialEq)] #[cfg...
9
35
113
c09af1699457560ee341f7c7e43dcd7e07dee248
shindli
2018-03-05T16:55:45
Backed out 2 changesets (fd805c59ae56, 270e441c3649) for servo bustage on a CLOSED TREE Backed out changeset fd805c59ae56 Backed out changeset 270e441c3649
diff --git a/style/Cargo.toml b/style/Cargo.toml index 7a6ce2ebd..9b9fa063a 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -81,4 +81,4 @@ log = "0.3" bindgen = { version = "0.33.1", optional = true } regex = {version = "0.2", optional = true} walkdir = "1.0" -toml = {version = "0.4.5", optional = true, defa...
1
1
1
049de4b0a4cd5f9ed34cdbc8aaa452277e4f59a9
Bastien Orivel
2018-03-05T15:22:24
servo: Merge #20201 - Bump some dependencies now that metadeps is out of the way ᕕ( ᐛ )ᕗ (from Eijebong:bump); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 05dcfe2983f906ab5909843e242987f154360f6a
diff --git a/style/Cargo.toml b/style/Cargo.toml index 9b9fa063a..7a6ce2ebd 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -81,4 +81,4 @@ log = "0.3" bindgen = { version = "0.33.1", optional = true } regex = {version = "0.2", optional = true} walkdir = "1.0" -toml = {version = "0.2.1", optional = true, defa...
1
1
1
ca7ce11dff92ac45bb970d5dc5fb3c56d9169183
Anthony Ramine
2018-03-05T13:24:35
servo: Merge #20198 - Use darling::util::Override in #[derive(ToCss)] (from servo:derive-all-the-things); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 7931df716d3f2145758b5bfc278fa345d3b3b327
diff --git a/style_derive/to_css.rs b/style_derive/to_css.rs index bd70aebf3..8864696fb 100644 --- a/style_derive/to_css.rs +++ b/style_derive/to_css.rs @@ -3,7 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use cg; -use darling::{Error, FromMetaItem}; +use darling::util::Override; use quot...
1
6
19
f36e864dceafb877b2ab155f7a0e04b8c3be1b8c
Anthony Ramine
2018-03-05T11:03:53
servo: Merge #20196 - Derive some more ToCss implementations (from servo:derive-all-the-things); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 266258331ee16fe90a96dffa9ec78bbe4d3e3f9f
diff --git a/style/counter_style/mod.rs b/style/counter_style/mod.rs index 0919a9d76..397598d45 100644 --- a/style/counter_style/mod.rs +++ b/style/counter_style/mod.rs @@ -444,7 +444,18 @@ impl Parse for Negative { /// /// Empty Vec represents 'auto' #[derive(Clone, Debug)] -pub struct Ranges(pub Vec<Range<Option<i...
7
58
74
b2a097ada2eacaba0397e0f464064dc9f5a748e8
Emilio Cobos Álvarez
2018-03-04T18:35:04
servo: Merge #20194 - style: remove unused AsciiExt imports (from emilio:ascii-ext-stuff); r=nox eq_ignore_ascii_case is not in AsciiExt since rustc 1.23. Source-Repo: https://github.com/servo/servo Source-Revision: fbeb5a81a8eb3fa2f5feb4c039620158ab1f87f2
diff --git a/style/attr.rs b/style/attr.rs index 789bb2d11..d1998535e 100644 --- a/style/attr.rs +++ b/style/attr.rs @@ -16,7 +16,6 @@ use selectors::attr::AttrSelectorOperation; use servo_arc::Arc; use servo_url::ServoUrl; use shared_lock::Locked; -#[allow(unused_imports)] use std::ascii::AsciiExt; use std::str::F...
21
0
27
7c0792514c94d66def5661a9e22777e0f0cd3857
Paul Rouget
2018-03-04T17:48:30
servo: Merge #20182 - Prompt URL on Cmd/Ctrl-L (from paulrouget:ctrl_l); r=jdm <!-- Please describe your changes on the following line: --> The `sanitize_url` code is very naive. I'm sure we can do better. This ServoShell issue describes the problem: https://github.com/paulrouget/servoshell/issues/59 I can fix that ...
diff --git a/bluetooth/Cargo.toml b/bluetooth/Cargo.toml index cdb304e78..3fd11443d 100644 --- a/bluetooth/Cargo.toml +++ b/bluetooth/Cargo.toml @@ -19,4 +19,4 @@ servo_rand = {path = "../rand"} uuid = {version = "0.5", features = ["v4"]} [target.'cfg(target_os = "linux")'.dependencies] -tinyfiledialogs = "2.5.9" +...
3
3
3
4fb76dc0e4c7d5a583bc12e2baf77b967fad1803
Anthony Ramine
2018-03-04T14:29:01
servo: Merge #20192 - Derive ToCss for DeclaredValue (from servo:derive-all-the-things); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: a716dfd40b091cbe94228a11e5cb75e5cc17f0e3
diff --git a/style/properties/properties.mako.rs b/style/properties/properties.mako.rs index f8d13d33a..595a90781 100644 --- a/style/properties/properties.mako.rs +++ b/style/properties/properties.mako.rs @@ -1308,7 +1308,7 @@ impl ShorthandId { /// Servo's representation of a declared value for a given `T`, which i...
1
15
28
1e131a5150dab10e80af2d76546c5aabbc8e6d64
Anthony Ramine
2018-03-04T01:11:41
servo: Merge #20189 - Never store a squared root in SquaredDistance (from servo:squared-distance-for-real); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 86a70100821a841fc68dc037a7b43a69c7999dfe
diff --git a/style/properties/helpers/animated_properties.mako.rs b/style/properties/helpers/animated_properties.mako.rs index 40957df9d..02fe6b2ba 100644 --- a/style/properties/helpers/animated_properties.mako.rs +++ b/style/properties/helpers/animated_properties.mako.rs @@ -811,7 +811,7 @@ impl Animate for Visibility...
4
27
31
9f360bda28c9d16398709cd3019c8dfc30b51399
Emilio Cobos Álvarez
2018-03-04T00:12:18
servo: Merge #20190 - style: Don't guard the context opacity keywords with the svg in opentype pref (from emilio:context-opacity); r=upsuper This is effectively the stylo version of the second patch for bug 1365926, and should fix bug 1442867. Source-Repo: https://github.com/servo/servo Source-Revision: b59a8afd0fe92...
diff --git a/style/values/specified/svg.rs b/style/values/specified/svg.rs index f5f89cfc4..80ff1c212 100644 --- a/style/values/specified/svg.rs +++ b/style/values/specified/svg.rs @@ -35,14 +35,16 @@ fn is_context_value_enabled() -> bool { false } -fn parse_context_value<'i, 't, T>(input: &mut Parser<'i, 't>, ...
1
31
23
767272e4220069c5a85ba5f694edfa5f774c1d90
Emilio Cobos Álvarez
2018-03-03T22:53:08
servo: Merge #20188 - style: Add bindings for ShadowRoot (from emilio:moar-traits); r=nox This adds TShadowRoot to the `dom` module. Right now it barely adds uses of it, but this is a prerequisite to fix a bunch of Shadow DOM bugs and separate it from the XBL mess. Source-Repo: https://github.com/servo/servo Source-...
diff --git a/layout_thread/dom_wrapper.rs b/layout_thread/dom_wrapper.rs index 1eaf74e4e..3161de39b 100644 --- a/layout_thread/dom_wrapper.rs +++ b/layout_thread/dom_wrapper.rs @@ -66,7 +66,7 @@ use style::attr::AttrValue; use style::context::SharedStyleContext; use style::data::ElementData; use style::dom::{DomChil...
3
147
45
27a701b39e53f203010405bad1d46448b55a3e1b
Anthony Ramine
2018-03-03T19:15:17
servo: Merge #20183 - Unconditionally derive ToComputedValue as Clone for non-generic types (from servo:computed-as-clone); r=emilio We assume that types such as `<Self as ToComputedValue>::ToComputedValue == Self` just construct a new value that is just a clone of the original one without any additional code. Source...
diff --git a/style/values/computed/mod.rs b/style/values/computed/mod.rs index de3c1ad4d..64e9e389d 100644 --- a/style/values/computed/mod.rs +++ b/style/values/computed/mod.rs @@ -289,7 +289,10 @@ impl<'a, 'cx, 'cx_a: 'cx, S: ToComputedValue + 'a> Iterator for ComputedVecIter< /// This trait is derivable with `#[deri...
2
27
1
e65999f358c68cfb2a7289eff3c958fbe84fe474
Emilio Cobos Álvarez
2018-03-03T17:23:52
servo: Merge #20186 - style: Fix text-emphasis-style conversion (from emilio:fixup-fill); r=nox Was accidentally broken in #20178 and is causing orange. Source-Repo: https://github.com/servo/servo Source-Revision: 2425939f9fa8fe8263e3b7108c265da6d12d7409
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 75eb80ba5..069cd1463 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -4766,15 +4766,17 @@ fn static_assert() { if self.gecko.mTextEmphasisStyle == structs::NS_STYLE_TEXT_EMPHASIS_STYLE_NONE ...
1
9
10
972bdddbbc1df19fe6d104258d28e9c0cb169e3f
Anthony Ramine
2018-03-03T15:17:42
servo: Merge #20178 - Derive ToCss for some more stuff (from servo:derive-all-the-things); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 0c9be9f77630c30120a72e50f0865b8b6e55db00
diff --git a/style/counter_style/mod.rs b/style/counter_style/mod.rs index 1ad385c4b..0d2c4e8e6 100644 --- a/style/counter_style/mod.rs +++ b/style/counter_style/mod.rs @@ -8,7 +8,7 @@ use Atom; use cssparser::{AtRuleParser, DeclarationListParser, DeclarationParser}; -use cssparser::{Parser, Token, serialize_identi...
11
92
233
3853517b0b88279fa285f544d4785ac09ff769b8
Petre Tudor
2018-03-02T20:58:04
servo: Merge #20177 - removed default_data_dir() and default_cache_dir() (from petre2dor:removeUnusedCode); r=jdm <!-- Please describe your changes on the following line: --> I removed `default_data_dir()` and `default_cache_dir()` from `components/config/basedir.rs` because they were never called. --- <!-- Thank yo...
diff --git a/config/basedir.rs b/config/basedir.rs index 0bc0446f8..2f634448b 100644 --- a/config/basedir.rs +++ b/config/basedir.rs @@ -31,40 +31,6 @@ pub fn default_config_dir() -> PathBuf { PathBuf::from(dir.to_str().unwrap()) } -#[cfg(all(unix, not(target_os = "macos"), not(target_os = "ios"), not(target_os...
1
0
34
f724f9359a9f9fcbfbead6f0a4c3ee9c18ce17ab
Andrei Cristian Petcu
2018-03-02T19:39:37
servo: Merge #20175 - #20174 removed the option and unwrap (from andreicristianpetcu:remove_optional_from_default_config_dir); r=jdm I removed the useless option and the need for unwrap from default_config_dir --- - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors -...
diff --git a/config/basedir.rs b/config/basedir.rs index 0f403b814..0bc0446f8 100644 --- a/config/basedir.rs +++ b/config/basedir.rs @@ -17,19 +17,18 @@ use std::path::PathBuf; use xdg; #[cfg(all(unix, not(target_os = "macos"), not(target_os = "ios"), not(target_os = "android")))] -pub fn default_config_dir() -> Op...
3
10
11
8d370ce0537c83f8d85fdd9b4cc154e2dbe90ed2
Emilio Cobos Álvarez
2018-03-02T17:45:29
servo: Merge #20173 - style: Update bindgen to 0.33 (from emilio:formatted-style); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 7944bcbe8ddd71ec04e8f43d3da663311ba25928
diff --git a/style/Cargo.toml b/style/Cargo.toml index 9f46e54f8..9b9fa063a 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -78,7 +78,7 @@ kernel32-sys = "0.2" [build-dependencies] lazy_static = "1" log = "0.3" -bindgen = { version = "0.32.3", optional = true } +bindgen = { version = "0.33.1", optional = tru...
1
1
1
d507d95552778d48c567fbea316246ba666a31c7
Anthony Ramine
2018-03-02T16:18:49
servo: Merge #20171 - Make ContentItem use a CustomIdent for counter names (from servo:content-item-counters); r=emilio See https://github.com/w3c/csswg-drafts/pull/2377. Source-Repo: https://github.com/servo/servo Source-Revision: 476a0764f5398675481cbaaa040ecc061ae6e579
diff --git a/layout/generated_content.rs b/layout/generated_content.rs index bef641ed7..b71729adc 100644 --- a/layout/generated_content.rs +++ b/layout/generated_content.rs @@ -188,9 +188,9 @@ impl<'a, 'b> ResolveGeneratedContentFragmentMutator<'a, 'b> { ...
4
49
63
2b2921d5d4c4e2bd34727d8c42276794fe16e267
Emilio Cobos Álvarez
2018-03-02T13:45:09
servo: Merge #20170 - Reland #20160 since it just needed a revendor that didn't happen automatically (from emilio:formatted-style); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 679d2de4e74ecca7bd1b6d8b7d76e9bbd8821718
diff --git a/style/Cargo.toml b/style/Cargo.toml index de06aebbc..9f46e54f8 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -78,7 +78,7 @@ kernel32-sys = "0.2" [build-dependencies] lazy_static = "1" log = "0.3" -bindgen = { version = "0.32.2", optional = true } +bindgen = { version = "0.32.3", optional = tru...
2
15
5
506961b6247d8c897d7c5affb9375628301d44e2
Andreea Pavel
2018-03-02T12:46:04
Backed out changeset 39a71f4c9d94 for build bustages at make[4]: *** [force-cargo-library-build] Error 101 on a CLOSED TREE
diff --git a/style/Cargo.toml b/style/Cargo.toml index 9f46e54f8..de06aebbc 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -78,7 +78,7 @@ kernel32-sys = "0.2" [build-dependencies] lazy_static = "1" log = "0.3" -bindgen = { version = "0.32.3", optional = true } +bindgen = { version = "0.32.2", optional = tru...
2
5
15
86a63b8041a36be91a040a55e1ff8bddff79be0f
Emilio Cobos Álvarez
2018-03-02T10:38:00
servo: Merge #20160 - style: Rustfmt bindings on automation, and locally under an env variable (from emilio:formatted-style); r=xidorn Bug: 1432153 Reviewed-by: xidorn MozReview-Commit-ID: HJ9J5NtYVk2 Source-Repo: https://github.com/servo/servo Source-Revision: 0172989b6fc1304b102920b8b540273dc58fa9af
diff --git a/style/Cargo.toml b/style/Cargo.toml index de06aebbc..9f46e54f8 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -78,7 +78,7 @@ kernel32-sys = "0.2" [build-dependencies] lazy_static = "1" log = "0.3" -bindgen = { version = "0.32.2", optional = true } +bindgen = { version = "0.32.3", optional = tru...
2
15
5
8732335223c4e501d0f155907d8ed2ab8d3579a8
Manish Goregaokar
2018-03-02T01:36:50
servo: Merge #20163 - Don't panic on cells with both a rowspan and colspan in include_sizes_from_previous_rows (from Manishearth:rowspan-crash); r=mbrubeck fixes #20162 Source-Repo: https://github.com/servo/servo Source-Revision: e446897cf603dd2f179c361523cc82ecad6e657b
diff --git a/layout/table_row.rs b/layout/table_row.rs index a332bc668..933d3be63 100644 --- a/layout/table_row.rs +++ b/layout/table_row.rs @@ -123,7 +123,16 @@ impl TableRowFlow { if *span == 1 { break; } - let incoming = incoming_rowspan_data[*col...
1
10
1
31ecc69a427a2014be28a230954848f6c0943e44
Xidorn Quan
2018-03-01T23:52:07
servo: Merge #20150 - Remove text-is-significant param from Gecko_IsSignificantChild (from upsuper:text-is-significant); r=emilio This is Servo side change of [bug 1441729](https://bugzilla.mozilla.org/show_bug.cgi?id=1441729). Source-Repo: https://github.com/servo/servo Source-Revision: 90b8410b05e8aab35e3885820a37c...
diff --git a/style/gecko/generated/bindings.rs b/style/gecko/generated/bindings.rs index 5a4845e72..4b1663e40 100644 --- a/style/gecko/generated/bindings.rs +++ b/style/gecko/generated/bindings.rs @@ -608,7 +608,6 @@ extern "C" { extern "C" { pub fn Gecko_IsSignificantChild( node: RawGeckoNodeBorrowed, -...
2
2
3
ce4eb54042976b079b85051d6f912dd45d729776
Manish Goregaokar
2018-03-01T18:36:43
servo: Merge #20152 - Support zero rowspans (from Manishearth:rowspan-zero); r=mbrubeck This makes rowspan=0 work by storing notes on which group of rows we're in for tables containing both rowgroups and rows, and using that to respan cells with overlarge or zero rowspans. This also gets rid of the largest_leftover_i...
diff --git a/layout/table.rs b/layout/table.rs index 2f5de2aa1..a258a5706 100644 --- a/layout/table.rs +++ b/layout/table.rs @@ -30,7 +30,7 @@ use style::values::CSSFloat; use style::values::computed::LengthOrPercentageOrAuto; use table_cell::TableCellFlow; use table_row::{self, CellIntrinsicInlineSize, CollapsedBor...
3
109
63
302665e6a57ba94bcdd85f6ce0a47ef11371e5d3
Manish Goregaokar
2018-02-28T23:40:39
servo: Merge #20128 - Rowspan support for tables (from Manishearth:rowspan); r=mbrubeck fixes #20092 This just contains the first steps. We apply a naive algorithm: Spanning cells apply a pressure equal to `block_size / rowspan` on each row they are in. We move table row block size computation into the tables, and m...
diff --git a/layout/table.rs b/layout/table.rs index 72916de36..2f5de2aa1 100644 --- a/layout/table.rs +++ b/layout/table.rs @@ -496,10 +496,10 @@ impl Flow for TableFlow { }); } - fn assign_block_size(&mut self, _: &LayoutContext) { + fn assign_block_size(&mut self, lc: &LayoutContext) { ...
4
233
103
e5280228ba125217456c9a204d0c0830aec2cd16
Bastien Orivel
2018-02-28T18:10:59
servo: Merge #20143 - Bump itertools, image, flate2 and caseless (from Eijebong:bump); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: af92c06223a65fee3037b64b29ed9f089ef87310
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index b7c98070e..88cd1c479 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -13,7 +13,7 @@ path = "lib.rs" euclid = "0.17" gfx_traits = {path = "../gfx_traits"} gleam = "0.4" -image = "0.17" +image = "0.18" ipc-channel = "0.9" libc = "...
9
11
11
4bf7bbe05d7a551fc6e90b7c7c18de8e07eaa21a
Bobby Holley
2018-02-28T16:32:00
servo: Merge #20146 - Stylo: Pass an explicit parent SheetLoadData for child stylesheet loads (from bholley:explicit_load_data); r=bholley https://bugzilla.mozilla.org/show_bug.cgi?id=1441896 Source-Repo: https://github.com/servo/servo Source-Revision: e8f77861a9af8d88ba62625838a10d63c74d22ed
diff --git a/style/gecko/generated/bindings.rs b/style/gecko/generated/bindings.rs index bbc833f1f..5a4845e72 100644 --- a/style/gecko/generated/bindings.rs +++ b/style/gecko/generated/bindings.rs @@ -235,6 +235,7 @@ use gecko_bindings::structs::nscoord; use gecko_bindings::structs::nsresult; use gecko_bindings::stru...
1
3
0
4f5f7cc5993cfa3c4154eefe9b126ac2c3dbf5de
Anthony Ramine
2018-02-28T10:37:18
servo: Merge #20141 - Replace ColorOrAuto by CaretColor (from servo:rm-color-or-auto); r=emilio This is its only use. Source-Repo: https://github.com/servo/servo Source-Revision: 8471011e6b6bd72db68ec9ae21df58ab09f2f6d8
diff --git a/style/gecko_bindings/sugar/style_complex_color.rs b/style/gecko_bindings/sugar/style_complex_color.rs index cd0e408b2..0d5a20944 100644 --- a/style/gecko_bindings/sugar/style_complex_color.rs +++ b/style/gecko_bindings/sugar/style_complex_color.rs @@ -6,8 +6,8 @@ use gecko::values::{convert_nscolor_to_r...
8
65
24
13a6898dda1fceb3ca0e5d3f38ca64646ad643e5
Bastien Orivel
2018-02-28T09:14:32
servo: Merge #20140 - Bump euclid to 0.17 (from Eijebong:euclid); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 38298336beb4ef8873cae22919bd8bee0f6496d4
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index 6da66760c..0c3004401 100644 --- a/canvas/Cargo.toml +++ b/canvas/Cargo.toml @@ -14,13 +14,13 @@ azure = {git = "https://github.com/servo/rust-azure"} canvas_traits = {path = "../canvas_traits"} compositing = {path = "../compositing"} cssparser = "0.23.0" -eucl...
18
21
21
6715925aac3ec55fdd9b114a92904e502487ef8c
Anthony Ramine
2018-02-27T17:17:43
servo: Merge #20131 - Replace NonNegativeLengthOrNumber by a specific type for -moz-tab-size (from servo:moz-tab-size); r=emilio This is the only use of this type. Source-Repo: https://github.com/servo/servo Source-Revision: 030509e66b9d3432c112bb5639f446535749963e
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index ca96e3fcb..46e424425 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -64,6 +64,7 @@ use values::computed::effects::{BoxShadow, Filter, SimpleShadow}; use values::computed::outline::OutlineStyle; use ...
9
49
28
3d6b90853e640aba175d2d1e4735fc96ef6e37f9
Emilio Cobos Álvarez
2018-02-27T12:12:50
servo: Merge #20134 - style: Split out NonCustomPropertyId::enabled_for_all_content from allowed_in (from emilio:split-stuff); r=nox This is part of a patch that was reviewed by nox in #20081, but which I reverted because that approach didn't quite work. I think I have something that works now, but I'm waiting for a ...
diff --git a/style/properties/properties.mako.rs b/style/properties/properties.mako.rs index d3b6687b5..19541d6d7 100644 --- a/style/properties/properties.mako.rs +++ b/style/properties/properties.mako.rs @@ -438,6 +438,51 @@ impl NonCustomPropertyId { MAP[self.0] } + #[inline] + fn enabled_for_al...
1
63
44
c007d79b0b8ba0dff760f716db8fb67823d50a4c
Emilio Cobos Álvarez
2018-02-27T10:47:29
servo: Merge #20133 - style: Make Shadow DOM not use XBL anymore (from emilio:kill-xbl); r=xidorn Bug: 1425759 Reviewed-by: xidorn MozReview-Commit-ID: Jf2iGvLC5de Source-Repo: https://github.com/servo/servo Source-Revision: a7f38f0f32e2a01dfd3d415fd34d246957bede63
diff --git a/style/gecko/generated/bindings.rs b/style/gecko/generated/bindings.rs index a801c5a9c..bbc833f1f 100644 --- a/style/gecko/generated/bindings.rs +++ b/style/gecko/generated/bindings.rs @@ -2298,6 +2298,19 @@ extern "C" { gecko_sheet: *const ServoStyleSheet, ); } +extern "C" { + pub fn Serv...
3
843
116
8bbeb9ed109a646dacd98cc33297f4e6c12556be
Alex Fong
2018-02-27T09:52:05
servo: Merge #20012 - Avoid `Window::GetComputedStyle` when checking for `display: none` (from alexfjw:avoid_Window-GetComputedStyle_when_checking_for_display-none); r=emilio <!-- Please describe your changes on the following line: --> Refactored Window::GetComputedStyle to use Element::Style. Not sure which tests ar...
diff --git a/script/dom/canvasrenderingcontext2d.rs b/script/dom/canvasrenderingcontext2d.rs index 93d4981d2..1e2278e81 100644 --- a/script/dom/canvasrenderingcontext2d.rs +++ b/script/dom/canvasrenderingcontext2d.rs @@ -9,7 +9,6 @@ use canvas_traits::canvas::{RadialGradientStyle, RepetitionStyle, byte_swap_and_ use c...
3
7
16
7c0c4cdde988f187cfa0d2ea7b9bcfb53d66e9e6
Glenn Watson
2018-02-27T05:10:51
servo: Merge #20058 - Bump rayon to 1.0 (from Eijebong:rayon1.0); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: b6bd719c5dfa1dd5bb1900d31d318250cb54271e
diff --git a/layout/Cargo.toml b/layout/Cargo.toml index 88552e1ce..3ff251e28 100644 --- a/layout/Cargo.toml +++ b/layout/Cargo.toml @@ -31,7 +31,7 @@ ordered-float = "0.4" parking_lot = "0.4" profile_traits = {path = "../profile_traits"} range = {path = "../range"} -rayon = "0.8" +rayon = "1" script_layout_interfa...
5
13
12
767a97f91d0b498e9d718b1ac55483537fbe6f50
Anthony Ramine
2018-02-26T21:35:32
servo: Merge #20124 - Replace LengthOrNone by a specific type for the perspective property (from servo:perspective); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 6df0dc5b2710a6ba856de7c064a6631a8d63efc5
diff --git a/layout/fragment.rs b/layout/fragment.rs index 48764b625..68d5c7f61 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -59,10 +59,9 @@ use style::properties::ComputedValues; use style::selector_parser::RestyleDamage; use style::servo::restyle_damage::ServoRestyleDamage; use style::str::char_is_w...
12
112
67
e5716960953dea048856e8f15e42a79e24e34652
Anthony Ramine
2018-02-26T15:41:31
servo: Merge #20123 - Remove TransitionProperty::All (from servo:rm-all); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 2c2f8be1ccfbb38d46c351f78f0334226b3ec5f7
diff --git a/style/animation.rs b/style/animation.rs index c934d0752..ee960586b 100644 --- a/style/animation.rs +++ b/style/animation.rs @@ -309,22 +309,6 @@ impl PropertyAnimation { } result } - TransitionProperty::All => { - TransitionProperty::...
6
15
61
0c3cc6dc64611e76957bff10af58b11e1c532078
janvipalan
2018-02-25T00:04:46
servo: Merge #20115 - Dont make a network request when the media attribute of a link element is modified (from janvi-palan:NoNetworkConnForHtmlListMedia); r=emilio <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the ste...
diff --git a/script/dom/htmllinkelement.rs b/script/dom/htmllinkelement.rs index be4c974bf..f3f82cb5c 100644 --- a/script/dom/htmllinkelement.rs +++ b/script/dom/htmllinkelement.rs @@ -194,13 +194,6 @@ impl VirtualMethods for HTMLLinkElement { } } }, - &loca...
1
0
7
559baeab3bb088f344cff7d4ce603c9d2838251f
paavininanda
2018-02-22T22:35:33
servo: Merge #20089 - Revert previously merged code, better implementation for Default selectionStart and selectionEnd (from paavininanda:RevertChanges); 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...
diff --git a/script/dom/htmlformelement.rs b/script/dom/htmlformelement.rs index 36ebb18db..27a64d00c 100755 --- a/script/dom/htmlformelement.rs +++ b/script/dom/htmlformelement.rs @@ -651,7 +651,7 @@ impl HTMLFormElement { child.downcast::<HTMLSelectElement>().unwrap().reset(); } ...
4
81
95
7a14251f935a7052515dc4618506fe76ddc452ef
Nupur Baghel
2018-02-22T18:34:55
servo: Merge #20068 - added AutoCloseWorker for closing related workers when a page/another worker is closed (from paavininanda:autocloseworker); r=jdm <!-- Please describe your changes on the following line: --> Followed steps as suggested in issue. Error is not yet resolved! --- <!-- Thank you for contributing to S...
diff --git a/script/dom/globalscope.rs b/script/dom/globalscope.rs index 255f2c348..e3a1db7a1 100644 --- a/script/dom/globalscope.rs +++ b/script/dom/globalscope.rs @@ -47,6 +47,8 @@ use std::collections::HashMap; use std::collections::hash_map::Entry; use std::ffi::CString; use std::rc::Rc; +use std::sync::Arc; +us...
2
23
0
6da719c58e6a98e80bbdc34ffc58d4229d48473e
Josh Matthews
2018-02-22T17:41:15
servo: Merge #20106 - Add font cache debugging to isolate cause of IPC failures in CI (from jdm:font-thread-shutdown-debug); r=emilio This should help us better understand the actual underlying cause of frequent CI failures like #13509. In particular, we will be able to state with confidence whether an IPC message is ...
diff --git a/gfx/font_cache_thread.rs b/gfx/font_cache_thread.rs index fec14cfdb..fdb48e519 100644 --- a/gfx/font_cache_thread.rs +++ b/gfx/font_cache_thread.rs @@ -112,6 +112,7 @@ pub enum Command { AddWebFont(LowercaseString, EffectiveSources, IpcSender<()>), AddDownloadedWebFont(LowercaseString, ServoUrl, ...
1
24
10
05efbd86168f714f5f0a1fd06c3a78861ce626a1
Jon Leighton
2018-02-22T16:47:40
servo: Merge #20051 - Disallow mutating the internals of TextInput (from jonleighton:prevent-invalid-selections); r=jdm The TextInput::assert_ok_selection() method is meant to ensure that we are not getting into a state where a selection refers to a location in the control's contents which doesn't exist. However, bef...
diff --git a/script/dom/htmlinputelement.rs b/script/dom/htmlinputelement.rs index b0fbfb36f..05ca796ab 100755 --- a/script/dom/htmlinputelement.rs +++ b/script/dom/htmlinputelement.rs @@ -48,7 +48,6 @@ use script_traits::ScriptToConstellationChan; use servo_atoms::Atom; use std::borrow::ToOwned; use std::cell::Cell...
4
106
81
a03b9a7b7796cfe7632e491e5a2e2d0ef35cf684
Jon Leighton
2018-02-22T10:49:30
servo: Merge #20105 - Make FontTemplateData's Debug formatter more concise (from jonleighton:font-template-data-debug); r=emilio Otherwise the log gets spammed with all the individual bytes of the underlying font file. Source-Repo: https://github.com/servo/servo Source-Revision: c0d00e9a6ad08a0a57484036e37f1189122953...
diff --git a/gfx/platform/freetype/font_template.rs b/gfx/platform/freetype/font_template.rs index 658974bc3..13209e3a0 100644 --- a/gfx/platform/freetype/font_template.rs +++ b/gfx/platform/freetype/font_template.rs @@ -3,6 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use servo_atoms::Ato...
3
49
3
9da326952561853108922d2db73a4717ca2aa6e6
Anthony Ramine
2018-02-22T08:36:29
servo: Merge #20101 - Remove a use of rooted_vec in Document::handle_touch_event (from servo:rm-rootedvec); r=asajeffrey Source-Repo: https://github.com/servo/servo Source-Revision: 9e1479bbddd3a1b4ead82dcbc7b1f23e3dd55013
diff --git a/script/dom/document.rs b/script/dom/document.rs index 7f7bc4fd2..7f3f40ea2 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -1176,29 +1176,29 @@ impl Document { } } - rooted_vec!(let mut touches); - touches.extend(self.active_touch_points.borrow().it...
1
22
22
e4980237cffcd4e6d89bfc27a5224ac63aa51fd7
Hiroyuki Ikezoe
2018-02-22T01:30:29
servo: Merge #20102 - Request restyle display changed from none for animations (from hiikezoe:request-restyle-display-changed-from-none); r=emilio,birtles <!-- Please describe your changes on the following line: --> https://bugzilla.mozilla.org/show_bug.cgi?id=1439269 Source-Repo: https://github.com/servo/servo Sour...
diff --git a/style/context.rs b/style/context.rs index b173aad03..337afd65c 100644 --- a/style/context.rs +++ b/style/context.rs @@ -419,6 +419,11 @@ bitflags! { const EFFECT_PROPERTIES = structs::UpdateAnimationsTasks_EffectProperties; /// Update animation cacade results for animations running on the...
4
26
8
a69c16cc61e287536da2ba38e9dc968b99344052
Matt Brubeck
2018-02-22T00:35:55
servo: Merge #20088 - Fix license metadata for servo_arc crate (from mbrubeck:license); r=SimonSapin The header in lib.rs states that this library is MIT / Apache-2.0, since it is forked from the Rust standard library. Source-Repo: https://github.com/servo/servo Source-Revision: 6c93afc8fc4e0fa263118752c4d515c5820a98...
diff --git a/servo_arc/Cargo.toml b/servo_arc/Cargo.toml index 84b75cab3..58f1ea8ef 100644 --- a/servo_arc/Cargo.toml +++ b/servo_arc/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "servo_arc" -version = "0.1.0" +version = "0.1.1" authors = ["The Servo Project Developers"] -license = "MPL-2.0" +license = "MIT/Apache-2....
1
2
2
f270c86c7271c96aec5ad2a6f9701338b9ec9e56
Anthony Ramine
2018-02-21T22:02:35
servo: Merge #20098 - Avoid dropping arbitrary animation callbacks without running them (from servo:spurious-raf-optim); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: cccca27f4fd3d9cd5f2f5ee2853672fecc8a7b4b
diff --git a/script/dom/document.rs b/script/dom/document.rs index abe67fc34..7f7bc4fd2 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -1485,10 +1485,18 @@ impl Document { // constellation to stop giving us video refresh callbacks, to save energy. (A spurious // animation frame is...
1
12
4
3684e7b1e0cfdf9fb07fcb01a7ae09c1bb9d9c4b
Manish Goregaokar
2018-02-21T17:00:03
servo: Merge #20034 - Handle table cell backgrounds during display list generation for <table> (from Manishearth:table-backgrounds); r=mbrubeck Fixes #19788 Source-Repo: https://github.com/servo/servo Source-Revision: 0b4ea018b0df2ba5f65d2a5cc45b70e4243e324a
diff --git a/layout/block.rs b/layout/block.rs index f87c837da..d7505e7b8 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -38,6 +38,7 @@ use flow::{BaseFlow, EarlyAbsolutePositionInfo, Flow, FlowClass, ForceNonfloated use flow::{ImmutableFlowUtils, LateAbsolutePositionInfo, OpaqueFlow, FragmentationContext, Flow...
9
524
129
f55bf8d76dd1c65fe87d892fd3cf80e37b4ab0de
Emilio Cobos Álvarez
2018-02-21T11:09:15
servo: Merge #20082 - style: Cleanup always-false argument to Servo_ResolveStyleLazily (from emilio:ignore-existing-styles); r=bholley I changed this setup in https://bugzilla.mozilla.org/show_bug.cgi?id=1414999, because it was totally unsound. Source-Repo: https://github.com/servo/servo Source-Revision: 691f3be24a6f...
diff --git a/layout/query.rs b/layout/query.rs index afe5b50d9..bea54d433 100644 --- a/layout/query.rs +++ b/layout/query.rs @@ -693,7 +693,7 @@ pub fn process_resolved_style_request<'a, N>(context: &LayoutContext, thread_local: &mut tlc, }; - let styles = resolve_style(&mut context, element, RuleInc...
3
2
5
0bbbcc2f91c5838e10176a7e18500a5a123bee21
maekawatoshiki
2018-02-21T09:22:43
servo: Merge #20096 - Fix typo (from maekawatoshiki:master); r=emilio <!-- Please describe your changes on the following line: --> I found some typo, so I fixed them. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->...
diff --git a/layout/inline.rs b/layout/inline.rs index cc4581719..e2e4ad280 100644 --- a/layout/inline.rs +++ b/layout/inline.rs @@ -111,7 +111,7 @@ pub struct Line { /// For example, for the HTML below... /// /// ~~~html - /// <div><span>I <span>like truffles, <img></span></div> + /// <div><s...
1
2
2
b0c1027a90c059466170cccfaa26f57e72de2ec6
Emilio Cobos Álvarez
2018-02-21T04:49:19
servo: Merge #20081 - style: More serialization tweaks (from emilio:more-longhand-stuff); r=nox This still doesn't fix everything. In particular, we need to check whether the subproperty will be enabled in Longhands and LonghandsToSerialize too. I haven't decided yet on what's the best way to do that. Source-Repo: h...
diff --git a/style/properties/declaration_block.rs b/style/properties/declaration_block.rs index 03485db9b..6ef2c0e73 100644 --- a/style/properties/declaration_block.rs +++ b/style/properties/declaration_block.rs @@ -761,20 +761,46 @@ impl PropertyDeclarationBlock { /// /// https://drafts.csswg.org/cssom/#ser...
2
73
69
10023bce9aa79b40e934c558343e794b1d1c7674
Fernando Jiménez Moreno
2018-02-20T13:43:48
servo: Merge #20080 - Minor cleanup of element.innerText (from ferjm:innertext.cleanup); r=emilio - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors Source-Repo: https://github.com/servo/servo Source-Revision: 8fdcfb2dfebb86cf33603645aa05920ce6d3e3d3
diff --git a/layout/query.rs b/layout/query.rs index 922254293..afe5b50d9 100644 --- a/layout/query.rs +++ b/layout/query.rs @@ -1009,15 +1009,16 @@ fn inner_text_collection_steps<N: LayoutNode>(node: N, }, Display::TableRow if !is_last_table_row() => { // Step 7. - ...
2
10
18
9253d3619c576e85eb14928a03082e3cabcc8137
Emilio Cobos Álvarez
2018-02-20T11:40:43
servo: Merge #20078 - style: Rejigger serialization of a declaration block to not look at the shorthands length (from emilio:decl-block-serialization); r=nox This is because I'm going to make shorthands() and longhands() return an iterator, so that we account for prefs properly (https://bugzilla.mozilla.org/show_bug.c...
diff --git a/style/properties/declaration_block.rs b/style/properties/declaration_block.rs index 9f6613102..03485db9b 100644 --- a/style/properties/declaration_block.rs +++ b/style/properties/declaration_block.rs @@ -207,11 +207,13 @@ impl fmt::Debug for PropertyDeclarationBlock { impl PropertyDeclarationBlock { ...
2
38
16
0e47387261935e57f4eb4ba62ee9e7b6b10e2406
Anthony Ramine
2018-02-19T12:02:45
servo: Merge #20073 - Remove some useless manual layout optimisation for KeywordSize (from servo:keywordsize); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: be902d56c022cbfed2aef7a816de80d139718235
diff --git a/style/values/generics/font.rs b/style/values/generics/font.rs index 828e7345d..f052d7d28 100644 --- a/style/values/generics/font.rs +++ b/style/values/generics/font.rs @@ -197,13 +197,11 @@ where } /// CSS font keywords -#[derive(Animate, ComputeSquaredDistance, MallocSizeOf, ToAnimatedValue, ToAnimate...
1
6
16
20f82cbfad7cb144f36aac7af1fdc85ea70e447a
Emilio Cobos Álvarez
2018-02-19T10:46:16
servo: Merge #20072 - style: Unship the legacy syntax for -moz-transform (from emilio:moz-transform); r=xidorn Intent to unship link: https://groups.google.com/d/msg/mozilla.dev.platform/T3PGm97MPNU/59XUavMlCgAJ Reviewed-by: xidorn Bug: 1438297 MozReview-Commit-ID: 6ybGBasPAWU Source-Repo: https://github.com/servo...
diff --git a/style/gecko/generated/structs.rs b/style/gecko/generated/structs.rs index a9f40c610..618794358 100644 --- a/style/gecko/generated/structs.rs +++ b/style/gecko/generated/structs.rs @@ -911,6 +911,8 @@ pub mod root { } pub type pair_first_type<_T1> = _T1; pub type pair_second_type<...
9
114
295
7164f531fa3c5ab754cdaa1dada01a006037a1cb
Xidorn Quan
2018-02-19T04:13:10
servo: Merge #20070 - Add sizeof for AuthorStyles (from upsuper:authorstyles-size); r=bholley,njn This is the Servo side change for [bug 1438497](https://bugzilla.mozilla.org/show_bug.cgi?id=1438497). Source-Repo: https://github.com/servo/servo Source-Revision: a98da8ce939e8afe7bac737ac02e3bcb226a1ea9
diff --git a/style/gecko/generated/bindings.rs b/style/gecko/generated/bindings.rs index ee634a5f3..94bcc13fc 100644 --- a/style/gecko/generated/bindings.rs +++ b/style/gecko/generated/bindings.rs @@ -604,16 +604,6 @@ extern "C" { extern "C" { pub fn Servo_SourceSizeList_Drop(ptr: RawServoSourceSizeListOwned); }...
5
76
88