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
8b81272babe67f1d16fe896e66410b05b4ac2d13
Pu Xingyu
2016-11-24T05:51:20
servo: Merge #14341 - script: Fix the scroll to top behavior (from stshine:where-is-the-top); r=mrobinson,emilio <!-- Please describe your changes on the following line: --> When finding the indicated fragment, do not use the document element to indicate the top of the Document, and when scrolling to the frament and ...
diff --git a/script/dom/document.rs b/script/dom/document.rs index 0bf77ccf7..b4273233c 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -580,26 +580,18 @@ impl Document { /// https://html.spec.whatwg.org/multipage/#the-indicated-part-of-the-document pub fn find_fragment_node(&self, fragid:...
1
27
38
247555f5215fc9551edf87a4a2a16facb38deace
J. Cliff Dyer
2016-11-23T20:30:41
servo: Merge #14347 - Only allow border-image-outset to use non-negative numbers (from jcdyer:cdyer/len-parsing); r=Wafflespeanut Restricts border-image-outline to only allow positive values. Fixes #14295 --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and ...
diff --git a/style/properties/longhand/border.mako.rs b/style/properties/longhand/border.mako.rs index 57bd1e82f..07fe93b9e 100644 --- a/style/properties/longhand/border.mako.rs +++ b/style/properties/longhand/border.mako.rs @@ -242,7 +242,7 @@ ${helpers.single_keyword("-moz-float-edge", "content-box margin-box", ...
2
11
1
bce43af8f08cdcfa2aa0281f1a14341374717d70
Ms2ger
2016-11-23T16:55:54
servo: Merge #14345 - Rewrite test_redirect_from_x_to_y_provides_y_cookies_from_y (from servo:cookies-host); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: bc1e18c29e4f53ca8ed38cf2bc4e7cd912d70f93
diff --git a/net_traits/hosts.rs b/net_traits/hosts.rs index 0a42be555..c3c48ce99 100644 --- a/net_traits/hosts.rs +++ b/net_traits/hosts.rs @@ -8,9 +8,10 @@ use std::env; use std::fs::File; use std::io::{BufReader, Read}; use std::net::IpAddr; +use std::sync::Mutex; lazy_static! { - static ref HOST_TABLE: Opt...
1
11
6
d9db944ee1fae3b461a3ca6d005443c336361c42
Nazım Can Altınova
2016-11-23T07:51:21
servo: Merge #14316 - Implement parsing/serialization and/or gecko glue for some properties (from canaltinova:stylo-properties); r=emilio <!-- Please describe your changes on the following line: --> The PR covers implementation and/or gecko glue for these properties: 1. Implemented parsing/serialization and gecko glu...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 120498e2a..482829d3b 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -814,7 +814,7 @@ fn static_assert() { <% skip_position_longhands = " ".join(x.ident for x in SIDES) %> <%self:impl_trait style_s...
5
130
4
8e5b8b42b8ebded4cf01f9a8d6e2a71624cba9cf
Alan Jeffrey
2016-11-22T22:41:46
servo: Merge #14211 - Share script threads by tab and by eTLD+1 (from asajeffrey:constellation-share-more-script-threads); r=jdm <!-- Please describe your changes on the following line: --> This PR shares script threads among all similar-origin documents in the same tab. This allows DOM object to be shared among same...
diff --git a/constellation/constellation.rs b/constellation/constellation.rs index 52976bf1d..8cb82a5cd 100644 --- a/constellation/constellation.rs +++ b/constellation/constellation.rs @@ -32,6 +32,7 @@ use msg::constellation_msg::{Key, KeyModifiers, KeyState}; use msg::constellation_msg::{PipelineNamespace, PipelineN...
4
102
80
d88b08fd738c746c3ca2c98c034321cc0d7ab016
Ravi Shankar
2016-11-22T20:59:11
servo: Merge #14296 - Some generic impls for Either<Length, T> (from Wafflespeanut:either); r=emilio <!-- Please describe your changes on the following line: --> We seem to be using `parse_non_negative` a lot for `LengthOrFoo` types, so it's better to have generic impls (now, and in the future) for such things (assum...
diff --git a/style/values/specified/length.rs b/style/values/specified/length.rs index 26eb45e92..1abc5e36c 100644 --- a/style/values/specified/length.rs +++ b/style/values/specified/length.rs @@ -343,6 +343,13 @@ impl Parse for Length { } } +impl<T> Either<Length, T> { + #[inline] + pub fn parse_non_nega...
1
7
7
6174b79a7ce08c15c876999163311dd04a656cd8
Ms2ger
2016-11-22T13:45:20
servo: Merge #14208 - Derive Debug for CookieStorage (from servo:CookieStorage-debug); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 3af2586b8e6299863112922a52945dcd2fe75daf
diff --git a/net/cookie_storage.rs b/net/cookie_storage.rs index 6b7909517..71eed2ec7 100644 --- a/net/cookie_storage.rs +++ b/net/cookie_storage.rs @@ -11,7 +11,7 @@ use net_traits::CookieSource; use servo_url::ServoUrl; use std::cmp::Ordering; -#[derive(Clone, RustcDecodable, RustcEncodable)] +#[derive(Clone, Deb...
1
1
1
7200b93c41b1de556824b1b0e22a3269cd4d3b09
Zakor Gyula
2016-11-22T11:55:02
servo: Merge #14206 - Rename blacklist to blocklist in WebBluetooth (from szeged:blacklist-to-blocklist); r=jdm <!-- Please describe your changes on the following line: --> There was a renaming in the [specification](https://github.com/WebBluetoothCG/web-bluetooth/commit/1d5cfa4ee8790df0cbbd68cda2dd148ba4efe10f). ---...
diff --git a/bluetooth/lib.rs b/bluetooth/lib.rs index de5ca6a5b..c96ae6f88 100644 --- a/bluetooth/lib.rs +++ b/bluetooth/lib.rs @@ -18,7 +18,7 @@ pub mod test; use bluetooth_traits::{BluetoothCharacteristicMsg, BluetoothDescriptorMsg, BluetoothServiceMsg}; use bluetooth_traits::{BluetoothDeviceMsg, BluetoothRequest,...
9
83
83
15347315d40f51ca0e50ba884c0afc0983357b17
Shing Lyu
2016-11-22T09:25:43
servo: Merge #14218 - Implement drop-shadow filter for Stylo (from shinglyu:dropshadow-review); r=Manishearth <!-- Please describe your changes on the following line: --> This patch got an r+ on [MozReview](https://reviewboard.mozilla.org/r/90560/#issue-summary) --- <!-- Thank you for contributing to Servo! Please r...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index b8d028793..120498e2a 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -31,6 +31,7 @@ use gecko_bindings::bindings::Gecko_FontFamilyList_AppendNamed; use gecko_bindings::bindings::Gecko_FontFamilyList_C...
2
108
3
85bb2ec32880bfdad3e6071ace21d1be7386b1df
Alan Jeffrey
2016-11-22T08:23:48
servo: Merge #14313 - Allow multiple -Z debug options (from asajeffrey:util-opts-multiple-debugs); r=frewsxcv <!-- Please describe your changes on the following line: --> This PR allows the `-Z` command line option to be set multiple times; `servo -Zfoo -Zbar` is the same as `servo -Zfoo,bar`. This means we can pass ...
diff --git a/util/opts.rs b/util/opts.rs index c94969d3e..c46294afa 100644 --- a/util/opts.rs +++ b/util/opts.rs @@ -350,51 +350,48 @@ pub struct DebugOptions { impl DebugOptions { - pub fn new(debug_string: &str) -> Result<DebugOptions, &str> { - let mut debug_options = DebugOptions::default(); - + p...
1
45
50
07a14ea17f9328ced5981af1a8ae2cff654439a4
Simon Sapin
2016-11-22T01:33:57
servo: Merge #14232 - CSSOM: Make Stylesheet fields have their own synchronization (from servo:moar-locks); r=upsuper <!-- Please describe your changes on the following line: --> r? @upsuper --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` w...
diff --git a/layout_thread/Cargo.toml b/layout_thread/Cargo.toml index 7bdb3ee8e..a75480d40 100644 --- a/layout_thread/Cargo.toml +++ b/layout_thread/Cargo.toml @@ -24,7 +24,6 @@ lazy_static = "0.2" log = "0.3.5" msg = {path = "../msg"} net_traits = {path = "../net_traits"} -style_traits = {path = "../style_traits"}...
6
41
43
5c3cdb93c581f50d690bc1cbd556ffb67dc07610
Ms2ger
2016-11-22T00:28:19
servo: Merge #14275 - Remove the dependency of fetch on filemanager_thread::UIProvider (from servo:fm-ui); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: d287f58d3fdc1fb00c3f7f7a205cd40524f0b4b3
diff --git a/net/blob_loader.rs b/net/blob_loader.rs index ee83717b0..6bd5ff4c2 100644 --- a/net/blob_loader.rs +++ b/net/blob_loader.rs @@ -2,7 +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/. */ -use filemanager_thread::{Fil...
4
137
115
d29feb011ba4e78a13eaa916174ffcb04395d556
Alan Jeffrey
2016-11-21T21:51:59
servo: Merge #14173 - Report panics using the top-level frame id rather than the pipeline id (from asajeffrey:script-thread-stores-top-level-frame-id); r=paulrouget <!-- Please describe your changes on the following line: --> At the moment, we report panics from script and layout using the root pipeline id. Once we a...
diff --git a/constellation/constellation.rs b/constellation/constellation.rs index 408d4df64..52976bf1d 100644 --- a/constellation/constellation.rs +++ b/constellation/constellation.rs @@ -419,9 +419,9 @@ impl Log for FromScriptLogger { fn log(&self, record: &LogRecord) { if let Some(entry) = log_entry(re...
9
202
194
bdad98cb0af447f0ebdc19316f74052f6dc93034
Rahul Sharma
2016-11-21T20:52:02
servo: Merge #13574 - Implement job queue for ServiceWorkerRegistration (from creativcoder:job-iface); r=jdm <!-- Please describe your changes on the following line: --> Fixes #13424 As of now this PR (Work in Progress), will try to implement (partially) on algorithms namely : [Schedule_Job](https://w3c.github.io/Ser...
diff --git a/script/dom/bindings/trace.rs b/script/dom/bindings/trace.rs index 8ecb06fdb..8323c6996 100644 --- a/script/dom/bindings/trace.rs +++ b/script/dom/bindings/trace.rs @@ -195,7 +195,6 @@ impl JSTraceable for Heap<*mut JSObject> { } } - impl JSTraceable for Heap<JSVal> { fn trace(&self, trc: *mut...
10
456
62
88f25d98be4bb153bfde0ee73088b9bfcfb981e3
Guillaume Gomez
2016-11-21T16:20:18
servo: Merge #14210 - Add missing action in CreateContextualFragment method (from GuillaumeGomez:fragment_node); r=nox r? @nox Source-Repo: https://github.com/servo/servo Source-Revision: d562d101809fbbb3d43511ae4cd3acbee280a7e7
diff --git a/script/dom/htmlscriptelement.rs b/script/dom/htmlscriptelement.rs index 62e3cf68a..6dd6349b1 100644 --- a/script/dom/htmlscriptelement.rs +++ b/script/dom/htmlscriptelement.rs @@ -595,6 +595,10 @@ impl HTMLScriptElement { is_js } + pub fn set_parser_inserted(&self, parser_inserted: bool)...
2
7
2
85495aa4542ead78b114492ebd4c3ee53d57e4b3
Lars Bergstrom
2016-11-21T15:20:51
servo: Merge #14280 - Move build.rs along with the other Servo files from components to ports (from larsbergstrom:fix_fake_ld); r=Ms2ger <!-- Please describe your changes on the following line: --> r? @Ms2ger --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, a...
diff --git a/servo/Cargo.toml b/servo/Cargo.toml index ae804fdd2..def52e5ce 100644 --- a/servo/Cargo.toml +++ b/servo/Cargo.toml @@ -4,7 +4,6 @@ name = "libservo" version = "0.0.1" authors = ["The Servo Project Developers"] license = "MPL-2.0" -build = "build.rs" publish = false [lib] diff --git a/servo/build.rs...
2
0
86
273a20a86fccec4807f2ad10f2bfca5ed0b3131f
Cameron McCormack
2016-11-21T14:16:36
servo: Merge #14273 - ensure RuleNodes are dropped when Gecko drops the Stylist (from heycam:rule-tree-stylo); r=bholley,emilio <!-- Please describe your changes on the following line: --> These are the Servo-side patches from https://bugzilla.mozilla.org/show_bug.cgi?id=1318238, which already have been reviewed by @...
diff --git a/style/rule_tree/mod.rs b/style/rule_tree/mod.rs index 2e87a30c2..1e9602428 100644 --- a/style/rule_tree/mod.rs +++ b/style/rule_tree/mod.rs @@ -440,8 +440,7 @@ impl StrongRuleNode { // script. debug_assert!(!thread_state::get().is_worker() && (thread_state::get().is...
2
13
2
c3626a6d47de26a2020885e3a82273699243b1d3
Emilio Cobos Álvarez
2016-11-20T20:23:39
servo: Merge #14278 - style: Don't assert when the final rule tree GC happens in script (from emilio:layout-data-in-script); r=Ms2ger This should silence the assertions in https://github.com/servo/servo/issues/14213. r? @Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 976989fc8d6a61391b35639943c6...
diff --git a/style/rule_tree/mod.rs b/style/rule_tree/mod.rs index 394e1f88d..2e87a30c2 100644 --- a/style/rule_tree/mod.rs +++ b/style/rule_tree/mod.rs @@ -427,15 +427,23 @@ impl StrongRuleNode { } unsafe fn pop_from_free_list(&self) -> Option<WeakRuleNode> { - debug_assert!(thread_state::get().is_l...
1
11
3
94bf7bc9d53cbf95c7070ba837286b60b1d3c1f0
Pu Xingyu
2016-11-20T18:35:14
servo: Merge #14274 - Implement range index with the Position enum on ServoUrl (from stshine:servo-url-index); 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 appropr...
diff --git a/net/data_loader.rs b/net/data_loader.rs index 19a6c92f0..7c26efac2 100644 --- a/net/data_loader.rs +++ b/net/data_loader.rs @@ -35,7 +35,7 @@ pub type DecodeData = (Mime, Vec<u8>); pub fn decode(url: &ServoUrl) -> Result<DecodeData, DecodeError> { assert_eq!(url.scheme(), "data"); // Split out c...
6
35
6
59613f1503c52cf9ab352c6adf4b8acc38329eb2
Simon Sapin
2016-11-20T15:21:52
servo: Merge #14294 - Rename a few source files (from servo:renames); r=Wafflespeanut <!-- 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/layout/animation.rs b/layout/animation.rs index 9147970f8..5330bfe1d 100644 --- a/layout/animation.rs +++ b/layout/animation.rs @@ -14,7 +14,7 @@ use std::collections::HashMap; use std::sync::mpsc::Receiver; use style::animation::{Animation, update_style_for_animation}; use style::dom::TRestyleDamage; -...
36
51
51
dc1b669f45f34df650ef1f8e6bb206b2aed21e71
Cameron McCormack
2016-11-20T04:01:12
servo: Merge #14256 - GC the rule tree only when the free list gets to a certain size (from heycam:rn-gc-heuristic); r=emilio <!-- Please describe your changes on the following line: --> Use a heuristic similar to Gecko's to decide when to GC the rule tree. r? @emilio Source-Repo: https://github.com/servo/servo Sou...
diff --git a/layout_thread/lib.rs b/layout_thread/lib.rs index 1d0ba9728..add38e67d 100644 --- a/layout_thread/lib.rs +++ b/layout_thread/lib.rs @@ -1180,11 +1180,8 @@ impl LayoutThread { shared_layout_context.style_context.stylist.rule_tree.dump_stdout(); } - // GC The rule tree. - ...
2
37
8
9c1ecf501c2c398a841d64c077631b89b3355e9f
Anthony Ramine
2016-11-20T01:18:10
servo: Merge #14284 - Use FnvHasher in http_loader::load (from nox:fnv); r=Wafflespeanut Should help with #11100. Source-Repo: https://github.com/servo/servo Source-Revision: 7e34f4cb5b691dad5fc9c87aaaabafaaf368c1c3
diff --git a/net/Cargo.toml b/net/Cargo.toml index ca04ba2f3..05dc06f09 100644 --- a/net/Cargo.toml +++ b/net/Cargo.toml @@ -16,6 +16,7 @@ content-blocker = "0.2.1" cookie = {version = "0.2.5", features = ["serialize-rustc"]} devtools_traits = {path = "../devtools_traits"} flate2 = "0.2.0" +fnv = "1.0" hyper = "0.9...
3
4
2
f60f11df9e2a10cde1e999f05096d010633786f5
Jeremy Chen
2016-11-19T11:07:46
servo: Merge #14227 - Stylo - gecko glue code for font-size-adjust (from chenpighead:font-size-adjust-gecko); r=Manishearth <!-- Please describe your changes on the following line: --> Implement the gecko-side glue code for font-size-adjust. This is a followup for #14125, which is originally filed in #13875. --- <!-...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 396f38c66..a82dcd4a4 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -887,7 +887,7 @@ fn static_assert() { </%self:impl_trait> <%self:impl_trait style_struct_name="Font" - skip_longhands="font-f...
2
37
4
96c5aa3886acf880301dec0ff758ca3d58e098c2
Connor Imes
2016-11-19T08:32:00
servo: Merge #14272 - Fix energy profiling feature (from connorimes:fix-energy-profiling-feature); r=Manishearth <!-- Please describe your changes on the following line: --> The `energy-profiling` feature was broken at some point when `#![deny(unsafe_code)]` was introduced to the `profile_traits` component. This PR s...
diff --git a/profile/heartbeats.rs b/profile/heartbeats.rs index 576993984..7579e6f3a 100644 --- a/profile/heartbeats.rs +++ b/profile/heartbeats.rs @@ -30,9 +30,13 @@ pub fn init() { maybe_create_heartbeat(&mut hbs, ProfilerCategory::LayoutTreeBuilder); maybe_create_heartbeat(&mut hbs, ProfilerCategory::Layo...
2
15
2
6d92dfebfa4464f7ab524d449cbf9a54cdda61cc
Lars Bergstrom
2016-11-19T05:40:20
servo: Merge #14270 - Disable the debugger on Android until mio works on Android (from larsbergstrom:disable_android_debugger); r=nox <!-- Please describe your changes on the following line: --> r? @nox The recent change to `ws-rs` introduced a dependency on `mio`, which depends on `nix`, which does not build on Andr...
diff --git a/debugger/Cargo.toml b/debugger/Cargo.toml index 413e17b3d..e9b097e59 100644 --- a/debugger/Cargo.toml +++ b/debugger/Cargo.toml @@ -13,4 +13,6 @@ crate_type = ["rlib"] [dependencies] log = "0.3.5" util = {path = "../util"} + +[target.'cfg(not(target_os = "android"))'.dependencies] ws = "0.5.3" diff --g...
2
18
0
7dc5b5594a0bc0e59ff0d35c7922169ac1d4ec5a
Ravi Shankar
2016-11-19T04:20:04
servo: Merge #14261 - Prefer Either type for LengthOrNumber (from Wafflespeanut:lon); r=SimonSapin <!-- Please describe your changes on the following line: --> This adds `impl GeckoStyleCoordConvertible for Either<A, B>` and makes `LengthOrNumber` prefer `Either<A, B>`. --- <!-- Thank you for contributing to Servo! ...
diff --git a/style/gecko/values.rs b/style/gecko/values.rs index 39faa3880..3abb746ad 100644 --- a/style/gecko/values.rs +++ b/style/gecko/values.rs @@ -10,8 +10,9 @@ use gecko_bindings::structs::{NS_RADIUS_CLOSEST_SIDE, NS_RADIUS_FARTHEST_SIDE}; use gecko_bindings::structs::nsStyleCoord; use gecko_bindings::sugar::n...
4
36
110
00c8ae97f65173d405dbfe5c2f304d91b44ac747
Anthony Ramine
2016-11-19T01:46:15
servo: Merge #14250 - Make ServoParser::pending_input hold onto a BufferQueue (from nox:write); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: fdcf510ac89d728081969b703f9b0b418554e592
diff --git a/script/Cargo.toml b/script/Cargo.toml index e5fc53aff..07dde14eb 100644 --- a/script/Cargo.toml +++ b/script/Cargo.toml @@ -37,7 +37,7 @@ fnv = "1.0" gfx_traits = {path = "../gfx_traits"} heapsize = "0.3.6" heapsize_derive = "0.1" -html5ever = {version = "0.10.1", features = ["heap_size", "unstable"]} +...
5
62
67
b630d1275733a7e0a9208773e17189d8e911f4bf
Nazım Can Altınova
2016-11-18T16:15:52
servo: Merge #14238 - Implement ToCss serialization for CSSRules (from canaltinova:cssom-tocss); r=Manishearth <!-- Please describe your changes on the following line: --> Implementation of ToCss serialization for CSSRules. It requires #14190 to merge first to uncomment `CssRule::Style` branch in CssRule's ToCss imple...
diff --git a/script/dom/cssfontfacerule.rs b/script/dom/cssfontfacerule.rs index 88dcaf460..18371c89c 100644 --- a/script/dom/cssfontfacerule.rs +++ b/script/dom/cssfontfacerule.rs @@ -12,6 +12,7 @@ use dom::window::Window; use parking_lot::RwLock; use std::sync::Arc; use style::font_face::FontFaceRule; +use style_t...
10
198
28
711a2abf7247c6a83521458423e6de988608e6ea
Vladimir Vukicevic
2016-11-18T14:29:27
servo: Merge #14249 - Add -Z wr-record (from vvuk:wr-record); r=kvark This adds `-Z wr-record`, which flips `enable_recording` to true for Webrender. Source-Repo: https://github.com/servo/servo Source-Revision: 696b806284795db461992be7b38861e5d110a204
diff --git a/servo/lib.rs b/servo/lib.rs index 05f250907..32c910320 100644 --- a/servo/lib.rs +++ b/servo/lib.rs @@ -166,7 +166,7 @@ impl<Window> Browser<Window> where Window: WindowMethods + 'static { enable_msaa: opts.use_msaa, enable_profiler: opts.webrender_stats, ...
2
10
1
49204b15de5d31a0fe2f7519bfbb94189ce017a4
Ravi Shankar
2016-11-17T20:34:33
servo: Merge #13917 - Remove usage of 'keyword_list' (from Wafflespeanut:keywords); r=Manishearth <!-- Please describe your changes on the following line: --> We're using `keyword_list` to generate code for some of the animation properties. This could be achieved with `single_keyword` (passing `vector=True`). --- <...
diff --git a/style/animation.rs b/style/animation.rs index 9c79aaf5a..c9fd2ee5e 100644 --- a/style/animation.rs +++ b/style/animation.rs @@ -12,9 +12,9 @@ use euclid::point::Point2D; use keyframes::{KeyframesStep, KeyframesStepValue}; use properties::{self, CascadeFlags, ComputedValues, Importance}; use properties::...
4
150
209
c5cb91ecfc201fd33efa3a951c7742212cfb2fe6
Bobby Holley
2016-11-17T18:25:52
servo: Merge #14214 - Overhaul dirtiness handling in Servo to prepare for the new incremental restyle architecture (from bholley:dirtiness_overhaul); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: e4a27c4d16ee0e80ccd4ffd97a93c2b2a4f05391
diff --git a/layout/traversal.rs b/layout/traversal.rs index b054568d5..849e7b208 100644 --- a/layout/traversal.rs +++ b/layout/traversal.rs @@ -10,7 +10,7 @@ use display_list_builder::DisplayListBuildState; use flow::{self, PreorderFlowTraversal}; use flow::{CAN_BE_FRAGMENTED, Flow, ImmutableFlowUtils, PostorderFlow...
12
192
183
efcefabde6cf9b86fc354c2314c1a99b2dba20f2
Manish Goregaokar
2016-11-17T01:10:25
servo: Merge #14223 - Delegate logical bitfield setters to physical to fix cascade (from Manishearth:fix-logical-cascade); r=emilio (fixes #14222) Five minutes early for "tomorrow", _shrug_. I'm not entirely sure of this fix. It depends on properties going through the cascade in source order all else being the same....
diff --git a/style/properties/helpers.mako.rs b/style/properties/helpers.mako.rs index b4e4d59cb..53b985eed 100644 --- a/style/properties/helpers.mako.rs +++ b/style/properties/helpers.mako.rs @@ -206,11 +206,17 @@ } _ => panic!("entered the wrong cascade_property() implementation"), ...
2
27
5
c26406e2ee50c60a53c9e6a0279b7e01ba194a60
Agoston Szepessy
2016-11-16T13:59:55
servo: Merge #14188 - Added parsing/serialization for text-emphasis-position (from AgostonSzepessy:text-emphasis-position); r=SimonSapin Implemented parsing/serialization for text-emphasis-position - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [ ] These chang...
diff --git a/style/properties/longhand/inherited_text.mako.rs b/style/properties/longhand/inherited_text.mako.rs index e622dabe2..d08d5b1dd 100644 --- a/style/properties/longhand/inherited_text.mako.rs +++ b/style/properties/longhand/inherited_text.mako.rs @@ -936,6 +936,55 @@ ${helpers.single_keyword("text-align-last"...
1
49
0
6904ed50c1959ac92aa5bf265a710116ce10ae31
Martin Robinson
2016-11-16T10:47:34
servo: Merge #14200 - Deal with changes to the WebRender API (from mrobinson:display-list); r=<try> <!-- 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/layout/webrender_helpers.rs b/layout/webrender_helpers.rs index 079799403..0dec6409a 100644 --- a/layout/webrender_helpers.rs +++ b/layout/webrender_helpers.rs @@ -10,46 +10,20 @@ use app_units::Au; use euclid::{Matrix4D, Point2D, Rect, Size2D, TypedRect}; use gfx::display_list::{BorderRadii, BoxShadowC...
3
93
219
28e5b0f555b4a167cc48298f6d70e95a23760737
Alan Jeffrey
2016-11-15T16:50:20
servo: Merge #14023 - Storage notifications routed via the constellation (from asajeffrey:storage-notify-via-constellation); r=nox <!-- Please describe your changes on the following line: --> At the moment, storage notifications are only sent within a script thread, not to same-origin pipelines in different script th...
diff --git a/constellation/constellation.rs b/constellation/constellation.rs index 42db62eae..c42bdf427 100644 --- a/constellation/constellation.rs +++ b/constellation/constellation.rs @@ -32,7 +32,7 @@ use msg::constellation_msg::{Key, KeyModifiers, KeyState}; use msg::constellation_msg::{PipelineNamespace, PipelineN...
5
66
27
d299c37a3dbfbfe160913f5ff530db6b984c819a
Josh Matthews
2016-11-14T22:12:34
servo: Merge #14165 - Supress panics for ProfilerChan sends (from servo:jdm-patch-1); r=nox This should address #14161. Source-Repo: https://github.com/servo/servo Source-Revision: 65dd6d43409228e259153463fe24922c51172bc5
diff --git a/profile_traits/Cargo.toml b/profile_traits/Cargo.toml index dd9cd0a08..bf765fa45 100644 --- a/profile_traits/Cargo.toml +++ b/profile_traits/Cargo.toml @@ -16,6 +16,7 @@ energy-profiling = ["energymon", "energy-monitor"] ipc-channel = "0.5" energymon = {git = "https://github.com/energymon/energymon-rust....
5
14
4
c9344d4d9daee52503fc0240dc8561b559a0c01e
Emilio Cobos Álvarez
2016-11-14T20:47:21
servo: Merge #13641 - Use rayon to drive parallel layout and styling (from emilio:rayon-style); r=pcwalton <!-- Please describe your changes on the following line: --> The current work queue had a really annoying constraint: The size of the node had to be the size of the work unit data. This makes it impractical for...
diff --git a/layout/Cargo.toml b/layout/Cargo.toml index 62f6cf47e..59a5ad9f8 100644 --- a/layout/Cargo.toml +++ b/layout/Cargo.toml @@ -31,6 +31,7 @@ parking_lot = "0.3.3" plugins = {path = "../plugins"} profile_traits = {path = "../profile_traits"} range = {path = "../range"} +rayon = "0.5" script_layout_interfac...
13
110
520
793c638fc458e602843df0fd604949633b8a9d6d
UK992
2016-11-14T18:12:29
servo: Merge #14193 - Various cleanup (from UK992:win-cleanup); r=vvuk <!-- Please describe your changes on the following line: --> Reduces msi file size from 102 MB to 94 MB and installation size from 394 MB to 334 MB. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is ...
diff --git a/gfx/platform/dummy/font.rs b/gfx/platform/dummy/font.rs deleted file mode 100644 index 096580c66..000000000 --- a/gfx/platform/dummy/font.rs +++ /dev/null @@ -1,80 +0,0 @@ -/* 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 w...
4
0
157
53e2895c2ec9281c4e14e715bab1739d8bda048d
Nazım Can Altınova
2016-11-14T17:17:54
servo: Merge #14189 - Implement border-image shorthand (from canaltinova:border-image-shorthand); r=Manishearth <!-- Please describe your changes on the following line: --> Implementation of border-image shorthand. r? Manishearth --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when th...
diff --git a/style/properties/longhand/border.mako.rs b/style/properties/longhand/border.mako.rs index 1c6819d70..10aa2dd26 100644 --- a/style/properties/longhand/border.mako.rs +++ b/style/properties/longhand/border.mako.rs @@ -107,6 +107,11 @@ ${helpers.single_keyword("-moz-float-edge", "content-box margin-box", ...
2
157
1
2fb9742c0ecd38e911eab8ffe50a20ac3e8bb078
Anthony Ramine
2016-11-14T16:22:25
servo: Merge #14201 - Reorganise ServoParser (from nox:write); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 0d22adfd42c870c75b6a8247f3e9d7b362ffbe18
diff --git a/script/dom/bindings/trace.rs b/script/dom/bindings/trace.rs index 8f5aaba2e..b38d5d4ec 100644 --- a/script/dom/bindings/trace.rs +++ b/script/dom/bindings/trace.rs @@ -46,6 +46,7 @@ use euclid::{Matrix2D, Matrix4D, Point2D}; use euclid::length::Length as EuclidLength; use euclid::rect::Rect; use euclid:...
8
291
280
b7cd2d3fa9e4b1b810e0433646279320d89cd0f3
Ms2ger
2016-11-14T14:39:26
servo: Merge #14204 - Remove the network.http.redirection-limit preference (from servo:redirection-limit); r=jdm The Fetch standard defines this value as twenty; there is no good reason to allow changing that at runtime. Source-Repo: https://github.com/servo/servo Source-Revision: bcd409cf4af7cdef6527af853f1c27410c8a...
diff --git a/net/http_loader.rs b/net/http_loader.rs index 8455a7c0f..6b05644f2 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -53,7 +53,6 @@ use time::Tm; #[cfg(any(target_os = "macos", target_os = "linux", target_os = "windows"))] use tinyfiledialogs; use url::{Position, Url, Origin}; -use util::prefs...
1
1
3
3dbf86018e0d51ee9eb7ccc55e27ffc85509cfd0
Corey Farwell
2016-11-14T12:59:35
servo: Merge #14135 - Indicate items in doc comments as code-like (from frewsxcv:code-like); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: eb36ab82c042750897e7d35bc57b0a453a6c228b
diff --git a/compositing/touch.rs b/compositing/touch.rs index 24d3e5cf0..fe494cb7b 100644 --- a/compositing/touch.rs +++ b/compositing/touch.rs @@ -8,7 +8,7 @@ use gfx_traits::DevicePixel; use script_traits::{EventResult, TouchId}; use self::TouchState::*; -/// Minimum number of ScreenPx to begin touch scrolling. ...
5
13
13
eaaf279b584edb0afe0c27d3658b2a0720187f20
Takanori Ishibashi
2016-11-14T09:36:37
servo: Merge #14199 - Update CSSRule naming from 'CSSRule' to 'CssRule' (from 11Takanori:CSSRule_to_CssRule); r=nox <!-- Please describe your changes on the following line: --> Update CSSRule naming from 'CSSRule' to 'CssRule' --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the s...
diff --git a/script/dom/htmlmetaelement.rs b/script/dom/htmlmetaelement.rs index 7ddca9f2f..828554725 100644 --- a/script/dom/htmlmetaelement.rs +++ b/script/dom/htmlmetaelement.rs @@ -22,7 +22,7 @@ use std::ascii::AsciiExt; use std::sync::Arc; use style::attr::AttrValue; use style::str::HTML_SPACE_CHARACTERS; -use ...
3
37
37
0b0eeacc2b89862e40a0d72dca3c7890b7ce5297
Manish Goregaokar
2016-11-14T07:51:07
servo: Merge #14104 - Adds scroll-snap-type shorthand property (from iamrohit7:scroll-snap-type); r=Manishearth,waffles <!-- Please describe your changes on the following line: --> Follow up to #14017 --- r=Manishearth <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is compl...
diff --git a/style/properties/declaration_block.rs b/style/properties/declaration_block.rs index 5ba7f52db..b65fc6698 100644 --- a/style/properties/declaration_block.rs +++ b/style/properties/declaration_block.rs @@ -214,16 +214,13 @@ impl PropertyDeclarationBlock { if !self.declarations.iter().all(|de...
4
54
16
8d6cf217ff40686ae11ad482933713d02b7bbbd9
Emilio Cobos Álvarez
2016-11-13T20:16:15
servo: Merge #14187 - Add a few minimal debugging docs (from emilio:rr-docs); r=jdm r? @jdm (or anyone else) Source-Repo: https://github.com/servo/servo Source-Revision: bfd4a0e5ffce6ceed6c4426279a8f3dcb3766fd1
diff --git a/layout/Cargo.toml b/layout/Cargo.toml index b1b0eb176..62f6cf47e 100644 --- a/layout/Cargo.toml +++ b/layout/Cargo.toml @@ -27,7 +27,7 @@ log = "0.3.5" msg = {path = "../msg"} net_traits = {path = "../net_traits"} ordered-float = "0.2.2" -parking_lot = {version = "0.3.3", features = ["nightly"]} +parkin...
2
2
2
7ce7084ee2c8704acc2912a354b0f13a6ac2916b
Emilio Cobos Álvarez
2016-11-13T10:55:02
servo: Merge #14174 - style: Refactor and add infrastructure for font metrics in style (from emilio:font-provider); r=Manishearth <!-- 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 `__` wi...
diff --git a/style/animation.rs b/style/animation.rs index 0e00cbca0..9c79aaf5a 100644 --- a/style/animation.rs +++ b/style/animation.rs @@ -403,6 +403,7 @@ fn compute_style_for_animation_step(context: &SharedStyleContext, previous_style, ...
14
195
94
f46f0bb07639597258572028c0922555c415ff8a
Andreas Tolfsen
2016-11-12T20:15:54
servo: Merge #14185 - Upgrade webdriver to version 0.15 (from andreastt:webdriver-0.15); r=jdm <!-- Please describe your changes on the following line: --> Upgrade webdriver crate dependency to 0.15. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and repla...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 3c7d67391..ed74bf61b 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2919,7 +2919,7 @@ dependencies = [ [[package]] name = "webdriver" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependenci...
2
5
5
0e3af22519cee70cdf65aa43038254180aeeb572
Vladimir Vukicevic
2016-11-12T19:19:24
servo: Merge #14177 - Update dwrote-rs to pick up non-en-us language fix (from vvuk:dwfix); r=emilio Update dwrote-rs to not panic on non-en-US locales Source-Repo: https://github.com/servo/servo Source-Revision: 32991370a1a01d1038aa819586fe7aa84c524b47
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 91a5d273c..3c7d67391 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -630,7 +630,7 @@ dependencies = [ [[package]] name = "dwrote" version = "0.1.0" -source = "git+https://github.com/vvuk/dwrote-rs#2bf7d4792d15fccb50f1e247e4be9c2c7b893f2b" +source = "git...
1
1
1
e86e28a6e0b3a9a7ded2e36b71337091d851569a
Jean-Marie Comets
2016-11-12T15:58:29
servo: Merge #14184 - Return `KeyReaction::Nothing` for a Tab event (from jmcomets:tab-no-default-action); r=metajack Do nothing instead of triggering the default action for a tab event. Hitting the tab key in an html text input shouldn't submit the form, and for any text input, the tab key should have a particular a...
diff --git a/script/dom/htmlinputelement.rs b/script/dom/htmlinputelement.rs index b599d4369..ddbd57d24 100644 --- a/script/dom/htmlinputelement.rs +++ b/script/dom/htmlinputelement.rs @@ -35,7 +35,6 @@ use dom::virtualmethods::VirtualMethods; use html5ever_atoms::LocalName; use ipc_channel::ipc::{self, IpcSender}; ...
2
4
14
345f589fb36e3a1840170638485a742de27c52b6
Corey Farwell
2016-11-12T11:56:59
servo: Merge #14181 - Don't unnecessarily clone entire `opts::Opt` structure (from frewsxcv:opt-clone); r=nox `opts::Opt` is a pretty big structure, so cloning everything is excessive when we only need a few items. Source-Repo: https://github.com/servo/servo Source-Revision: 2d0c7166f118efed9f25fbe7b4f01f9521829418
diff --git a/servo/lib.rs b/servo/lib.rs index 83de1b52d..509d9fa00 100644 --- a/servo/lib.rs +++ b/servo/lib.rs @@ -87,9 +87,12 @@ use profile::time as profile_time; use profile_traits::mem; use profile_traits::time; use script_traits::{ConstellationMsg, SWManagerSenders, ScriptMsg}; +use std::borrow::Cow; use std...
2
14
7
065e3f4fe824edcb01b48aa07957831ba043686b
Emilio Cobos Álvarez
2016-11-12T05:02:17
servo: Merge #14179 - script: Ensure script is initialized before running script (from emilio:racy-script); r=jdm <!-- Please describe your changes on the following line: --> Fixes the race causing #14154. Service workers are ok because they contain explicit synchronization. r? @asajeffrey or @jdm Source-Repo: http...
diff --git a/script/lib.rs b/script/lib.rs index 94e9683ff..91ccc817c 100644 --- a/script/lib.rs +++ b/script/lib.rs @@ -163,15 +163,17 @@ fn perform_platform_specific_initialization() { #[cfg(not(target_os = "linux"))] fn perform_platform_specific_initialization() {} +pub fn init_service_workers(sw_senders: SWMana...
2
13
6
f0cb71d2b099f8218a8b092c8e7ec4d4f3e8793a
Artem Biryukov
2016-11-12T03:35:48
servo: Merge #14178 - Parse trait functions (from impowski:parse_trait_functions); r=Wafflespeanut <!-- Please describe your changes on the following line: --> Moved parse functions to a Parse trait in style. r? @Manishearth --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the ste...
diff --git a/style/custom_properties.rs b/style/custom_properties.rs index 0f12f8414..0e8877814 100644 --- a/style/custom_properties.rs +++ b/style/custom_properties.rs @@ -8,6 +8,7 @@ use Atom; use cssparser::{Delimiter, Parser, SourcePosition, Token, TokenSerializationType}; +use parser::Parse; use properties::D...
13
148
114
1e22640d7e81937b1b91a641f09eb18e124048be
Bobby Holley
2016-11-11T22:35:34
servo: Merge #14175 - Separate selector matching from property cascading (from bholley:separate_cascade); r=emilio This builds on @emilio's rule tree work. The goal is to raise the boundary between rule node computation and property cascading higher up the callstack, so that the new traversal architecture can decide t...
diff --git a/style/matching.rs b/style/matching.rs index 97faf4d0a..ca799af62 100644 --- a/style/matching.rs +++ b/style/matching.rs @@ -18,7 +18,7 @@ use properties::{CascadeFlags, ComputedValues, SHAREABLE, cascade}; use properties::longhands::display::computed_value as display; use rule_tree::StrongRuleNode; use ...
2
86
92
607def00e84b41dc7fa7f0d3065c32b23d946f3b
Emilio Cobos Álvarez
2016-11-11T19:33:06
servo: Merge #14167 - style: Don't assume siblings are alive in the rule tree when removing ourselves from the child list (from emilio:rule-tree-list); r=Manishearth <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the s...
diff --git a/style/rule_tree/mod.rs b/style/rule_tree/mod.rs index 5534d7632..f1574ea58 100644 --- a/style/rule_tree/mod.rs +++ b/style/rule_tree/mod.rs @@ -200,21 +200,26 @@ impl RuleNode { unsafe fn remove_from_child_list(&self) { debug!("Remove from child list: {:?}, parent: {:?}", self...
1
16
11
23704654bf73ddd38191d52d665f1692bbab62fa
Vladimir Vukicevic
2016-11-10T22:55:17
servo: Merge #14153 - Add support for DirectWrite font rendering on Windows (from vvuk:win32-dwrite); r=glennw <!-- Please describe your changes on the following line: --> This PR adds support for DirectWrite text rendering using a thin wrapper for dwrite, as well as similar functionality added to WebRender. In doing...
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index fd516a2e8..2a706c4b9 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -53,15 +53,12 @@ core-foundation = "0.2" core-graphics = "0.4" core-text = "2.0" -[target.'cfg(any(target_os = "linux", target_os = "android", target_os = "windows"))'.dependencies] -freetype ...
8
416
149
972486c222de145aab8e84a4b0939810e00933e2
Corey Farwell
2016-11-10T20:43:36
servo: Merge #14156 - Update CORS naming from 'CORS' to 'Cors' (from frewsxcv:cors-capitalization); r=KiChjang As per: https://aturon.github.io/style/naming/README.html#general-conventions-[rfc-#430] Acronyms should be considered one word and not all caps. Source-Repo: https://github.com/servo/servo Source-Revision...
diff --git a/net/fetch/cors_cache.rs b/net/fetch/cors_cache.rs index 71d97dd36..c56e6cc8a 100644 --- a/net/fetch/cors_cache.rs +++ b/net/fetch/cors_cache.rs @@ -42,7 +42,7 @@ impl HeaderOrMethod { /// An entry in the CORS cache #[derive(Clone, Debug)] -pub struct CORSCacheEntry { +pub struct CorsCacheEntry { p...
8
59
59
80d6f5af5e66dc25728c3286c86415a32c059167
Anthony Ramine
2016-11-10T19:51:37
servo: Merge #14164 - Update html5ever to 0.10.1 (from nox:write); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 990884be20a4f3e2785280ac3fc7d7e68ecf1b00
diff --git a/script/Cargo.toml b/script/Cargo.toml index 81bf9bde3..e096dae13 100644 --- a/script/Cargo.toml +++ b/script/Cargo.toml @@ -37,7 +37,7 @@ fnv = "1.0" gfx_traits = {path = "../gfx_traits"} heapsize = "0.3.6" heapsize_derive = "0.1" -html5ever = {version = "0.9.0", features = ["heap_size", "unstable"]} +h...
6
32
33
513d94393abbb491a0780e6f8bcd5809d3648f3e
Pu Xingyu
2016-11-10T17:53:05
servo: Merge #14136 - style: Add a "start_end()" method to LogicalMargin (from stshine:orthogonal-symmetry); r=SimonSapin <!-- Please describe your changes on the following line: --> Add a `LogicalMargin::start_end()` method that receives a `Direction' parameter. This is useful for some layout that is symmetric in in...
diff --git a/layout/construct.rs b/layout/construct.rs index 8841b1ab3..d9fa67cd7 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -34,7 +34,6 @@ use inline::{FIRST_FRAGMENT_OF_ELEMENT, InlineFlow}; use inline::{InlineFragmentNodeInfo, LAST_FRAGMENT_OF_ELEMENT}; use linked_list::prepend_from; use list_i...
5
22
12
6344b565829e6a66e949310a39d13784c4cbb8dd
Ms2ger
2016-11-10T15:19:52
servo: Merge #14127 - Make Response::url private (from servo:response-new-url); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: d8a0a0003252391d6130cca5f64b9738255e224a
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index eba6481f2..84d4956b9 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -409,9 +409,7 @@ fn basic_fetch<UI: 'static + UIProvider>(request: Rc<Request>, match url.scheme() { "about" if url.path() == "blank" => { - let ...
2
13
17
c14c4cc11cd46470ca5b128c9e804cba71e77700
Emilio Cobos Álvarez
2016-11-10T14:28:39
servo: Merge #13791 - Centralize construction of specified url() values in style (from emilio:lazy-url); r=SimonSapin This reduces a decent amount of overhead in #13778. r? @SimonSapin --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with a...
diff --git a/layout/construct.rs b/layout/construct.rs index 086b323e8..8841b1ab3 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -1205,9 +1205,9 @@ impl<'a, ConcreteThreadSafeLayoutNode: ThreadSafeLayoutNode> -> ConstructionResult { let flotation = FloatKind::fro...
19
261
172
8e5ce3e485698a963eefd8ca022bb7729f50f859
Xidorn Quan
2016-11-10T07:37:57
servo: Merge #14159 - Allow empty media query list (from upsuper:media-query); r=Wafflespeanut <!-- 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] `./m...
diff --git a/script/dom/htmllinkelement.rs b/script/dom/htmllinkelement.rs index 9fb5a5609..904993881 100644 --- a/script/dom/htmllinkelement.rs +++ b/script/dom/htmllinkelement.rs @@ -359,8 +359,7 @@ impl FetchResponseListener for StylesheetContext { Some(environment...
5
21
17
71f51d550e008933842c0755d751ce3ec18db30c
Cameron McCormack
2016-11-10T04:59:04
servo: Merge #14158 - Regenerate bindings (from heycam:bindings-update-4); r=Manishearth <!-- Please describe your changes on the following line: --> Bindings update from [the latest incubator/stylo push](https://treeherder.mozilla.org/#/jobs?repo=stylo&revision=c5170a72424e7175020506586fa775077f5307a9). r? @Manishe...
diff --git a/style/gecko_bindings/structs_debug.rs b/style/gecko_bindings/structs_debug.rs index f09f413df..be9627a71 100644 --- a/style/gecko_bindings/structs_debug.rs +++ b/style/gecko_bindings/structs_debug.rs @@ -5546,7 +5546,7 @@ pub struct FragmentOrElement_nsDOMSlots { /** * Holds any SMIL override st...
3
20
28
d4f8295c47562468f50c8c25a54b70d824b0b2a9
Permutator
2016-11-10T01:08:52
servo: Merge #14035 - Don't mark the first/last fragment of an {ib} split as FIRST/LAST_FRAGMENT_OF_ELEMENT (from Permutatrix:iss-14030); r=emilio <!-- Please describe your changes on the following line: --> This change allows inline margins, borders, and padding to interact correctly with {ib} splits. --- <!-- Thank...
diff --git a/layout/construct.rs b/layout/construct.rs index 579489e8d..086b323e8 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -30,7 +30,7 @@ use fragment::{InlineAbsoluteHypotheticalFragmentInfo, TableColumnFragmentInfo}; use fragment::{InlineBlockFragmentInfo, SpecificFragmentInfo, UnscannedTextFrag...
1
47
28
ff91e3c1cff9327f3145f536cf8cddee5a266489
Raphael Nestler
2016-11-10T00:13:06
servo: Merge #14083 - Add redirect_mode to RequestInit (from rnestler:fix_14018); r=jdm This adds support for non-follow redirect modes for `RequestInit`. --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes fix #14018 (github issue number if ap...
diff --git a/net_traits/request.rs b/net_traits/request.rs index 0e820a272..ef905ebcc 100644 --- a/net_traits/request.rs +++ b/net_traits/request.rs @@ -81,7 +81,7 @@ pub enum CacheMode { } /// [Redirect mode](https://fetch.spec.whatwg.org/#concept-request-redirect-mode) -#[derive(Copy, Clone, PartialEq, HeapSizeOf...
2
5
1
d1ab357f9b896ac6b210aca5d6ab19485ca541c6
Nikhil Shagrithaya
2016-11-09T22:36:45
servo: Merge #13924 - implemented string-valued text-overflow (from cynicaldevil:text-overflow); 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/layout/fragment.rs b/layout/fragment.rs index 7ff692e91..2c193d09e 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -1037,12 +1037,15 @@ impl Fragment { } /// Transforms this fragment into an ellipsis fragment, preserving all the other data. - pub fn transform_into_ellipsis(&self,...
3
29
19
6f0b698b0cf858cd427ee281418c7077df691ddb
Jeena Lee
2016-11-09T21:04:10
servo: Merge #13802 - Allow Request's Headers to be created with various objects (from jeenalee:request-headers); r=jdm <!-- Please describe your changes on the following line: --> While Headers could be constructed correctly with an array or object (open ended dictionary/MozMap), Request's Headers failed to be creat...
diff --git a/script/dom/request.rs b/script/dom/request.rs index e9cee6da9..fa6497022 100644 --- a/script/dom/request.rs +++ b/script/dom/request.rs @@ -308,21 +308,31 @@ impl Request { // Step 27 let mut headers_copy = r.Headers(); - // This is equivalent to the specification's concept of - ...
1
32
11
864a9dbe53dc9d44a1334ba9d70f4062568b8039
Eric Anholt
2016-11-09T16:03:42
servo: Merge #14081 - webgl: out-of-bounds readPixels() fixes (from anholt:webgl-readpix-negative-width); r=emilio <!-- Please describe your changes on the following line: --> Fix crashes in two WebGL readPixels() tests by adding framebuffer size validation. --- <!-- Thank you for contributing to Servo! Please replac...
diff --git a/script/dom/webglframebuffer.rs b/script/dom/webglframebuffer.rs index 8e22f17d0..25026dac2 100644 --- a/script/dom/webglframebuffer.rs +++ b/script/dom/webglframebuffer.rs @@ -21,7 +21,7 @@ use webrender_traits::{WebGLCommand, WebGLFramebufferBindingRequest, WebGLFrameb #[derive(JSTraceable, Clone, HeapSi...
4
212
23
ca5e7cc73b903cb87b856766bcc3cf119533c44e
Ravi Shankar
2016-11-09T14:15:16
servo: Merge #14049 - Add a generic type for sharing some CSS types (from Wafflespeanut:lon); r=SimonSapin <!-- Please describe your changes on the following line: --> This would be useful for types such as `T(pub Option<U>)` or any type that's a mixture of two types (like `LengthOrFoo` for example). Well, it's a bit...
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index 3e5328afc..ec881ea9b 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -52,9 +52,8 @@ use style::logical_geometry::{LogicalPoint, LogicalRect, LogicalSize, WritingMod use style::properties::{self, Servo...
11
125
117
102cf0441f0af234d27d88516b5b526229b0f476
Glenn Watson
2016-11-09T10:50:45
servo: Merge #14145 - Update WR - stride support, remove deprecated / unused shaders (from glennw:update-wr-remove-shaders); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 99f125721017e0f46a5b01b8771245395b7cb880
diff --git a/net/image_cache_thread.rs b/net/image_cache_thread.rs index 440ebd321..5929100e2 100644 --- a/net/image_cache_thread.rs +++ b/net/image_cache_thread.rs @@ -323,7 +323,11 @@ fn get_placeholder_image(webrender_api: &webrender_traits::RenderApi) -> io::Res let format = convert_format(image.format); ...
2
13
4
229bdb181eb39ba2644450de8e2f3dd02824571d
Pu Xingyu
2016-11-09T09:59:22
servo: Merge #14130 - layout: Mark flex items properly during construction (from stshine:construct-flexbox); r=pcwalton <!-- Please describe your changes on the following line: --> Set the flag of the fragment of children in a flex container according to the direction of the container. The mark is done on the fragmen...
diff --git a/layout/block.rs b/layout/block.rs index 7702783bf..45de87867 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -41,6 +41,7 @@ use flow::{ImmutableFlowUtils, LateAbsolutePositionInfo, MutableFlowUtils, Opaqu use flow::IS_ABSOLUTELY_POSITIONED; use flow_list::FlowList; use fragment::{CoordinateSystem,...
6
76
21
0f96bfc4e7312299ac6015e40c4fbda6b74020af
Ms2ger
2016-11-09T09:07:54
servo: Merge #14132 - Derive Debug on devtools_traits types (from servo:debug-devtools); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 28fbae17b7e658f2c3717a4ff94033af61d71b05
diff --git a/devtools_traits/lib.rs b/devtools_traits/lib.rs index 17362ed55..3155835fe 100644 --- a/devtools_traits/lib.rs +++ b/devtools_traits/lib.rs @@ -38,13 +38,13 @@ use url::Url; // Information would be attached to NewGlobal to be received and show in devtools. // Extend these fields if we need more informa...
1
21
18
35a0a94a806f73586b1a49ef75d570c4b85e8c92
Corey Farwell
2016-11-09T07:23:55
servo: Merge #14134 - Fix `./mach clippy` (from frewsxcv:cargo-clippy); r=jdm Fixes https://github.com/servo/servo/issues/13117. Source-Repo: https://github.com/servo/servo Source-Revision: f1f97fb48ee3ac16a56f02d5b1fd8e28d1f94b9c
diff --git a/plugins/Cargo.toml b/plugins/Cargo.toml index 39ec3723b..bebc70332 100644 --- a/plugins/Cargo.toml +++ b/plugins/Cargo.toml @@ -11,7 +11,7 @@ path = "lib.rs" plugin = true [dependencies.clippy_lints] -version = "0.0.77" +version = "0.0.98" optional = true [features] diff --git a/servo/Cargo.lock b/...
3
52
1
597675b3f7b609582b95e4a916bb007ecf01005f
Ms2ger
2016-11-09T06:32:02
servo: Merge #14133 - Log debug messages when devtools is not notified about a HTTP request (from servo:debug-net-devtools); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 3410242df8cb324434f85230acccba986dad3773
diff --git a/net/http_loader.rs b/net/http_loader.rs index 3b0202db8..8455a7c0f 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -835,9 +835,11 @@ pub fn obtain_response<A>(request_factory: &HttpRequestFactory<R=A>, request_body.clone(), pipeline_id, time::now(), con...
1
2
0
511f01b84ae82edd14e0970e95e3d6974461ac42
Ms2ger
2016-11-09T05:40:38
servo: Merge #14138 - Pass a borrowed fetch context to fetch() (from servo:fetch-context); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: 9d1c1f434d74665b7cd1ed14ef3733fe3d03deeb
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index 092a5e7f0..eba6481f2 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -63,7 +63,7 @@ type DoneChannel = Option<(Sender<Data>, Receiver<Data>)>; /// [Fetch](https://fetch.spec.whatwg.org#concept-fetch) pub fn fetch<UI: 'static + UIProvider>(...
2
3
3
4ab0c7eef582080eac36d7decc1eb06a840ad629
Ms2ger
2016-11-09T04:45:19
servo: Merge #14137 - Implement Debug for Response (from servo:debug-response); r=frewsxcv Source-Repo: https://github.com/servo/servo Source-Revision: a203a26c1235ab7a7bf821023abaec0a240d2079
diff --git a/net_traits/response.rs b/net_traits/response.rs index e9de8d83a..92eee0e46 100644 --- a/net_traits/response.rs +++ b/net_traits/response.rs @@ -25,7 +25,7 @@ pub enum ResponseType { } /// [Response termination reason](https://fetch.spec.whatwg.org/#concept-response-termination-reason) -#[derive(Clone, ...
1
3
3
1ae67fbc930ad367a918041b92f6ba4ae2ca876e
Alan Jeffrey
2016-11-09T02:09:21
servo: Merge #14052 - Constellation manages script thread lifetime (from asajeffrey:constellation-manages-script-thread-lifetime); r=jdm <!-- Please describe your changes on the following line: --> Yet another step towards fixing #633... At the moment, script threads are responsible for killing themselves when they ...
diff --git a/constellation/constellation.rs b/constellation/constellation.rs index 21344c3e6..42db62eae 100644 --- a/constellation/constellation.rs +++ b/constellation/constellation.rs @@ -53,6 +53,7 @@ use std::iter::once; use std::marker::PhantomData; use std::mem::replace; use std::process; +use std::rc::Rc; use...
4
61
22
0555a48acd9aa37b843ba2771338165c1e200730
Josh Matthews
2016-11-08T18:23:56
servo: Merge #14119 - Address common source of shutdown panics (from servo:jdm-patch-1); r=mbrubeck Remove easy sources of intermittent failures during test shutdown. Might help #14118 and #14117. Source-Repo: https://github.com/servo/servo Source-Revision: 5173a655219d5eff64d4702718cfa63c2c44e1b3
diff --git a/profile_traits/mem.rs b/profile_traits/mem.rs index 794874581..b7da0d3e8 100644 --- a/profile_traits/mem.rs +++ b/profile_traits/mem.rs @@ -19,7 +19,7 @@ pub trait OpaqueSender<T> { impl<T> OpaqueSender<T> for Sender<T> { fn send(&self, message: T) { - Sender::send(self, message).unwrap(); +...
2
2
2
45eb4380985897cb28a5bca3f7be1de8dacf7585
Jeremy Chen
2016-11-08T16:39:32
servo: Merge #14125 - #13875 - Implement parsing/serialization for font-size-adjust (from chenpighead:font-size-adjust#13875); r=Manishearth <!-- Please describe your changes on the following line: --> Implement parsing/serialization for font-size-adjust. --- <!-- Thank you for contributing to Servo! Please replace ...
diff --git a/style/properties/longhand/font.mako.rs b/style/properties/longhand/font.mako.rs index 01d862166..4df0b9de9 100644 --- a/style/properties/longhand/font.mako.rs +++ b/style/properties/longhand/font.mako.rs @@ -349,6 +349,55 @@ ${helpers.single_keyword("font-variant", } </%helpers:longhand> +// https:...
1
49
0
0875e00f243392cbf026eb611d534ce2732c4a84
Glenn Watson
2016-11-08T14:10:19
servo: Merge #14122 - Update WR and shaders (initial subpixel AA work) (from glennw:update-wr-subpx); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 8122d2c9daef4adaf2287d155502bf279cfd1d5a
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index b67414822..86daa9392 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -1098,7 +1098,7 @@ dependencies = [ "enum_primitive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "gif 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",...
3
21
9
94537f2ebaa09be99ca06d24909608418eda1a76
Patrick Walton
2016-11-08T09:31:16
servo: Merge #14111 - style: Turn the CSS flexible box model on by default (from servo:pcwalton-turn-flexbox-on); r=emilio,jdm Source-Repo: https://github.com/servo/servo Source-Revision: c4bd2027b723df9a999b25917ebb293acf9f722c
diff --git a/style/properties/longhand/box.mako.rs b/style/properties/longhand/box.mako.rs index fb843144c..8b145c5ee 100644 --- a/style/properties/longhand/box.mako.rs +++ b/style/properties/longhand/box.mako.rs @@ -23,7 +23,6 @@ """.split() if product == "gecko": values += "-moz-box -mo...
3
6
19
31249b0eb5888855762bbb6f15acb9ea6b7d4c58
Xidorn Quan
2016-11-08T07:46:40
servo: Merge #14121 - Rename media_queries::MediaQueryList to MediaList (from upsuper:medialist); r=Wafflespeanut <!-- Please describe your changes on the following line: --> `MediaList` is the name of the interface for "collection of media queries" used in [CSSOM spec](https://drafts.csswg.org/cssom/#the-medialist-in...
diff --git a/script/dom/bindings/trace.rs b/script/dom/bindings/trace.rs index 67c2721f9..b8274aec9 100644 --- a/script/dom/bindings/trace.rs +++ b/script/dom/bindings/trace.rs @@ -92,7 +92,7 @@ use std::sync::mpsc::{Receiver, Sender}; use std::time::{SystemTime, Instant}; use style::attr::{AttrIdentifier, AttrValue,...
5
22
25
eee423757f24e85a716747a3c3b5ac27098492ac
Ms2ger
2016-11-08T06:03:24
servo: Merge #14106 - Deindent some of the code in http_network_fetch (from servo:deindent-http-network-fetch); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 32a953f0bacb245e507d2a5125907b5ce724e332
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index 11438f407..092a5e7f0 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -1015,88 +1015,8 @@ fn http_network_fetch<UI: 'static + UIProvider>(request: Rc<Request>, request_id.as_ref().map(Deref::deref),...
1
82
82
1b92564a4ad1541d63d075e45b851db851333469
Ms2ger
2016-11-08T04:04:27
servo: Merge #14114 - Start using fetch for the HTTP unit tests (from servo:fetch-unit-http); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 4a7ea7242935a9bea9ac82f82dd22b5ac8aad673
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index d480b419d..11438f407 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -8,7 +8,7 @@ use data_loader::decode; use devtools_traits::DevtoolsControlMsg; use fetch::cors_cache::CORSCache; use filemanager_thread::{FileManager, UIProvider}; -use ...
2
3
5
17b6166009ee24b9bb27ab13a54a5ca4ed90cec4
Martin Robinson
2016-11-08T00:49:53
servo: Merge #14084 - Don't promote all scrollable regions to stacking contexts (from mrobinson:scroll_root_2); r=glennw <!-- Please describe your changes on the following line: --> Don't promote all scrollable regions to stacking contexts Instead annotate all flows with their owning ScrollRoots. When processing the...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 99b1fc0b2..ab8f1ba7a 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -81,7 +81,15 @@ impl DisplayList { scroll_offsets, resul...
9
307
154
ee51d308bb25e37e667283e01645b7130aba893b
Bobby Holley
2016-11-07T22:31:10
servo: Merge #14034 - incremental restyle: Use more concrete types in the style system (from bholley:more_concrete_types); r=emilio We need to hang both snapshots and restyle damage off of ElementData, and so we need them to be concrete to avoid infecting ElementData with the trait hierarchy. Source-Repo: https://git...
diff --git a/layout/animation.rs b/layout/animation.rs index 22387dff5..9147970f8 100644 --- a/layout/animation.rs +++ b/layout/animation.rs @@ -9,12 +9,12 @@ use flow::{self, Flow}; use gfx::display_list::OpaqueNode; use ipc_channel::ipc::IpcSender; use msg::constellation_msg::PipelineId; -use script_layout_interfa...
33
156
139
d323424aa22635cb0602cebcb92d1819e18c6378
Eddy Bruel
2016-11-07T18:47:58
servo: Merge #14110 - Replace rust-websocket with ws-rs in the debugger server (from servo:ejpbruel-ws); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: 04e2af0b222de22782c29eb0a20622e5717cd574
diff --git a/constellation/Cargo.toml b/constellation/Cargo.toml index 7ae0408d2..85785ffff 100644 --- a/constellation/Cargo.toml +++ b/constellation/Cargo.toml @@ -15,6 +15,7 @@ bluetooth_traits = { path = "../bluetooth_traits" } canvas = {path = "../canvas"} canvas_traits = {path = "../canvas_traits"} compositing ...
7
156
41
42cd20b3b39e2d1083584b5e9e0eed3c567620ec
Ms2ger
2016-11-07T17:47:37
servo: Merge #14105 - Stop unnecessarily wrapping the response argument to http_redirect_fetch in Rc (from servo:rm-rc); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 3b5d1f2814bcac1432e0ee8e4c079d23fcfdc280
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index 0e066e918..d480b419d 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -607,7 +607,7 @@ fn http_fetch<UI: 'static + UIProvider>(request: Rc<Request>, RedirectMode::Follow => { // set back to default ...
1
3
3
2c92eae62c08ad009031df36637a85c6975a33f6
Emilio Cobos Álvarez
2016-11-07T16:53:20
servo: Merge #14099 - canvas: Cleanup CanvasData and layout and script messages (from emilio:canvas-data); 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 da...
diff --git a/canvas/canvas_paint_thread.rs b/canvas/canvas_paint_thread.rs index b87470f53..26863482a 100644 --- a/canvas/canvas_paint_thread.rs +++ b/canvas/canvas_paint_thread.rs @@ -12,7 +12,6 @@ use euclid::point::Point2D; use euclid::rect::Rect; use euclid::size::Size2D; use ipc_channel::ipc::{self, IpcSender};...
5
49
24
4a7ff5deea4bc5265431353e0f9cff40827654e0
Shing Lyu
2016-11-07T08:15:03
servo: Merge #13740 - Migrated -Z trace-layout to serde_json (from shinglyu:layout_serde); r=jdm <!-- Please describe your changes on the following line: --> Migrated the trace-layout code from old `rustc-serialize` to `serde_json`. This will help us iterate faster on the layout viewer (#13432), #13436, #12675 and fi...
diff --git a/layout/Cargo.toml b/layout/Cargo.toml index 49af18e17..b1b0eb176 100644 --- a/layout/Cargo.toml +++ b/layout/Cargo.toml @@ -31,11 +31,12 @@ parking_lot = {version = "0.3.3", features = ["nightly"]} plugins = {path = "../plugins"} profile_traits = {path = "../profile_traits"} range = {path = "../range"} ...
18
127
113
b94da2ed5dc2f046b1874ae3f26a247f2fc94f85
Glenn Watson
2016-11-07T04:31:38
servo: Merge #14102 - Update core-graphics (from glennw:update-cg); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: 47d32b7586f9cbdda100a4b0e0f6d56109f53ac3
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 54d72a5f4..d6773b54c 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -116,7 +116,7 @@ source = "git+https://github.com/servo/rust-azure#d817e7e1b1af6896f778d0cc0693e0 dependencies = [ "cmake 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)"...
1
9
9
c75915a875b598826a0c74a141bd7c2e28a702ad
Michael Kohler
2016-11-06T20:01:27
servo: Merge #14087 - Remove CollectMemoryReports from compositor (fixes #13735) (from MichaelKohler:issue13735); r=jdm Remove all of the code in compositor.rs related to: * sending the RegisterReporter message * sending the UnregisterReporter message * the mem_profiler_chan member of IOCompositor * move the code tha...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 70292acee..be827ff2e 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -17,11 +17,9 @@ use gleam::gl; use gleam::gl::types::{GLint, GLsizei}; use image::{DynamicImage, ImageFormat, RgbImage}; use ipc_channel::ipc::{self,...
3
2
38
27f21543243a1a6feb4335759b8d4f3f19b3f16a
Ms2ger
2016-11-06T11:19:37
servo: Merge #14063 - Privatize most of the net crate (from servo:privatize-net); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: c62ce53efa75c1d817669253036c2621caac88bf
diff --git a/net/lib.rs b/net/lib.rs index 8c9a3ba4b..267b4c6d9 100644 --- a/net/lib.rs +++ b/net/lib.rs @@ -47,26 +47,33 @@ extern crate uuid; extern crate webrender_traits; extern crate websocket; -pub mod about_loader; -pub mod blob_loader; -pub mod chrome_loader; -pub mod connector; -pub mod content_blocker; +m...
1
16
9
b751aaadc650e866f11c8cf05a49cfe75c7af314
Jake Goldsborough
2016-11-06T02:55:33
servo: Merge #14066 - remove extra clones from dom event script (from ducks:remove-extra-clones-14062); r=frewsxcv <!-- Please describe your changes on the following line: --> fixes #14062 by removing extra clone calls --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is c...
diff --git a/script/dom/event.rs b/script/dom/event.rs index 96e1d3658..d67d1f64e 100644 --- a/script/dom/event.rs +++ b/script/dom/event.rs @@ -330,8 +330,8 @@ impl Runnable for EventRunnable { fn handler(self: Box<EventRunnable>) { let target = self.target.root(); - let bubbles = self.bubbles.c...
1
2
2
dbd6ce2a7d8a51071d93c65dae4fc49f02347609
Stefan Schindler
2016-11-06T00:51:19
servo: Merge #14082 - Remove unneeded #allow(unsafe_code) (from dns2utf8:cleanup_14065); r=jdm I did #14065 --- <!-- 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/script/dom/mediaquerylist.rs b/script/dom/mediaquerylist.rs index c140f5f2c..3c6215b88 100644 --- a/script/dom/mediaquerylist.rs +++ b/script/dom/mediaquerylist.rs @@ -126,7 +126,6 @@ pub struct WeakMediaQueryListVec { cell: DOMRefCell<WeakRefVec<MediaQueryList>>, } -#[allow(unsafe_code)] impl Wea...
1
0
2
63ac195811544a2b8be5e043b20f1971401c6300
Ms2ger
2016-11-05T12:26:30
servo: Merge #14060 - Remove the direct azure dependencies from gfx, layout and layout_thread (from servo:gfx-azure); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: f7875dad1a43792ff3869f292990d03d30ebd9eb
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index 8c1eaeeea..fd516a2e8 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -12,7 +12,6 @@ path = "lib.rs" [dependencies] app_units = "0.3" -azure = {git = "https://github.com/servo/rust-azure", features = ["plugins"]} bitflags = "0.7" euclid = "0.10.1" fnv = "1.0"...
10
52
84
4660390b429922174fe2ad7cc06530e8510a72fb
Michael Howell
2016-11-04T21:53:38
servo: Merge #14053 - Make `FlowRef` a newtype (from notriddle:flow_ref_unsafe); r=pcwalton This creates a sharp distinction between `Arc<Flow>`s, which may be owned by anyone, and `FlowRef`s, which may only be owned by the traversal code. By checking the reference count, we ensure that a `Flow` cannot be pointed to b...
diff --git a/layout/block.rs b/layout/block.rs index 91383c12e..c60b103e6 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -40,7 +40,6 @@ use flow::{FragmentationContext, MARGINS_CANNOT_COLLAPSE, PreorderFlowTraversal} use flow::{ImmutableFlowUtils, LateAbsolutePositionInfo, MutableFlowUtils, OpaqueFlow}; use fl...
10
146
102
63d9c14e343cabfd72e7ef7bc7440d356f479736
Simon Sapin
2016-11-04T13:44:48
servo: Merge #14054 - Fix unreachable_code warning (from servo:unreachable_code); r=SimonSapin <!-- 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] `./m...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 3ae065e88..0fc0750de 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -121,7 +121,7 @@ dependencies = [ "euclid 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", "freetype 0.1.1 (git+https://github.com/servo/rust-freetype)", "heapsize 0....
1
19
19
b5aca7e3c7b59fd85dab0ea83324e070f1e52c3c
Ms2ger
2016-11-04T10:26:27
servo: Merge #13816 - Move some types out of msg (from servo:msg-crate); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: be58dc36e85414a4d47e6c69f1dd520d300cb50c
diff --git a/msg/constellation_msg.rs b/msg/constellation_msg.rs index e87bac92f..dba47caa4 100644 --- a/msg/constellation_msg.rs +++ b/msg/constellation_msg.rs @@ -305,15 +305,3 @@ pub enum FrameType { IFrame, MozBrowserIFrame, } - -/// [Policies](https://w3c.github.io/webappsec-referrer-policy/#referrer-po...
15
41
37
c13be059426007dd103b37d1a5bdb7e51f9c9a45
Glenn Watson
2016-11-04T08:11:32
servo: Merge #14057 - Update WR, add some key mappings, bind Ctrl-F12 to WR profiler (from glennw:update-wr-keys); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: 651e40f33eff08f836b76024b77bddc77089490c
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index dca6d253e..70292acee 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -18,7 +18,7 @@ use gleam::gl::types::{GLint, GLsizei}; use image::{DynamicImage, ImageFormat, RgbImage}; use ipc_channel::ipc::{self, IpcSender, IpcSh...
3
20
6
f4c7859046d1c35d46584be83ddcf38b8eb089f1
Olaf Buddenhagen
2016-11-04T02:37:17
servo: Merge #14048 - layout/context: Wrap `image_cache_thread` in a `Mutex<>` as well (from antrik:nosync-ipc_sender); r=mbrubeck `SharedLayoutContext.image_cache_thread` didn't get the `Mutex<>` treatment along with all the other channels in there, because `ipc-channel::Sender` is presently inherently `Sync`. I beli...
diff --git a/layout/context.rs b/layout/context.rs index 0b3973eac..308295f41 100644 --- a/layout/context.rs +++ b/layout/context.rs @@ -77,7 +77,7 @@ pub struct SharedLayoutContext { pub style_context: SharedStyleContext, /// The shared image cache thread. - pub image_cache_thread: ImageCacheThread, + ...
2
9
6