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
8f1ae9f3b3dc94805f9059b74f47fb1327c64a10
Corey Farwell
2016-09-17T04:14:14
servo: Merge #13304 - Don't require `PathBuf` ownership if we don't need it (from frewsxcv:ownership); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 6ac9dfdd34299d284995f5e7f957f515f4a2c880
diff --git a/net/file_loader.rs b/net/file_loader.rs index b9b4c09ff..1309a3056 100644 --- a/net/file_loader.rs +++ b/net/file_loader.rs @@ -14,7 +14,7 @@ use std::borrow::ToOwned; use std::error::Error; use std::fs::File; use std::io::Read; -use std::path::PathBuf; +use std::path::Path; use std::sync::Arc; use ur...
1
6
6
5878a2aaa74871048ac07f487e4377b4617626b8
Nicolas
2016-09-16T20:43:54
servo: Merge #13294 - Fix most typoes for: "referer" -> "referrer" (from 6112:referrer-typo-fix); r=jdm Replace most uses of the word "referer" with "referrer", except for `hyper::header::Referer`. Also update the unit tests to compile & pass after those changes. --- <!-- Thank you for contributing to Servo! Please r...
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index 819c85ef5..dd35ce066 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -24,7 +24,7 @@ use mime_guess::guess_mime_type; use msg::constellation_msg::ReferrerPolicy; use net_traits::FetchTaskTarget; use net_traits::request::{CacheMode, Credent...
5
47
47
a7e9181a3ba72eb26d832447e93f1af4aea613a8
Bryan Gilbert
2016-09-16T16:05:52
servo: Merge #13281 - Update basic auth cache to key off of origin instead of url (from gilbertw1:basic-auth-cache-clean); r=jdm This pull request's primary purpose is to store basic auth credentials based on the url origin instead of the entire url. This fixes an issue where servo continuously prompts the user for cr...
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index b9caa1347..819c85ef5 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -827,7 +827,7 @@ fn http_network_or_cache_fetch(request: Rc<Request>, let mut authorization_value = None; // Substep 4 - if let Some(...
3
10
8
a83cf928c0a88de9e9559f67e539186d7f4a78ad
Nazım Can Altınova
2016-09-16T10:01:23
servo: Merge #13188 - Implement matrix decomposition and interpolation (from canaltinova:matrix); r=Manishearth <!-- Please describe your changes on the following line: --> Implement 2D and 3D matrix decomposition and interpolation for animated properties. r? @Manishearth --- <!-- Thank you for contributing to Servo!...
diff --git a/style/properties/helpers/animated_properties.mako.rs b/style/properties/helpers/animated_properties.mako.rs index 0c7c0f733..384e54369 100644 --- a/style/properties/helpers/animated_properties.mako.rs +++ b/style/properties/helpers/animated_properties.mako.rs @@ -623,6 +623,8 @@ impl Interpolate for Length...
1
744
6
760c2808084395fdf8452daa3a01644eec9fe780
Glenn Watson
2016-09-16T01:23:30
servo: Merge #13288 - Update webrender + shaders (from glennw:update-wr-lazy-shaders-scroll); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 79dda5e8cb82b58a3cea8e6dbd2b6ab805f7b250
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index e314b6de9..0dc7ef6d0 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2644,7 +2644,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.5.1" -source = "git+https://github.com/servo/webrender#db07ba36d02570b3fc70e9b31df7b09af3009abe" +source ...
3
17
2
dd86809b5ff200e74699b40cb22c3ede96cf91bf
Ms2ger
2016-09-15T18:41:55
servo: Merge #13279 - Update js (from servo:sm); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: cce21ad6c72d6f8c28e368b8d59f2a747247b690
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 1ab4ada88..e314b6de9 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -1112,7 +1112,7 @@ dependencies = [ [[package]] name = "js" version = "0.1.3" -source = "git+https://github.com/servo/rust-mozjs#4d4466f6eb3994cf53b4c97f5d5fafd263ecb3e9" +source = "git...
1
1
1
1d78de5a1386ecd3acdc8e7ece2f07c98fe5f9a5
Anthony Ramine
2016-09-15T17:37:47
servo: Merge #13278 - Update Rust to 1.13.0-nightly (6ffdda1ba 2016-09-14) (from servo:rustup); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: e0e6a7be4fa00da2968acdb1d310379194a43390
diff --git a/plugins/lints/unrooted_must_root.rs b/plugins/lints/unrooted_must_root.rs index f08d5b757..5dc94df69 100644 --- a/plugins/lints/unrooted_must_root.rs +++ b/plugins/lints/unrooted_must_root.rs @@ -43,8 +43,7 @@ fn is_unrooted_ty(cx: &LateContext, ty: &ty::TyS, in_new_function: bool) -> bool let mut ret...
3
4
5
32b0e7b3894f5f2bed4f9044900fb77ab24fd7ec
Nazım Can Altınova
2016-09-15T16:38:32
servo: Merge #13275 - Normalize rotations in computed transforms (from canaltinova:rotate); r=Manishearth <!-- Please describe your changes on the following line: --> Normalize rotations in computed transforms. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete,...
diff --git a/style/properties/longhand/effects.mako.rs b/style/properties/longhand/effects.mako.rs index 6e58419ce..c7865e53b 100644 --- a/style/properties/longhand/effects.mako.rs +++ b/style/properties/longhand/effects.mako.rs @@ -1099,7 +1099,8 @@ ${helpers.predefined_type("opacity", result....
1
2
1
254b6d4763ce3f560e8e2c068c535372797fc79e
Glenn Watson
2016-09-15T00:05:26
servo: Merge #13273 - Update webrender, gleam and associated shaders (from glennw:update-wr-floats); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: b3db4b4c0dfc41ffbf566da15bd85ebdb7b1ea1f
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 17b6d7fee..1ab4ada88 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -18,7 +18,7 @@ dependencies = [ "gaol 0.0.1 (git+https://github.com/servo/gaol)", "gfx 0.0.1", "gfx_tests 0.0.1", - "gleam 0.2.21 (registry+https://github.com/rust-lang/crates.io-ind...
1
15
15
727db9dc27a5514c9a082d03902c2ec565c757ac
Ms2ger
2016-09-12T18:22:18
servo: Merge #13245 - Correct an unsound optimization in event dispatch (from servo:reset-stop-propagation); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: bb53da69578887befae195b18255967cc7f3fc59
diff --git a/script/dom/eventdispatcher.rs b/script/dom/eventdispatcher.rs index 01973e7c9..e9525f176 100644 --- a/script/dom/eventdispatcher.rs +++ b/script/dom/eventdispatcher.rs @@ -112,19 +112,23 @@ pub fn dispatch_event(target: &EventTarget, assert_eq!(event.phase(), EventPhase::None); assert!(event.GetC...
1
9
5
e79df555f7f788d93ed539479a09b22c2f39fd1c
Eddy Bruel
2016-09-12T15:19:17
servo: Merge #13204 - Implement a WebSocket server for debugging (from ejpbruel:debugger); r=jdm <!-- Please describe your changes on the following line: --> This pull request adds a very simple WebSocket server to Servo, that we intend to use for debugging. It currently only echoes back messages, but eventually we w...
diff --git a/debugger/Cargo.toml b/debugger/Cargo.toml new file mode 100644 index 000000000..9a12e74b5 --- /dev/null +++ b/debugger/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "debugger" +version = "0.0.1" +authors = ["The Servo Project Developers"] +license = "MPL-2.0" +publish = false + +[lib] +name = "debugger" +...
6
91
0
e2c8bffd0a7d3b2ebaefce6cac6b8e2dac95b61c
Jeena Lee
2016-09-12T14:21:52
servo: Merge #13004 - Update DOM headers `append` and `delete` (from jeenalee:combine-headers); r=jdm <!-- Please describe your changes on the following line: --> Two changes are included in this PR: 1. A resolved TODO comment in `delete` is removed. 2. `append` method adds a space after a comma when combining header ...
diff --git a/script/dom/headers.rs b/script/dom/headers.rs index abfa959c8..b97711095 100644 --- a/script/dom/headers.rs +++ b/script/dom/headers.rs @@ -87,7 +87,7 @@ impl HeadersMethods for Headers { let mut combined_value: Vec<u8> = vec![]; if let Some(v) = self.header_list.borrow().get_raw(&valid_n...
1
1
3
667f7f1342c0b3b18edcaa381d384569eda16196
Manish Goregaokar
2016-09-11T01:18:35
servo: Merge #13221 - Resync bindings (from Manishearth:resync); r=emilio New atoms were added. r? @bholley Source-Repo: https://github.com/servo/servo Source-Revision: 77651959e2ccab73d6785a67e242d85445e81dfb
diff --git a/style/generated/gecko_pseudo_element_helper.rs b/style/generated/gecko_pseudo_element_helper.rs index 3d69e0422..05aebe412 100644 --- a/style/generated/gecko_pseudo_element_helper.rs +++ b/style/generated/gecko_pseudo_element_helper.rs @@ -94,6 +94,9 @@ pseudo_element!(":-moz-placeholder", ...
1
3
0
a3a1fa5b938294312fe5bb955a4ae43d70fca587
Sam Wood
2016-09-10T13:46:13
servo: Merge #13130 - 'dblclick' event (from samuknet:dblclick); r=nox <!-- Please describe your changes on the following line: --> * Add field to document struct to store information about last 'click' event * Add code to `handle_mouse_event` function to detect and fire double click events --- <!-- Thank you for con...
diff --git a/script/dom/bindings/trace.rs b/script/dom/bindings/trace.rs index 76e6bb207..fae24096b 100644 --- a/script/dom/bindings/trace.rs +++ b/script/dom/bindings/trace.rs @@ -87,7 +87,7 @@ use std::rc::Rc; use std::sync::Arc; use std::sync::atomic::{AtomicBool, AtomicUsize}; use std::sync::mpsc::{Receiver, Sen...
2
59
1
41344ce422e362a3804ecde48f611adbd841fe91
Manish Goregaokar
2016-09-10T08:34:17
servo: Merge #13213 - stylo: Implement mask longhands (from Manishearth:mask); r=heycam Corresponding gecko bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1300731 r=heycam carries over from https://reviewboard.mozilla.org/r/76908/ Don't merge till that bug lands Source-Repo: https://github.com/servo/servo Source...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 8c72f9275..ee9f843ac 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -497,7 +497,6 @@ impl Debug for ${style_struct.gecko_struct_name} { "transition-duration", "transition-timing-fu...
5
450
198
254bdb4c3ae6978c8876867912f42a11308d9fdd
Ms2ger
2016-09-10T03:25:59
servo: Merge #13215 - Use extend() rather than extend_from_slice() in constellation (from servo:pointless-clones); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 10777a8a8ee745b2e6e454f221edeaca6aba0bf9
diff --git a/constellation/constellation.rs b/constellation/constellation.rs index 609680ccf..bb20e94b9 100644 --- a/constellation/constellation.rs +++ b/constellation/constellation.rs @@ -2203,7 +2203,7 @@ impl<Message, LTF, STF> Constellation<Message, LTF, STF> continue; } ...
1
1
1
6e26a167c3b92633328a769376e4968bcb07db8d
Shing Lyu
2016-09-10T02:13:42
servo: Merge #13214 - Create separate layout trace file for each reflow (from shinglyu:gen_trace); r=SimonSapin <!-- Please describe your changes on the following line: --> Currently only the layout trace from the last reflow is dumped to the file. But the interesting reflow may not be the last one. So we are dumping ...
diff --git a/layout/layout_debug.rs b/layout/layout_debug.rs index 20e8a1671..77ed1741a 100644 --- a/layout/layout_debug.rs +++ b/layout/layout_debug.rs @@ -121,13 +121,13 @@ pub fn begin_trace(flow_root: FlowRef) { /// End the debug layout trace. This will write the layout /// trace to disk in the current directory....
2
3
3
82dc79b0ee564a3d2efc29c4a475cf4e19a3cf8b
Ms2ger
2016-09-10T00:58:17
servo: Merge #13211 - Remove unused derivations from FrameState (from servo:FrameState-derive); r=ConnorGBrewster Source-Repo: https://github.com/servo/servo Source-Revision: b79401be312ef286b0aef68e5f03f7c7a072ea5d
diff --git a/constellation/constellation.rs b/constellation/constellation.rs index 372aa5266..609680ccf 100644 --- a/constellation/constellation.rs +++ b/constellation/constellation.rs @@ -219,7 +219,7 @@ pub struct InitialConstellationState { pub webrender_api_sender: Option<webrender_traits::RenderApiSender>, }...
1
1
1
fa21eb5f50e5e702dfc85418441a0d983c857a5f
Guillaume Gomez
2016-09-09T21:28:34
servo: Merge #13094 - Put back video metadata (from GuillaumeGomez:the_comeback); r=KiChjang I updated the `video-metadata-rs` crate: now, no more ffmpeg, just pure rust. The webm format isn't checked yet. Source-Repo: https://github.com/servo/servo Source-Revision: 142578f2e9dddadd530a4a436a74cfa411341cb5
diff --git a/script/Cargo.toml b/script/Cargo.toml index 836a0ff7e..ee380e928 100644 --- a/script/Cargo.toml +++ b/script/Cargo.toml @@ -23,6 +23,7 @@ tinyfiledialogs = {git = "https://github.com/jdm/tinyfiledialogs"} [dependencies] angle = {git = "https://github.com/servo/angle", branch = "servo"} app_units = "0.3"...
4
67
6
80a31682ac9e46a3f79925ff5c6708097339a4d3
Manish Goregaokar
2016-09-09T07:00:13
servo: Merge #13200 - Resync bindings (from Manishearth:resync); r=bholley StyleClear and StyleDisplay are now enums, updating bindings for them. r? @bholley Source-Repo: https://github.com/servo/servo Source-Revision: 957893bdc2132cf39a505b6ca681ca56c427c049
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index ae8017906..8c72f9275 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -848,7 +848,8 @@ fn static_assert() { <% display_keyword = Keyword("display", "inline block inline-block table inline-table tab...
2
4
2
2e77e5e9197075ef6e790d55105b9c896853ef8b
Michael Howell
2016-09-09T04:17:06
servo: Merge #13192 - Account for percentages in fixed table layout (from notriddle:master); r=pcwalton Don't just use the minimum length all the time. --- - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #13166 (github issue number if app...
diff --git a/layout/table.rs b/layout/table.rs index 7db800c50..ebd2bb65e 100644 --- a/layout/table.rs +++ b/layout/table.rs @@ -335,13 +335,17 @@ impl Flow for TableFlow { let containing_block_inline_size = self.block_flow.base.block_container_inline_size; let mut num_unspecified_inline_sizes = 0; ...
1
28
15
d0ce3826ad7f2105c65e404502f3f2e68774ef17
Shing Lyu
2016-09-08T22:43:50
servo: Merge #13175 - Move collapse through margin to the top of block flow (from shinglyu:block-margin-patch); r=notriddle <!-- Please describe your changes on the following line: --> Based on the spec, a collapse through box should be put on the top edge of the flow. This fixed ~110 reftests --- <!-- Thank you for ...
diff --git a/layout/block.rs b/layout/block.rs index 5ccf0da34..08c30c27a 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -895,6 +895,12 @@ impl BlockFlow { !had_children_with_clearance); translate_including_floats(&mut cur_b, delta, &mut floats); + // Collap...
1
21
0
0393dd540253dfbc05be1fac692b21f3342bb74d
Simon Sapin
2016-09-08T20:50:12
servo: Merge #13190 - Update cssparser (from servo:cssparser-up); 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 `__` with appropriate data: --> - [X] `./mach build -d` d...
diff --git a/canvas_traits/Cargo.toml b/canvas_traits/Cargo.toml index b20df5441..272387f6f 100644 --- a/canvas_traits/Cargo.toml +++ b/canvas_traits/Cargo.toml @@ -11,7 +11,7 @@ path = "lib.rs" [dependencies] azure = {git = "https://github.com/servo/rust-azure", features = ["plugins"]} -cssparser = {version = "0.6...
13
59
58
7d7b3f310684e611abcbfba3a5a5b4e2a41d6e63
Glenn Watson
2016-09-08T19:53:06
servo: Merge #13198 - Update WR/shaders (more AA, VTF mac fix, reftest fixes) (from glennw:wr-update-vtf); r=ConnorGBrewster Source-Repo: https://github.com/servo/servo Source-Revision: 0daf71d58b7081aaa2900e5b8c76f5ac0b8b19e4
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 258d8891f..a7bf8c48e 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2594,7 +2594,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.5.1" -source = "git+https://github.com/servo/webrender#b2cca277407b59c4c3b8122f36b64bd81f83a4dc" +source ...
1
2
2
9bbd1e39770424b19991e4758b2040a1b656d71a
Andreas Tolfsen
2016-09-07T17:57:24
servo: Merge #13186 - Update webdriver-rust library to 0.14 (from andreastt:webdriver-0.14); r=SimonSapin,larsberg <!-- Please describe your changes on the following line: --> This updates the _webdriver-rust_ library to 0.14 and makes the necessary API changes to make it compile with Servo. --- <!-- Thank you for c...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index b84d1af3d..258d8891f 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2559,13 +2559,15 @@ dependencies = [ [[package]] name = "webdriver" -version = "0.9.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependenc...
3
15
13
7015ca149bd470f5aad46995f7bc7ba47c22e569
Glenn Watson
2016-09-07T02:21:39
servo: Merge #13189 - Revert "Update WR (various reftest fixes)." (from glennw:revert-vtf); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 9a1af3564c0072274543ac5f1ca260d5fe79227b
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 535616b76..b84d1af3d 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2592,7 +2592,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.5.1" -source = "git+https://github.com/servo/webrender#f82fad77b938e339be7ccfc9ba23d2ebd7a72fcb" +source ...
1
2
2
64dc668aaf9225ba3749cc8809f3d780ac277b47
Glenn Watson
2016-09-06T21:26:57
servo: Merge #13187 - Update WR (various reftest fixes) (from glennw:wr-update-ref); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 72279cc7eb044a760ce461d76da2ff62adc511dc
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index b84d1af3d..535616b76 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2592,7 +2592,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.5.1" -source = "git+https://github.com/servo/webrender#b2cca277407b59c4c3b8122f36b64bd81f83a4dc" +source ...
1
2
2
c52912d15b75a57ed67a5ab73cda2780b429901d
Ms2ger
2016-09-06T17:35:39
servo: Merge #13174 - Prepare for error reporting in workers (from servo:error-workers); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 3631e314b93746e04944de9f9b77b994420b0bf6
diff --git a/script/dom/abstractworker.rs b/script/dom/abstractworker.rs index 28c755d4f..6c5abd0d0 100644 --- a/script/dom/abstractworker.rs +++ b/script/dom/abstractworker.rs @@ -4,7 +4,6 @@ use dom::bindings::refcounted::Trusted; use dom::bindings::reflector::Reflectable; -use dom::bindings::str::DOMString; use...
5
15
79
b1ef0d764dc25773b9b536a517a17188d8706d3d
Attila Dusnoki
2016-09-06T15:44:41
servo: Merge #12875 - WebBluetooth Android support (from dati91:android); r=larsbergstrom <!-- Please describe your changes on the following line: --> Add android support for Webbluetooth. Also adjust to the changed device api. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the ...
diff --git a/net/bluetooth_thread.rs b/net/bluetooth_thread.rs index 3c2538b1f..51226e21d 100644 --- a/net/bluetooth_thread.rs +++ b/net/bluetooth_thread.rs @@ -4,7 +4,6 @@ use device::bluetooth::BluetoothAdapter; use device::bluetooth::BluetoothDevice; -use device::bluetooth::BluetoothDiscoverySession; use device...
2
26
20
ce4665e47dc8a614957004df79096df5b8b0d66a
Glenn Watson
2016-09-06T11:57:27
servo: Merge #13178 - Update WR + shaders (dotted border AA, clear fix for empty pages) (from glennw:update-wr-clear); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 47e832dbd37e4ea1a321dc8f92a75cfd48fb6be9
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index dc94eaaba..f60cf74ae 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2586,7 +2586,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.5.1" -source = "git+https://github.com/servo/webrender#7ef9be126aa9217bce7711707448dcd1ebd3a370" +source ...
1
2
2
d8c94171c9f783abe562162cbb452d0602b3648b
Anthony Ramine
2016-09-06T10:59:58
servo: Merge #13180 - Update Rust to 1.13.0-nightly (91f057de3 2016-09-04) (from servo:rustup); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: bde321c9367151f20a6fb69bd7e59f5203bdb1ce
diff --git a/plugins/jstraceable.rs b/plugins/jstraceable.rs index 8dcd93f2d..e41d56765 100644 --- a/plugins/jstraceable.rs +++ b/plugins/jstraceable.rs @@ -43,6 +43,7 @@ pub fn expand_jstraceable(cx: &mut ExtCtxt, span: Span, mitem: &MetaItem, item: path: ty::Path::new(vec!("dom", "bindings", "trace", "JSTrac...
4
106
105
e807b535ac877cc114cbd8847aaf1108c385341a
Simon Sapin
2016-09-06T06:48:04
servo: Merge #13179 - Remove one level of nesting in `Stylist` (from servo:flatter-stylist); r=emilio <!-- Please describe your changes on the following line: --> Since #13134, the "normal" and "important" parts of `Stylist` are identical, so we don’t need to store them twice. r? @emilio --- <!-- Thank you for cont...
diff --git a/script/dom/element.rs b/script/dom/element.rs index 193fb16b9..8dea99bcd 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -91,7 +91,7 @@ use style::properties::{DeclaredValue, Importance}; use style::properties::{PropertyDeclaration, PropertyDeclarationBlock, parse_style_attribute}; use ...
8
130
144
a8825048dd9a29632869f9adc876d8b2270d5628
Ms2ger
2016-09-05T08:11:48
servo: Merge #13173 - Stop using mem::transmute_copy (from servo:transmute_copy); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 5f702d6e7f26710b7a24cce3c013a040255f7096
diff --git a/script/dom/bindings/js.rs b/script/dom/bindings/js.rs index 6a0dfd83d..a7ecc9751 100644 --- a/script/dom/bindings/js.rs +++ b/script/dom/bindings/js.rs @@ -126,7 +126,10 @@ impl<T: Castable> LayoutJS<T> { T: DerivedFrom<U> { debug_assert!(thread_state::get().is_layout()); - ...
2
10
5
2b79c9712f13b1cd98cd49d5ab786ca4e04197e9
Manish Goregaokar
2016-09-04T08:45:05
servo: Merge #13157 - stylo: support background-size and corner gradients (from Manishearth:background-size); r=emilio Forgot to fix this in the midst of all other things fixed in #12945 <s>(not yet tested, need to figure out how to test bg-size with gradients)</s> r? @bholley Source-Repo: https://github.com/servo/...
diff --git a/style/gecko_conversions.rs b/style/gecko_conversions.rs index 71457a7dc..851dbe909 100644 --- a/style/gecko_conversions.rs +++ b/style/gecko_conversions.rs @@ -14,7 +14,7 @@ use gecko_bindings::structs::nsStyleCoord_CalcValue; use gecko_bindings::sugar::ownership::{HasArcFFI, HasFFI}; use properties::Com...
2
123
6
09a406ae34352f7ad8a32e51ff8cc13f7d549b78
Emilio Cobos Álvarez
2016-09-04T01:48:35
servo: Merge #12957 - stylo: Don't calculate restyle damage on text nodes (from emilio:stylo-pseudos); r=bholley <!-- 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/style/matching.rs b/style/matching.rs index aba47943e..30b60e465 100644 --- a/style/matching.rs +++ b/style/matching.rs @@ -878,21 +878,29 @@ pub trait MatchMethods : TNode { None => None, }; - let mut applicable_declarations_cache = - context.local_context().appli...
1
16
8
41840f14d9f03e5cdc1fc6a81e06f4e226a207c8
Keith Yeung
2016-09-03T23:45:14
servo: Merge #13170 - Update string_cache to 0.2.27 (from KiChjang:string-cache-update); r=frewsxcv <!-- 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/servo/Cargo.lock b/servo/Cargo.lock index 85adbe544..01de19d55 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -793,7 +793,7 @@ dependencies = [ "servo-fontconfig 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "simd 0.1.1 (git+https://github.com/huonw/simd)", "smallvec 0.1.8 ...
1
11
11
0d2c9231c835e49198bfcdc5774bcdb04030e111
Manish Goregaokar
2016-09-03T03:42:21
servo: Merge #12991 - Add sugar for handling borrowed and owned types (from Manishearth:more-arc-safety); r=mystor,emilio Implements the changes outlined in https://github.com/servo/servo/pull/12826#discussion_r75074985 <s>Also gets things ready for the Unique/Borrowed bindings</s> WIP for borrowed and unique in the...
diff --git a/style/gecko_conversions.rs b/style/gecko_conversions.rs index 9739e1d66..71457a7dc 100644 --- a/style/gecko_conversions.rs +++ b/style/gecko_conversions.rs @@ -11,17 +11,19 @@ use app_units::Au; use gecko_bindings::bindings::{RawServoStyleSheet, ServoComputedValues}; use gecko_bindings::structs::nsStyle...
2
10
9
f6098511af49e4df17137b47ce549b964ab81583
Manish Goregaokar
2016-09-03T02:45:08
servo: Merge #13163 - Use conditional compilation for stylo properties; output unimplemented logs for all properties (from Manishearth:conditional-compilation); r=bholley Till now we were only emitting unimplemented property logs for properties which servo implements but stylo doesn't. This list is getting smaller, an...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index f01988ce2..00e318bdc 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -468,39 +468,70 @@ impl Debug for ${style_struct.gecko_struct_name} { <%def name="raw_impl_trait(style_struct, skip_longhands='',...
12
276
231
027deab968b63d60d96b8e35c6969403d5e1c85a
Emilio Cobos Álvarez
2016-09-02T16:10:01
servo: Merge #13159 - style: Don't incorrectly clamp values in calc that might not be only lengths (from emilio:negative-calc); r=notriddle <!-- 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 repla...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 8de62af1d..85adbe544 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2268,6 +2268,7 @@ dependencies = [ name = "style_traits" version = "0.0.1" dependencies = [ + "app_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "cssparser 0....
7
38
48
e9d8967103ab863b4e923d739c0f85cc6699cfa5
Ms2ger
2016-09-02T09:45:37
servo: Merge #13156 - Dispatch error events at the window object (from servo:report-error); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 569599d40426eda9c6acc86e58c35a423ba742be
diff --git a/script/dom/bindings/callback.rs b/script/dom/bindings/callback.rs index c7a09fcc4..7b837df1f 100644 --- a/script/dom/bindings/callback.rs +++ b/script/dom/bindings/callback.rs @@ -191,7 +191,7 @@ impl<'a> Drop for CallSetup<'a> { JS_LeaveCompartment(self.cx, self.old_compartment); ...
5
85
28
e1659a25ca68f8ea0d948918bb7ac96d6ad20cc9
Manish Goregaokar
2016-09-02T06:06:59
servo: Merge #13148 - Don't use mem::uninitialized() for making calc values (from Manishearth:calc-null); r=emilio We had code relying on `nsStyleCoord::set()` being leaky (like it was before we patched up the calc bindings). Added `nsStyleCoord::null()` for this use case since it's not possible to construct directly ...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 388966778..f01988ce2 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -35,7 +35,7 @@ use logical_geometry::WritingMode; use properties::CascadePropertyFn; use properties::longhands; use std::fmt::{se...
1
2
2
ffb1eee928d58a940f4f74a5ab41e5eff8a82d70
Glenn Watson
2016-09-02T00:35:37
servo: Merge #13160 - Update WR + core-graphics to get mac AA fix (from glennw:wr-update-aa); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 92c3961743daddefc24846aad734ed5bce715978
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 7686aeb21..8de62af1d 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -108,7 +108,7 @@ source = "git+https://github.com/servo/rust-azure#9fb666b2fc86b23761f9b0f877a3d4 dependencies = [ "cmake 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)"...
1
11
11
e1ce2edcb90730ecdb2ebf527465e456a7677938
Manish Goregaokar
2016-09-01T17:50:32
servo: Merge #13122 - Handle specialized serialization of <position> in basic shapes (from Manishearth:basic-shape-position-redux); r=SimonSapin Fixes #13083 We temporarily broke basic-shape serialization in #13042 when 4-value positions were implemented, since I didn't want to increase the scope of that PR too much....
diff --git a/style/values/specified/basic_shape.rs b/style/values/specified/basic_shape.rs index e683b30e7..11da6b805 100644 --- a/style/values/specified/basic_shape.rs +++ b/style/values/specified/basic_shape.rs @@ -16,7 +16,7 @@ use values::computed::basic_shape as computed_basic_shape; use values::computed::{Contex...
1
86
3
218db54a10d387adaa31069a83085c56797c0185
Emilio Cobos Álvarez
2016-09-01T16:41:35
servo: Merge #13121 - style: Properly track whether negative values of calc() are allowed (from emilio:negative-calc); r=SimonSapin <!-- Please describe your changes on the following line: --> r? @SimonSapin --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, a...
diff --git a/style/values/computed/mod.rs b/style/values/computed/mod.rs index 265ed2f3a..28fc7b389 100644 --- a/style/values/computed/mod.rs +++ b/style/values/computed/mod.rs @@ -167,6 +167,7 @@ impl ToComputedValue for specified::CalcLengthOrPercentage { self.compute_from_viewport_and_font_size(context.view...
3
64
27
f8d0c10fe5a9b1034de29cbb2bcb0bf3cd1457f9
Glenn Watson
2016-09-01T09:28:46
servo: Merge #13146 - Update WR + shaders (switch to untyped UBO for CI) (from glennw:update-wr-soa); r=nox This makes WR startup time significantly faster on Linux, by working around a slow path in the shader compiler. Source-Repo: https://github.com/servo/servo Source-Revision: c3ef836c09f0453a795a1c76f1daa4ed4fc05...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 1c96d6f44..7686aeb21 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2585,7 +2585,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.5.1" -source = "git+https://github.com/servo/webrender#b3611d501b13281299a073540058547feeb7e4e3" +source ...
1
2
2
dc0393c6aa45ee7d3fbc782e0d894499f5d18e66
Emilio Cobos Álvarez
2016-09-01T07:44:36
servo: Merge #13110 - Fix incremental restyling under some circumstances due to our bogus use of ElementFlags (from emilio:element-flags); 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 complet...
diff --git a/layout/Cargo.toml b/layout/Cargo.toml index e974cfa9b..460cd5f0c 100644 --- a/layout/Cargo.toml +++ b/layout/Cargo.toml @@ -33,7 +33,7 @@ range = {path = "../range"} rustc-serialize = "0.3" script_layout_interface = {path = "../script_layout_interface"} script_traits = {path = "../script_traits"} -selec...
10
74
50
c40878e0c5dd2de30e29c1a13e80d29c4ca4f87f
Bobby Holley
2016-09-01T03:31:50
servo: Merge #13147 - Update to fnv 1.0.4 (from bholley:rev_fnv); r=Manishearth This should get rid of the vim backup files discussed in https://bugzilla.mozilla.org/show_bug.cgi?id=1298957 Source-Repo: https://github.com/servo/servo Source-Revision: 78baf21c54c954e5ebdea23aff5aa62198709027
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 6b549b512..05d1e2460 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -686,7 +686,7 @@ dependencies = [ [[package]] name = "fnv" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -76...
1
9
9
289f21a372aeee34fe9ad922baad93492c7ce7ca
Glenn Watson
2016-08-31T17:24:47
servo: Merge #13135 - Webrender update (border anti-aliasing, primitive caching) (from glennw:wr-update-caching); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 23adba02426852184167a1a603293707f3517ddd
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 27511be45..ca979b2ca 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2591,7 +2591,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.5.1" -source = "git+https://github.com/servo/webrender#8cff5fd308b0d8db21c4008286685854107d25b7" +source ...
1
2
2
84cb72133809f7b87112ad128852ef6fb490e391
Gabriel Poesia
2016-08-31T16:28:18
servo: Merge #12437 - Handle row borders in border collapsing logic (from gpoesia:tr_margin_fix); r=pcwalton <!-- Please describe your changes on the following line: --> Handle table row border when collapsing borders for a table row. The row border is combined with the cell's border using the already implemented conf...
diff --git a/layout/table.rs b/layout/table.rs index 96475f4a9..a67312d1b 100644 --- a/layout/table.rs +++ b/layout/table.rs @@ -311,12 +311,13 @@ impl Flow for TableFlow { &mut self.collapsed_block_direction_border_widths_for_table); previous_collapsed_block_end_borders = ...
2
47
23
a9f1f74a887e30ea60ee5ec8a4889d9f62afae4f
Jarda Snajdr
2016-08-31T13:33:36
servo: Merge #13138 - Console message packets should have a '_type' attribute (from jsnajdr:master); r=nox <!-- Please describe your changes on the following line: --> Renamed the `type_` attribute of `PageError` and `ConsoleAPI` structs to make them correct Firefox RDP packets. --- <!-- Thank you for contributing to...
diff --git a/devtools_traits/lib.rs b/devtools_traits/lib.rs index 2d8f5f0c1..ecaec4999 100644 --- a/devtools_traits/lib.rs +++ b/devtools_traits/lib.rs @@ -252,7 +252,7 @@ bitflags! { #[derive(Deserialize, Serialize)] pub struct PageError { - #[serde(rename = "type")] + #[serde(rename = "_type")] pub ty...
1
2
2
2beed57c5310161f2f42cfd7df549350033e118a
Emilio Cobos Álvarez
2016-08-31T02:05:56
servo: Merge #13132 - layout: Keep track of whether we've deferred the painting of the document due to a script query (from emilio:deferred-paint); r=pcwalton <!-- 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/layout_thread/lib.rs b/layout_thread/lib.rs index 4cf5a435d..d3be538e2 100644 --- a/layout_thread/lib.rs +++ b/layout_thread/lib.rs @@ -85,7 +85,7 @@ use net_traits::image_cache_thread::{ImageCacheChan, ImageCacheResult, ImageCach use profile_traits::mem::{self, Report, ReportKind, ReportsChan}; use prof...
5
109
57
b4b3782a28021397bb196531e4ff6b9d629d3730
Emilio Cobos Álvarez
2016-08-30T20:53:09
servo: Merge #13075 - style: Allow calc in media queries (from emilio:calc-media); 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] `./...
diff --git a/style/media_queries.rs b/style/media_queries.rs index a5a4206a4..ed6dd2607 100644 --- a/style/media_queries.rs +++ b/style/media_queries.rs @@ -30,18 +30,23 @@ pub enum Range<T> { impl Range<specified::Length> { fn to_computed_range(&self, viewport_size: Size2D<Au>) -> Range<Au> { + // http:...
3
49
30
0b53131427563550452eb79286b2e707ef4b4fda
Emilio Cobos Álvarez
2016-08-30T17:21:14
servo: Merge #13128 - Fix debug assertion introduced in #13108 by me (from emilio:stupidest-assertion-ever); 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 appro...
diff --git a/style/restyle_hints.rs b/style/restyle_hints.rs index d5ccffead..c150f1802 100644 --- a/style/restyle_hints.rs +++ b/style/restyle_hints.rs @@ -470,10 +470,10 @@ impl DependencySet { return; } for dep in deps { - debug_assert!(state_changes.intersects(dep.sensitivi...
1
4
4
4b4eafe80572f336d73432b0378273e8675f8a55
Manish Goregaokar
2016-08-30T14:22:49
servo: Merge #13086 - Add bindings for nsCSSShadowArray, use for text-shadow and box-shadow (from Manishearth:shadowarray); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: fb9c36c8339b302126209061853e6fa26137b9bd
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 0676df08c..388966778 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -1210,13 +1210,107 @@ fn static_assert() { </%self:impl_trait> +<%self:impl_trait style_struct_name="Effects" + ...
1
95
1
de1e30e666e53dd06aa143543e295156cf7659e3
Glenn Watson
2016-08-30T05:36:34
servo: Merge #13120 - Update webrender with font size fix (from glennw:update-wr-font-size); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 8695552052074b0aacd764c28d2183f283e7b4fd
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 9d436eff2..3acb51618 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2591,7 +2591,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.5.1" -source = "git+https://github.com/servo/webrender#6d6ef896a6515e9d850643a9cbedd1e20bce3419" +source ...
1
2
2
6796ed2d1b4ddcb5e952f0ec14e273307ba8d0c5
Glenn Watson
2016-08-30T03:59:28
servo: Merge #13114 - Fix canvas image tests when using webrender (from glennw:webrender-canvas); r=emilio When webrender is enabled, image decoding doesn't pre-multiply by alpha, but the canvas code expects the image data to be pre-multiplied form. Source-Repo: https://github.com/servo/servo Source-Revision: 3a715e5...
diff --git a/canvas_traits/lib.rs b/canvas_traits/lib.rs index db945750a..d148baf05 100644 --- a/canvas_traits/lib.rs +++ b/canvas_traits/lib.rs @@ -552,3 +552,21 @@ pub fn byte_swap(data: &mut [u8]) { i += 4; } } + +pub fn byte_swap_and_premultiply(data: &mut [u8]) { + let length = data.len(); + + ...
2
28
2
da5884d5e994a9ffbc6fae5a70e805e679bb9ead
Glenn Watson
2016-08-30T00:55:24
servo: Merge #13115 - Update webrender + shaders (border AA improvements, float packing work) (from glennw:wr-update-pack); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: b530d172134bb290b876b2e92d4e93df5ee36295
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 0c9da221c..9d436eff2 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2591,7 +2591,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.5.1" -source = "git+https://github.com/servo/webrender#4171ab07f36d9dff12cc4fc31b23c037851cd747" +source ...
1
2
2
bc05f06c844a73042e198d8cb264f0f6643fb04b
Emilio Cobos Álvarez
2016-08-29T23:58:52
servo: Merge #13108 - style: Don't loop over all the set of dependencies always (from emilio:stupidest-opt-ever); r=bholley <!-- Please describe your changes on the following line: --> Instead, divide which kind of dependencies could match a mutation. This cuts down incremental restyle time in BrowserHTML quite a bit...
diff --git a/style/restyle_hints.rs b/style/restyle_hints.rs index 2a9ca8b05..d5ccffead 100644 --- a/style/restyle_hints.rs +++ b/style/restyle_hints.rs @@ -5,6 +5,8 @@ //! Restyle hints: an optimization to avoid unnecessarily matching selectors. use element_state::*; +#[cfg(feature = "servo")] +use heapsize::HeapS...
1
94
22
05cc240dbc86eec8f70f2322626d4c98bbb720d2
Emilio Cobos Álvarez
2016-08-29T17:15:10
servo: Merge #13085 - Update offscreen_gl_context. Fixes #12320 (from emilio:gl-up); r=KiChjang <!-- 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/servo/Cargo.lock b/servo/Cargo.lock index 005624d1f..0c9da221c 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -219,7 +219,7 @@ dependencies = [ "ipc-channel 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "n...
1
8
8
c4657d2e4e839a9cba2cc11266fd3db23e42705e
Nazım Can Altınova
2016-08-29T13:48:57
servo: Merge #13042 - Handle 3- and 4- valued <position>s in style (from canaltinova:position); r=Manishearth <!-- Please describe your changes on the following line: --> This is first part of fix #12690 and covers just specified style part for now. r? @Manishearth --- - [X] These changes fix #12690 (github issue nu...
diff --git a/style/properties/longhand/background.mako.rs b/style/properties/longhand/background.mako.rs index 9ad9daf42..893a0985d 100644 --- a/style/properties/longhand/background.mako.rs +++ b/style/properties/longhand/background.mako.rs @@ -107,8 +107,10 @@ ${helpers.predefined_type("background-color", "CSSColor", ...
3
273
53
b6534a3adaeb3eb5ddac952d9fab95ae1c67b08c
Alan Jeffrey
2016-08-29T10:00:39
servo: Merge #13106 - Remove mutex from Trusted (from servo:trusted); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 9e726b4d83fc169c38f176b9958cfb1b66363e8f
diff --git a/script/dom/bindings/refcounted.rs b/script/dom/bindings/refcounted.rs index 25239a3dc..ea4c47b11 100644 --- a/script/dom/bindings/refcounted.rs +++ b/script/dom/bindings/refcounted.rs @@ -6,21 +6,21 @@ //! between threads (or intra-thread for asynchronous events). Akin to Gecko's //! nsMainThreadPtrHandl...
5
54
91
28fd6c730f5f1f92da3a8313f840efccdc755399
Eric Anholt
2016-08-29T01:10:47
servo: Merge #13060 - webgl: Do validation of glScissor/glViewport(width, height) on the DOM side (from anholt:webgl-invalid-passed-params); r=emilio <!-- Please describe your changes on the following line: --> webgl: Do validation of glScissor/glViewport(width, height) on the DOM side --- <!-- Thank you for contribu...
diff --git a/script/dom/webglrenderingcontext.rs b/script/dom/webglrenderingcontext.rs index 7814296c3..d20e55429 100644 --- a/script/dom/webglrenderingcontext.rs +++ b/script/dom/webglrenderingcontext.rs @@ -1526,6 +1526,10 @@ impl WebGLRenderingContextMethods for WebGLRenderingContext { // https://www.khronos....
1
8
0
ae053e7d4ba95bf98f0a71a9b595f0cb915f8160
Michael Howell
2016-08-29T00:16:19
servo: Merge #13051 - Fix root flow's size at the browser window's size (from notriddle:root_flow_percent); r=glennw When `<body>` needs to calculate its size based on `<html>`'s size, that should be the size of the browser window itself. --- - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy...
diff --git a/layout/block.rs b/layout/block.rs index b8d4e5837..5ccf0da34 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -1336,10 +1336,10 @@ impl BlockFlow { }; let parent_container_size = self.explicit_block_containing_size(shared_context); // https://drafts.csswg.org/css-ui-3/#box-s...
1
2
2
cdc0257740f8b1eb2b39653df10359716e6922e1
Glenn Watson
2016-08-28T23:19:38
servo: Merge #13099 - Update webrender (various optimizations, layer fixes and antialiasing shaders) (from glennw:wr-update-opts); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: b8874ff7d197af8e0c7c23c6aced4d8a8fce1648
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 286af4e21..005624d1f 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2591,7 +2591,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.5.1" -source = "git+https://github.com/servo/webrender#5e4c18b22c6b441319959bd0e66b269a50d866be" +source ...
1
2
2
d26933c79d77dc129734397c790d7bc3c5c851a4
Simon Sapin
2016-08-28T21:30:49
servo: Merge #13098 - Update cssparser (from servo:cssparserup); r=KiChjang <!-- Please describe your changes on the following line: --> Today’s Rust Nigthly broke it --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --...
diff --git a/canvas_traits/Cargo.toml b/canvas_traits/Cargo.toml index 1074b1cac..b20df5441 100644 --- a/canvas_traits/Cargo.toml +++ b/canvas_traits/Cargo.toml @@ -11,7 +11,7 @@ path = "lib.rs" [dependencies] azure = {git = "https://github.com/servo/rust-azure", features = ["plugins"]} -cssparser = {version = "0.5...
8
29
31
f54615a6148179c5617a1b8024ebf67f5be9006f
Anthony Ramine
2016-08-28T16:40:16
servo: Merge #13095 - Update Cargo to 0.13.0-nightly (88e46e9 2016-08-26) (from servo:cargoup); r=metajack This brings correct garbage collection of crates' metadata in the lock files. Source-Repo: https://github.com/servo/servo Source-Revision: 7345905c8be38952786402f10993c5b6984df152
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 022c2731e..715aa9eb1 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2722,45 +2722,46 @@ dependencies = [ [metadata] "checksum aho-corasick 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2b3fb52b09c1710b961acb35390d514be82e4ac96a9969a8...
1
81
81
7cef122659ec4e33e9c61c9bfad91d6a88c1f5e4
Lars Bergstrom
2016-08-28T15:43:29
servo: Merge #13063 - Remove static usage at compile-time of GIT_INFO to enable builds outs… (from larsbergstrom:remove_git_info); r=metajack r? @metajack The issue here is that if we build Servo from a expanded copy of the sources w/o a git repository present in-tree, this will fail. Further, we can't switch to `opt...
diff --git a/script/dom/htmliframeelement.rs b/script/dom/htmliframeelement.rs index 73d750cc8..2cc946ec9 100644 --- a/script/dom/htmliframeelement.rs +++ b/script/dom/htmliframeelement.rs @@ -355,7 +355,7 @@ unsafe fn build_mozbrowser_event_detail(event: MozBrowserEvent, type_: Some(DOMString::from(er...
2
8
3
f4842d4857df040e557fbadc0c94f97804995659
Keith Yeung
2016-08-28T14:52:38
servo: Merge #13090 - Update string_cache to 0.2.26 (from KiChjang:update-string-cache); 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 `__` with appropriate data: --> - ...
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index d01aeb3ba..129e0d99b 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -38,7 +38,7 @@ rustc-serialize = "0.3" serde = "0.8" serde_macros = "0.8" smallvec = "0.1" -string_cache = {version = "0.2.25", features = ["heap_size"]} +string_cache = {version = "0.2.26", fe...
6
15
15
f75545119f27fa67c8a28be3cbc7e33ce8ca5bd0
Anthony Ramine
2016-08-28T12:53:33
servo: Merge #13055 - Update Rust to 1.13.0-nightly (198713106 2016-08-26) (from servo:rustup); r=metajack (Do not merge) Update Rust to 1.13.0-nightly (198713106 2016-08-26) Source-Repo: https://github.com/servo/servo Source-Revision: 1c2b45f87f23278d365913506e9c1776799ec345
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index 3ef6e1832..d01aeb3ba 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -38,7 +38,7 @@ rustc-serialize = "0.3" serde = "0.8" serde_macros = "0.8" smallvec = "0.1" -string_cache = {version = "0.2.23", features = ["heap_size"]} +string_cache = {version = "0.2.25", fe...
7
19
20
2bbe880c2138122a7a4d179bf9b5582e1525dc4a
Ashwin R
2016-08-28T10:55:56
servo: Merge #13093 - Remove unneeded clone in the style system cache (from ashrko619:cache-element-classnames); 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 appropri...
diff --git a/style/matching.rs b/style/matching.rs index 9dc468098..ca040c967 100644 --- a/style/matching.rs +++ b/style/matching.rs @@ -388,7 +388,7 @@ fn have_same_class<E: TElement>(element: &E, candidate.class_attributes = Some(attrs) } - element_class_attributes == candidate.class_attributes.clo...
1
1
1
3bce31a1aab68f749599b84d3a916d328fde494c
Chiu-Hsiang Hsu
2016-08-27T19:50:42
servo: Merge #13076 - Remove unnecessary clone from ServiceWorkerManager::prepare_activation (from wdv4758h:serviceworker_manager); r=jdm remove unnecessary for `scope_url` - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #12999 - [X] These...
diff --git a/script/serviceworker_manager.rs b/script/serviceworker_manager.rs index 1c24c6fef..09f528892 100644 --- a/script/serviceworker_manager.rs +++ b/script/serviceworker_manager.rs @@ -72,7 +72,7 @@ impl ServiceWorkerManager { } } - if let Some(ref scope_url) = scope_url { + ...
1
2
2
f1230be75611791bac47a14909149b5b7367217a
Chiu-Hsiang Hsu
2016-08-27T14:23:13
servo: Merge #13078 - Added using real pipeline ID value (from wdv4758h:pipeline); r=jdm Stop using fake pipeline ID value - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #13000 - [X] These changes do not require tests because no test for ...
diff --git a/devtools/lib.rs b/devtools/lib.rs index 42f5ce86a..17e36f95c 100644 --- a/devtools/lib.rs +++ b/devtools/lib.rs @@ -535,10 +535,13 @@ fn run_server(sender: Sender<DevtoolsControlMsg>, for stream in &accepted_connections { connections.push(stream.try_clone().unwrap()); ...
1
6
3
99d6d0e7bf4f2690c299fd783734cd339d32bf4c
Ms2ger
2016-08-27T11:32:12
servo: Merge #13057 - Remove the JSAutoCompartment from report_pending_exception (from servo:rpe-ac); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 0be94bb7cc24cdc2c48706bfced980507bbc2005
diff --git a/script/dom/bindings/callback.rs b/script/dom/bindings/callback.rs index c34598a26..c7a09fcc4 100644 --- a/script/dom/bindings/callback.rs +++ b/script/dom/bindings/callback.rs @@ -8,6 +8,7 @@ use dom::bindings::error::{Error, Fallible, report_pending_exception}; use dom::bindings::global::global_root_from...
5
11
10
1e47f20050d6d493393f941808223156db44876f
Chiu-Hsiang Hsu
2016-08-27T10:20:46
servo: Merge #13071 - Solved wrong referrer policy in cors_preflight_fetch (from wdv4758h:cors_preflight_fetch); r=jdm Solved wrong referrer policy in cors_preflight_fetch - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #13026 - [X] There ...
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index 725844a1d..da2dda147 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -1112,7 +1112,7 @@ fn cors_preflight_fetch(request: Rc<Request>, cache: &mut CORSCache, preflight.type_ = request.type_.clone(); preflight.destination = request.d...
1
1
1
a5f05df01ceff3652a20f338b7a46fd8a898fd76
Eric Anholt
2016-08-27T05:05:54
servo: Merge #12934 - webgl: object deletion and bindings (from anholt:webgl-deletion-and-bindings); r=emilio <!-- Please describe your changes on the following line: --> This PR brings in some fixes to the wpt object-deletion-and-behaviour.html testcase. The test still has many failures, but some of the things that ...
diff --git a/script/dom/webglrenderingcontext.rs b/script/dom/webglrenderingcontext.rs index 059c6941b..7814296c3 100644 --- a/script/dom/webglrenderingcontext.rs +++ b/script/dom/webglrenderingcontext.rs @@ -61,6 +61,38 @@ macro_rules! handle_potential_webgl_error { }; } +// From the GLES 2.0.25 spec, page 85:...
1
68
23
25a1cb17e91fcb30eef7ec86be80ae8c3550e6ed
hsinewu
2016-08-27T04:07:34
servo: Merge #13069 - pass request value instead of constant (from hsinewu:#13025); r=jdm <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X] `./mach b...
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index aa07b1d08..725844a1d 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -1106,7 +1106,7 @@ fn cors_preflight_fetch(request: Rc<Request>, cache: &mut CORSCache, context: &FetchContext) -> Response { // Step 1 l...
1
1
1
029a458b5d76e638c5d23903f393dddc0b8bf981
Ashwin R
2016-08-27T03:06:28
servo: Merge #13068 - Fixed calling unwrap on an Err value (from ashrko619:shut_down_layout_panic); r=jdm <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->...
diff --git a/script/script_thread.rs b/script/script_thread.rs index e0e451bc1..5dcf965aa 100644 --- a/script/script_thread.rs +++ b/script/script_thread.rs @@ -2201,7 +2201,7 @@ fn shut_down_layout(context_tree: &BrowsingContext) { let chan = window.layout_chan().clone(); if chan.send(message::Msg::P...
1
1
1
7c1e97056056995a7648027b3be600b44e5141bb
Bobby Holley
2016-08-27T01:39:12
servo: Merge #13067 - stylo: Regenerate bindings again (from bholley:regen_bindings_again); r=emilio This handles the changes in https://bugzilla.mozilla.org/show_bug.cgi?id=1297982 Source-Repo: https://github.com/servo/servo Source-Revision: 0a18cb12c162312d39c323a176a7eb3a982bbbfc
diff --git a/style/properties/longhand/border.mako.rs b/style/properties/longhand/border.mako.rs index da34a5f84..1e5176791 100644 --- a/style/properties/longhand/border.mako.rs +++ b/style/properties/longhand/border.mako.rs @@ -78,6 +78,7 @@ % endfor ${helpers.single_keyword("box-decoration-break", "slice clone", ...
2
2
1
ea146267d5570a8a2ef267c45e6be024604df6bf
Bobby Holley
2016-08-26T20:28:35
servo: Merge #13061 - stylo: Regenerate bindings and fix up for nsStyleImageLayers_Position changes in Gecko bug 1295084 (from bholley:regen_bindings); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: b98c17fab5c426bfea97c27e7d65bd3f6333a387
diff --git a/style/gecko_conversions.rs b/style/gecko_conversions.rs index 4e3a5acf2..9739e1d66 100644 --- a/style/gecko_conversions.rs +++ b/style/gecko_conversions.rs @@ -82,14 +82,15 @@ impl From<nsStyleCoord_CalcValue> for LengthOrPercentage { pub mod basic_shape { use euclid::size::Size2D; + use gecko_b...
1
9
8
4720f499fe57eb9eccd1489dab3043ee5a8799c5
Bobby Holley
2016-08-26T17:17:40
servo: Merge #12911 - stylo: Traverse anonymous children when styling (from bholley:traverse_anonymous_children); r=emilio The corresponding Gecko changes are at https://bugzilla.mozilla.org/show_bug.cgi?id=1292662 Source-Repo: https://github.com/servo/servo Source-Revision: 8e39313321791cade116b3a5f34a36d8cf99c0f2
diff --git a/script/layout_wrapper.rs b/script/layout_wrapper.rs index b4e54fe5b..906bde605 100644 --- a/script/layout_wrapper.rs +++ b/script/layout_wrapper.rs @@ -115,6 +115,7 @@ impl<'ln> TNode for ServoLayoutNode<'ln> { type ConcreteElement = ServoLayoutElement<'ln>; type ConcreteDocument = ServoLayoutDoc...
3
75
77
d7096af68f9faee175d2d8b32cf4f7570f0ece3e
Michael Howell
2016-08-26T12:19:59
servo: Merge #13050 - Fix spelling mistake (from notriddle:tlapd); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 545ae86dff6513f1f5de083ba3ce64b181368482
diff --git a/layout/block.rs b/layout/block.rs index 17ced441c..b8d4e5837 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -763,7 +763,7 @@ impl BlockFlow { /// When `fragmentation_context` is given (not `None`), this should fit as much of the content /// as possible within the available block size. ...
1
1
1
d955783b7c2ab3a5ddd2cad46cefe31f79473158
Eric Anholt
2016-08-26T11:24:39
servo: Merge #13052 - webgl: Fix validation of drawElements()'s type argument (from anholt:webgl-drawelements-types); r=nox <!-- Please describe your changes on the following line: --> webgl: Fix validation of drawElements()'s type argument. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `...
diff --git a/script/dom/webglrenderingcontext.rs b/script/dom/webglrenderingcontext.rs index 4db5654d7..059c6941b 100644 --- a/script/dom/webglrenderingcontext.rs +++ b/script/dom/webglrenderingcontext.rs @@ -1165,10 +1165,12 @@ impl WebGLRenderingContextMethods for WebGLRenderingContext { // https://www.khronos...
1
5
3
e3532d2b490d2e6fe25b0349c7f08ba3f9aa15a9
Emilio Cobos Álvarez
2016-08-26T06:46:16
servo: Merge #13041 - style: Make WorkQueue creation fallible (from emilio:fallible-threadpool); r=bholley <!-- 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_thread/lib.rs b/layout_thread/lib.rs index 05a983b27..4cf5a435d 100644 --- a/layout_thread/lib.rs +++ b/layout_thread/lib.rs @@ -399,7 +399,7 @@ impl LayoutThread { MediaType::Screen, opts::get().initial_window_size.to_f32() * ScaleFactor::new(1.0)); let parallel_t...
2
32
10
8d3495077d2046bc248e3ff83298c37de8116bf7
Emilio Cobos Álvarez
2016-08-25T18:44:27
servo: Merge #12841 - Fix hit testing to take into account nested stacking contexts #12777 (from emilio:hit-test); r=pcwalton <!-- Please describe your changes on the following line: --> Fixes #12833. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and repl...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 9f23a0ec1..271dca17f 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -719,28 +719,32 @@ impl StackingContext { geometry::f32_rect_to_au_rect(overflow) } - pub fn hit_test<'a>(&self, - tra...
1
22
17
d1d526dce6a1fb96975e393c5ac7e3d0ecb1c23c
Josh Matthews
2016-08-25T11:31:46
servo: Merge #12980 - Fix ridiculous DOM proxy getter performance (from jdm:proxychanges); r=nox This implements the missing shadowing checks that were causing us to take many slow paths when dealing with proxy objects. Verified by running `tests/html/binding_perf.html` before and after and observing a 12x improvement...
diff --git a/script/dom/bindings/proxyhandler.rs b/script/dom/bindings/proxyhandler.rs index c863cc319..a5be8f1dc 100644 --- a/script/dom/bindings/proxyhandler.rs +++ b/script/dom/bindings/proxyhandler.rs @@ -10,21 +10,51 @@ use dom::bindings::conversions::is_dom_proxy; use dom::bindings::utils::delete_property_by_id;...
4
38
15
7589d505d2a69a0660d64081c43d24d92f107abe
Ms2ger
2016-08-25T09:52:24
servo: Merge #13029 - Use &mut Flow more (from servo:flowref); r=nox The double indirection in `&mut FlowRef` is not useful. Source-Repo: https://github.com/servo/servo Source-Revision: d29f61af317d3ab9e8233f0327c25b4925b4f053
diff --git a/layout/parallel.rs b/layout/parallel.rs index 9e1009ce8..fcef3b54f 100644 --- a/layout/parallel.rs +++ b/layout/parallel.rs @@ -10,7 +10,7 @@ use context::{LayoutContext, SharedLayoutContext}; use flow::{self, Flow, MutableFlowUtils, PostorderFlowTraversal, PreorderFlowTraversal}; -use flow_ref::{self,...
4
44
50
5039894b98933ade46786276673ed48e583f8ec7
Ms2ger
2016-08-24T14:38:31
servo: Merge #13012 - Stop creating a LayoutContext in build_display_list_for_subtree (from servo:shared-layout-context); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 6191748907e0480059a9a33c5c8c7be42d79efe3
diff --git a/layout/block.rs b/layout/block.rs index 178e0294e..17ced441c 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -28,7 +28,7 @@ #![deny(unsafe_code)] use app_units::{Au, MAX_AU}; -use context::LayoutContext; +use context::{LayoutContext, SharedLayoutContext}; use display_list_builder::BlockFlowDispl...
18
66
60
f4164caaad5afcc496c71f3747997b6543c52dd3
Anthony Ramine
2016-08-24T12:17:22
servo: Merge #13014 - Fix step 10 of eventdispatcher::dispatch_event (fixes #11609) (from nox:dispatch); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: ccf79de66ef050c61a29890fc1b7bf5e4e81a95f
diff --git a/script/dom/event.rs b/script/dom/event.rs index da7664e0e..07330a776 100644 --- a/script/dom/event.rs +++ b/script/dom/event.rs @@ -153,11 +153,6 @@ impl Event { self.cancelable.set(cancelable); } - #[inline] - pub fn clear_current_target(&self) { - self.current_target.set(None...
2
19
16
2de4ef4f8ff264a2c88ab8e3242f6c84d311dcd4
Chris McDonald
2016-08-24T04:04:31
servo: Merge #13005 - Changed first line of script to line 1 instead of line 0 (from cjm00:starting-line-fix); r=Wafflespeanut Changed starting line of script to line 1 instead of line 0 --- - [ ] `./mach build -d` fails, but it fails on master on my system too due to some sort of problem with cygwin - [X] `./mach t...
diff --git a/script/dom/window.rs b/script/dom/window.rs index e728e38a4..b75c45e5a 100644 --- a/script/dom/window.rs +++ b/script/dom/window.rs @@ -946,7 +946,7 @@ impl<'a, T: Reflectable> ScriptHelpers for &'a T { let filename = CString::new(filename).unwrap(); let _ac = JSAutoComp...
1
1
1
febd0bb45fd280dad56ca55d87d118c235a99ba2
Shing Lyu
2016-08-24T02:43:13
servo: Merge #12935 - Fixed layout flow tree JSON serialization (from shinglyu:layout_json); r=glennw <!-- Please describe your changes on the following line: --> The second argument for the `emit_struct()` is the number of fields, if given `0`, the output JSON will always be empty. This is used in `./mach run -d -Z ...
diff --git a/layout/flow.rs b/layout/flow.rs index 2b4295782..d6d7ea037 100644 --- a/layout/flow.rs +++ b/layout/flow.rs @@ -997,7 +997,7 @@ impl fmt::Debug for BaseFlow { impl Encodable for BaseFlow { fn encode<S: Encoder>(&self, e: &mut S) -> Result<(), S::Error> { - e.emit_struct("base", 0, |e| { + ...
2
3
3
db8c855290acd56d46834c75614e2fc09d3da205
Glenn Watson
2016-08-23T21:41:11
servo: Merge #13002 - Update wr + shaders for local clip rect changes (from glennw:wr2-update-local-clipping); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 400c7e032472255288599abce7c0309d3f802350
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 8e38d89fc..db50229d0 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2593,7 +2593,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.5.1" -source = "git+https://github.com/servo/webrender#2e9cba1c471b353babfb3bd80ec00207bc93f171" +source ...
1
2
2
43e6ce91ce64c99641dfbd26da92ca8e3ba05366
Alexandrov Sergey
2016-08-23T20:43:56
servo: Merge #12981 - Inline reconstruct#12602 (from splav:inline_reconstruct#12602); r=notriddle <!-- Please describe your changes on the following line: --> This PR fixes two different issues: 1) In non-incremental layout mode if the inline node hasn't changes - the style pass was skipped, that leads to the correspo...
diff --git a/layout/construct.rs b/layout/construct.rs index bb7f03721..b6e21f6d2 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -1408,88 +1408,98 @@ impl<'a, ConcreteThreadSafeLayoutNode: ThreadSafeLayoutNode> return false } - let mut style = node.style(self.style_context(...
3
83
73
fac25893c564f8e418b355b58d22c50df8afcaaa
Anthony Ramine
2016-08-23T15:09:49
servo: Merge #12997 - Update Rust to 1.13.0-nightly (3c5a0fa45 2016-08-22) (from servo:rustup); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 6f22251e6599aa529ce024d8618595be765c9a18
diff --git a/script/dom/bindings/cell.rs b/script/dom/bindings/cell.rs index 29c4f8bad..d1b40af5b 100644 --- a/script/dom/bindings/cell.rs +++ b/script/dom/bindings/cell.rs @@ -29,7 +29,7 @@ impl<T> DOMRefCell<T> { #[allow(unsafe_code)] pub unsafe fn borrow_for_layout(&self) -> &T { debug_assert!(thr...
2
3
4
1c175066f085b65b0dd8a69366d4a8c15e03c9b2
Ms2ger
2016-08-23T13:34:04
servo: Merge #12993 - Move the user agent and user stylesheets to layout_thread (from servo:ua-stylesheets); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 8e890be2c6c736f503cafe2641cbd869e571ec7f
diff --git a/layout_thread/Cargo.toml b/layout_thread/Cargo.toml index f97e632d2..2dcf5ce74 100644 --- a/layout_thread/Cargo.toml +++ b/layout_thread/Cargo.toml @@ -21,6 +21,7 @@ heapsize_plugin = "0.1.2" ipc-channel = "0.5" layout = {path = "../layout"} layout_traits = {path = "../layout_traits"} +lazy_static = "0....
7
76
94
8dfecfec1cc3f903cd81f60cae05f7a69a2690e4
TyanNN
2016-08-23T09:23:41
servo: Merge #12968 - Do not define Pipeline::setup_common on Windows (from TyanNN:master); r=Ms2ger Fixes #12856 --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - ...
diff --git a/constellation/pipeline.rs b/constellation/pipeline.rs index efd5c3778..4725955c3 100644 --- a/constellation/pipeline.rs +++ b/constellation/pipeline.rs @@ -538,6 +538,7 @@ impl UnprivilegedPipelineContent { process::exit(1); } + #[cfg(not(windows))] fn setup_common<C: CommandMethods...
1
1
0
519f4ede35d105fd0a4b38108b1abe68378e0785
Paul Rouget
2016-08-23T07:31:48
servo: Merge #12921 - Trigger image.onerror (from paulrouget:imgOnError); r=nox --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not re...
diff --git a/script/dom/htmlimageelement.rs b/script/dom/htmlimageelement.rs index cb0f65d0b..f03e43d9f 100644 --- a/script/dom/htmlimageelement.rs +++ b/script/dom/htmlimageelement.rs @@ -86,14 +86,14 @@ impl Runnable for ImageResponseHandlerRunnable { // Update the image field let element = self.ele...
1
9
4
c460cda0da30d91029b2f4205a98a8bb4956c77d
Glenn Watson
2016-08-23T06:37:36
servo: Merge #12983 - Update glutin to get new OSMesa features (from glennw:update-glutin); r=larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: f99929bee305c8e3d86b06386e77486b62725157
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 4751b0725..4bdc0dab8 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -878,7 +878,7 @@ dependencies = [ "net_traits 0.0.1", "script_traits 0.0.1", "servo-egl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "servo-glutin 0.6.0 (registr...
1
3
3
5b7249f713b3b0f8e9eb510e32e8081226eb1945
Jeena Lee
2016-08-23T01:17:16
servo: Merge #12915 - Include "content-type" in cors safelisted request headers (from jeenalee:parse-headers); r=Manishearth <!-- Please describe your changes on the following line: --> The changes in headers.rs will allow headers with "content-type" name to be classified as cors safelisted request headers, depending...
diff --git a/script/dom/headers.rs b/script/dom/headers.rs index cb3b4d13e..6fa4e0249 100644 --- a/script/dom/headers.rs +++ b/script/dom/headers.rs @@ -12,8 +12,10 @@ use dom::bindings::js::Root; use dom::bindings::reflector::{Reflector, reflect_dom_object}; use dom::bindings::str::{ByteString, is_token}; use hyper...
1
34
12
9f160c9a0de6dc4cb1ed4fba858af4ac54ac37cc
Keegan McAllister
2016-08-23T00:20:19
servo: Merge #12938 - Sanitise web fonts (from nox:fontsan); r=larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: 785fcd55806b546e2d5d15d5618fdf575262a012
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index bc8adf692..3ef6e1832 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -16,6 +16,7 @@ azure = {git = "https://github.com/servo/rust-azure", features = ["plugins"]} bitflags = "0.7" euclid = "0.10.1" fnv = "1.0" +fontsan = {git = "https://github.com/servo/fontsan"}...
4
26
2
5ad0b13f82022250a67d355bf10d9b05144a335f
Ms2ger
2016-08-22T15:39:51
servo: Merge #12970 - Move thread_state to style (from servo:thread-state); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 1911606e5c7d81e41b79fa25c41b1d7def7aef62
diff --git a/gfx/paint_thread.rs b/gfx/paint_thread.rs index 47d6d6590..13754a3cf 100644 --- a/gfx/paint_thread.rs +++ b/gfx/paint_thread.rs @@ -29,11 +29,11 @@ use std::collections::HashMap; use std::mem as std_mem; use std::sync::Arc; use std::sync::mpsc::{Receiver, Sender, channel}; +use style::thread_state; use...
13
13
13