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
e336c75cb8e429b99c119af8398cce80bdc92b57
Matt Brubeck
2016-05-06T02:05:55
servo: Merge #11034 - Update libc, url, image, app_units (from mbrubeck:always-be-updating); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 6c326cd3726d744474fed3436c9d6885c2b2c6a5
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index b81cbfbdb..c35ccad86 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -17,12 +17,12 @@ dependencies = [ "gfx_tests 0.0.1", "gleam 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)", "glutin_app 0.0.1", - "image 0.9.0 (registry+https://gith...
1
109
107
69b45b2f865561e73fe2667b8f33db39cee839cd
Matt Brubeck
2016-05-06T01:09:58
servo: Merge #11033 - Set max log level on all platforms (from mbrubeck:max-log); r=metajack Servo currently enabled the `release_max_level_info` feature for the log crate in an Android-specific dependency. Currently this works for all platforms because of rust-lang/cargo#2524, but it might break if that issue is fix...
diff --git a/servo/Cargo.toml b/servo/Cargo.toml index 109d4e6d7..81a468752 100644 --- a/servo/Cargo.toml +++ b/servo/Cargo.toml @@ -19,7 +19,8 @@ doc = false bench = false [features] -default = ["glutin_app", "webdriver"] +default = ["glutin_app", "webdriver", "max_log_level"] +max_log_level = ["env_logger/log/rel...
1
3
2
f3bd928b8c6970c2486388733461221cdf9714f8
Bobby Holley
2016-05-05T19:23:37
servo: Merge #11018 - Geckolib: Implement list-style-type (from bholley:list_style_type); r=mbrubeck Corresponding Gecko patch: https://bugzilla.mozilla.org/show_bug.cgi?id=1269933 Source-Repo: https://github.com/servo/servo Source-Revision: b29ae6383a2fa61a3f1f176e506c738f250b0622
diff --git a/style/properties/longhand/list.mako.rs b/style/properties/longhand/list.mako.rs index 98edb3ab2..309e248c2 100644 --- a/style/properties/longhand/list.mako.rs +++ b/style/properties/longhand/list.mako.rs @@ -13,13 +13,17 @@ ${helpers.single_keyword("list-style-position", "outside inside")} // decimal-...
1
9
5
829f4f929f6e350b561036794805d2bec35a072d
Connor Brewster
2016-05-05T14:48:40
servo: Merge #11020 - Fix formsubmitter methods for buttons (from cbrewster:fix_button_formsubmitter_methods); r=KiChjang Fixes #11015 Fixes #11014 Source-Repo: https://github.com/servo/servo Source-Revision: 15c5c81b1f025ad66f9eb000d1ac583dadc510f9
diff --git a/script/dom/htmlformelement.rs b/script/dom/htmlformelement.rs index 0e8b6174a..a1fdd34e8 100644 --- a/script/dom/htmlformelement.rs +++ b/script/dom/htmlformelement.rs @@ -736,8 +736,8 @@ impl<'a> FormSubmitter<'a> { }, FormSubmitter::ButtonElement(button_element) => { ...
1
6
6
42f34237d73c1d88d9f13413441a91fa4a4ee9a2
Cameron McCormack
2016-05-05T02:52:25
servo: Merge #10999 - Move width and height from Box to Position (from heycam:move-width-height); r=SimonSapin This helps with style struct alignment between Servo and Gecko. Source-Repo: https://github.com/servo/servo Source-Revision: 8bc4785bed662f87149260d87e030471c326ec88
diff --git a/layout/block.rs b/layout/block.rs index 53094ffd3..fa5790306 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -1695,7 +1695,7 @@ impl Flow for BlockFlow { fn bubble_inline_sizes(&mut self) { // If this block has a fixed width, just use that for the minimum and preferred width, /...
7
25
25
08f190a73881219e1cc57f9c1a55983c997d4e0f
Bobby Holley
2016-05-05T01:37:26
servo: Merge #10998 - Geckolib: implement font-weight and logging support (from bholley:font_weight_and_logging); r=mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: ec5f826d18adabbb0cf8d07b879b616dc5caa1aa
diff --git a/style/properties/longhand/font.mako.rs b/style/properties/longhand/font.mako.rs index 59523c5a2..f83a53616 100644 --- a/style/properties/longhand/font.mako.rs +++ b/style/properties/longhand/font.mako.rs @@ -173,6 +173,7 @@ ${helpers.single_keyword("font-variant", "normal small-caps")} pub mod compute...
1
1
0
1e5617627a33519f1c71c9e69fa9a64a61baed05
Patrick Walton
2016-05-04T23:26:08
servo: Merge #10993 - compositing: Perform animation-related compositing operations in WebRender (from pcwalton:fix-animations); r=glennw I accidentally removed this code in #10936. Fixes transitions. r? @glennw Source-Repo: https://github.com/servo/servo Source-Revision: c1252a40d9925aea69346b1b2e35151f7fa397a4
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 3d0e71eae..12e99e6d3 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -633,7 +633,7 @@ impl<Window: WindowMethods> IOCompositor<Window> { debug!("delayed composition timeout!"); if let Com...
1
6
3
ee97e72d2cdc37b3bfeacfc72ed3fd915c0ec577
Patrick Walton
2016-05-04T21:55:09
servo: Merge #11000 - compositing: Send mouse events to the right pipeline when using WebRender (from pcwalton:wr-pipeline-relative-events); r=glennw Fixes mouse events in browser.html. Requires servo/webrender_traits#47 and servo/webrender#272. r? @glennw cc @paulrouget Source-Repo: https://github.com/servo/servo ...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 450951c99..3d0e71eae 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -1355,7 +1355,7 @@ impl<Window: WindowMethods> IOCompositor<Window> { None => return, }; - let translated_poi...
3
38
24
642cf153f4d3a9732ab76fe444d092916e9868dc
Josh Matthews
2016-05-04T18:37:16
servo: Merge #10932 - Add the requesting URL to the 401 prompt. Only show the 401 prompt wh… (from jdm:401); r=SimonSapin …en the WWW-Authenticate header is present. Fixes #10912. Source-Repo: https://github.com/servo/servo Source-Revision: 20fc8b3c8d384e0a4377ed99ae1f84e0097cfdf5
diff --git a/net/http_loader.rs b/net/http_loader.rs index 7f6eee9d6..6e96f1a88 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -768,18 +768,18 @@ pub fn obtain_response<A>(request_factory: &HttpRequestFactory<R=A>, } pub trait UIProvider { - fn input_username_and_password(&self) -> (Option<String>, ...
1
9
7
b8296bc3b81d2de8cf8da3b421107fa20ae3b2dc
Connor Brewster
2016-05-04T16:10:40
servo: Merge #10840 - Implement alert dialogs (from cbrewster:window_alert); r=jdm fix #10812 Implements alert dialogs using tinyfiledialogs r? @jdm Source-Repo: https://github.com/servo/servo Source-Revision: b4f573db1a4a054f7f991ac19c299a5a10aabad8
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 1e1da237e..08b7347d9 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -805,6 +805,10 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF> debug!("constellation go...
6
101
17
343bd59e1956b0f4b318be595b05bf34bddee1d8
Cameron McCormack
2016-05-04T08:00:22
servo: Merge #10959 - Support color-typed properties in geckolib (from heycam:color); r=bholley This is on top of https://github.com/servo/servo/pull/10957 though I'm not sure how to make that PR's commits not appear in this one. r? @bholley Source-Repo: https://github.com/servo/servo Source-Revision: 1a1ea30f8c36a5...
diff --git a/style/properties/helpers.mako.rs b/style/properties/helpers.mako.rs index fcf30e83d..eed9a6865 100644 --- a/style/properties/helpers.mako.rs +++ b/style/properties/helpers.mako.rs @@ -20,6 +20,7 @@ <%call expr="longhand(name, predefined_type=type, **kwargs)"> #[allow(unused_imports)] ...
3
21
0
891d16d7cb6be8223b8d00c621e20b7d05d1b7fc
Michael Howell
2016-05-04T06:51:53
servo: Merge #10983 - Minor reduction in the amount of allocation display list building does (from notriddle:no_alloc_sort_display); r=mbrubeck Use `mem::replace` to perform the lifetime-trick without allocating a whole new buffer. (An older of this switched from the built-in heapsort to a non-allocating introsort. U...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index d0f117b43..62bb324d8 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -37,6 +37,7 @@ use std::collections::HashMap; use std::fmt; use std::hash::{BuildHasherDefault, Hash}; use std::marker::PhantomData; +use std::mem; use std:...
1
3
3
991817bc2afa20c4a347d49a12cd385f46489eb6
Keith Yeung
2016-05-03T09:26:05
servo: Merge #10980 - Re-add TODO comment for adding referer info to LoadData (from KiChjang:referer-policy-comment); r=jdm Fixes the accidental removal in #10970. Source-Repo: https://github.com/servo/servo Source-Revision: ff687c5b016628b7098d6d2e1dea90d852a4dbf6
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 34c7dfcf3..0b235257d 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -987,6 +987,8 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF> Some(old_pipeline) =>...
1
2
0
b6a0bd4321da422b79a0f6dbdca99f6c4a65fb22
Ben Striegel
2016-05-03T08:36:08
servo: Merge #10979 - Fix unused mut warning (from bstrie:mutwarn); r=frewsxcv Source-Repo: https://github.com/servo/servo Source-Revision: 8e2cb95d2504cc1d82347adbf0f8dbbc6fd0c82a
diff --git a/layout/block.rs b/layout/block.rs index 390fc120c..987a3038e 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -1477,7 +1477,7 @@ impl BlockFlow { pub fn bubble_inline_sizes_for_block(&mut self, consult_children: bool) { let _scope = layout_debug_scope!("block::bubble_inline_sizes {:x}", ...
1
1
1
65b4634d07d9a32095fa7582fdd8effe6d0695b2
Joshua Holmer
2016-05-03T02:58:14
servo: Merge #10971 - Remove CacheRequestDetails (from shssoichiro:remove-cacherequestdetails); r=KiChjang Fixes #10904 Note that the related web-platform-tests failed both before and after this commit Source-Repo: https://github.com/servo/servo Source-Revision: 3128a71ac703bf7579f0fcac9d03655756e8b6c7
diff --git a/net/fetch/cors_cache.rs b/net/fetch/cors_cache.rs index 1f6d39f71..f6e83f794 100644 --- a/net/fetch/cors_cache.rs +++ b/net/fetch/cors_cache.rs @@ -10,7 +10,7 @@ //! with CORSRequest being expanded into FetchRequest (etc) use hyper::method::Method; -use net_traits::request::Origin; +use net_traits::req...
2
25
48
aa2b3cb88f0ce2362a8a8dee3ebc10a03d37f172
Matt Brubeck
2016-05-02T23:48:45
servo: Merge #10975 - Update even more dependencies (from mbrubeck:more-deps); r=KiChjang Adds a temporary exception to allow multiple versions of lazy_static. PRs have already been filed on the packages that are still using the old version. Source-Repo: https://github.com/servo/servo Source-Revision: 361b2b900eeea82...
diff --git a/devtools_traits/Cargo.toml b/devtools_traits/Cargo.toml index cb8e54184..bc1878b5a 100644 --- a/devtools_traits/Cargo.toml +++ b/devtools_traits/Cargo.toml @@ -11,7 +11,6 @@ path = "lib.rs" [dependencies] msg = {path = "../msg"} ipc-channel = {git = "https://github.com/servo/ipc-channel"} -plugins = {pa...
7
59
66
8ca6ca7303bcbed5c91be91e853eed42f33ed196
Matt Brubeck
2016-05-02T20:46:30
servo: Merge #10973 - Update x11, clipboard-win, and libz-sys (from mbrubeck:always-be-updating); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: a8e82440ff5ba790e40b4e6437e9882b4f4619c4
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 553f32d44..cc9e73b48 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -112,7 +112,7 @@ dependencies = [ "servo-egl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "servo-freetype-sys 2.4.11 (registry+https://github.com/rust-lang/crates.io...
1
11
11
006166bfb8ab68737ee94614033fd6d3c1e3ddfd
bd339
2016-05-02T15:48:02
servo: Merge #10946 - Disable scripting for documents created without a browsing context (from bd339:iss10940); r=nox Goes towards closing #10940. Source-Repo: https://github.com/servo/servo Source-Revision: a54dedac1f8ebb960f844b617fcf0f4b108f1a80
diff --git a/script/dom/document.rs b/script/dom/document.rs index 191ea0a92..d422e9bd2 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -1668,7 +1668,7 @@ impl Document { deferred_scripts: DOMRefCell::new(vec![]), asap_in_order_scripts_list: DOMRefCell::new(vec![]), ...
1
1
1
c1e8b852fe859e6bdb7bca68d95b7d56be179222
Ms2ger
2016-05-02T14:38:15
servo: Merge #10970 - Simplify load_data handling in handle_script_loaded_url_in_iframe_msg (from servo:loaddata); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: e7caaa77b4a6c7a155e01d67bdeb3db3758b558f
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 485485d9c..34c7dfcf3 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -971,7 +971,7 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF> .and_then(|old_subpage_id| se...
1
13
17
ad9eff9b48561a02fb11e91fac97f818c178b189
Ms2ger
2016-05-02T12:32:25
servo: Merge #10969 - Iframe improvements (from servo:iframe); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: d32648172c711b5d95819c58bcedcee5f50f3018
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index b855885b8..485485d9c 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -990,11 +990,12 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF> // then reuse the script th...
2
14
14
cfbcbd6941a7ab460a261c6454bdfe9f460c6355
Zhen Zhang
2016-05-02T07:59:37
servo: Merge #10958 - Minor fixes to documentation (from izgzhen:fixes); r=nox 1. Looks like getters and setters are specified here already. https://github.com/servo/servo/blob/0385f60310090178dda0182b4677c8e51133c159/components/script/dom/bindings/mod.rs#L62 2. The `MutNullableJS` and `Unrooted` looks obsolete Sourc...
diff --git a/script/dom/bindings/mod.rs b/script/dom/bindings/mod.rs index 160141f76..d69720dc5 100644 --- a/script/dom/bindings/mod.rs +++ b/script/dom/bindings/mod.rs @@ -112,11 +112,6 @@ //! //! Legacy callers are not yet implemented. //! -//! Rust reflections of getters and setters -//! -------------------------...
2
1
8
d1e525a18c0ea45c6b98bdc0d79cb9385a9c3e56
Zhen Zhang
2016-05-02T05:13:20
servo: Merge #10873 - Fixes related to File API (from izgzhen:blob); r=Manishearth Fixing problems I met when trying to resolve https://github.com/servo/servo/issues/10851, but most of changes here are simple fixes. Source-Repo: https://github.com/servo/servo Source-Revision: 14926529c9f38a014140d75ca06cc46d1a2b72ba
diff --git a/script/dom/blob.rs b/script/dom/blob.rs index 49fc47e8a..74ddce160 100644 --- a/script/dom/blob.rs +++ b/script/dom/blob.rs @@ -66,6 +66,10 @@ impl DataSlice { &self.bytes[self.bytes_start..self.bytes_end] } + pub fn get_all_bytes(&self) -> Arc<Vec<u8>> { + self.bytes.clone() + ...
3
15
6
843881f276662125593ee04e6c881798b6a499d6
Matt Brubeck
2016-05-01T04:20:38
servo: Merge #10913 - Use xi-unicode for line breaking (from mbrubeck:xi-unicode); r=pcwalton This uses the xi-unicode crate by @raphlinus to detect line-break opportunities, replacing Servo's custom code that only detects ASCII whitespace. xi-unicode is licensed under the Apache-2.0 license. See mbrubeck/servo#2 fo...
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index 865f313cf..d02445d60 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -44,6 +44,7 @@ azure = {git = "https://github.com/servo/rust-azure", features = ["plugins"]} layers = {git = "https://github.com/servo/rust-layers", features = ["plugins"]} ipc-channel = {git = ...
4
36
59
fbf9eb55cbe2c880a738bbefaa75a1264ecba0b0
Keith Yeung
2016-05-01T01:43:30
servo: Merge #10712 - Support form submission of multipart/form-data (from KiChjang:multipart-form-data); r=jdm Fixes #7553. Source-Repo: https://github.com/servo/servo Source-Revision: 77cb2ca89a87829e7e95fad17ae698c4ae097455
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 6e09fc4b1..b855885b8 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -982,7 +982,7 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF> }; // If no ur...
10
154
30
8e2a9a044219aea20c4e8c5e301307e8ce75e728
Patrick Walton
2016-05-01T00:14:05
servo: Merge #10936 - compositor: When WebRender is in use, only composite on new WebRender frames (from pcwalton:wr-scroll-event-handling); r=glennw Scheduling composition on scroll and so forth is unnecessary and can cause us to miss frames if the code happens to start the composition while the WebRender backend is ...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 4c3a3505b..450951c99 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -633,7 +633,7 @@ impl<Window: WindowMethods> IOCompositor<Window> { debug!("delayed composition timeout!"); if let Com...
1
25
11
48e7abda5fda695c792c2acf48311a9759311012
Matt Brubeck
2016-04-30T22:21:22
servo: Merge #10944 - Upgrade a bunch of dependencies (from mbrubeck:bitflags-0.6); r=frewsxcv Source-Repo: https://github.com/servo/servo Source-Revision: 8db0367301b5ad5ab5ea4704d57755c166cfd5de
diff --git a/devtools_traits/Cargo.toml b/devtools_traits/Cargo.toml index 87bfd8ed8..cb8e54184 100644 --- a/devtools_traits/Cargo.toml +++ b/devtools_traits/Cargo.toml @@ -16,7 +16,7 @@ heapsize = "0.3.0" heapsize_plugin = "0.1.2" hyper = { version = "0.9", features = [ "serde-serialization" ] } time = "0.1" -bitfl...
23
90
77
68628130bf235c612eadaf2b1620dff6e0c06ed8
Samuel Harrington
2016-04-30T16:44:25
servo: Merge #10941 - Remove dead code left over from #10085 (from samlh:patch-2); r=mbrubeck cc @pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: b5a23a16be861a837f7079244ca901fd0d0bef04
diff --git a/layout/block.rs b/layout/block.rs index 0b10ef390..96cf52ec2 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -1518,8 +1518,6 @@ impl BlockFlow { } } } - - flags.union_floated_descendants_flags(child_base.flags); } // FI...
2
0
13
2fbebee7fd7c9a72696467561637c2d2b43711f0
Alan Jeffrey
2016-04-30T14:30:38
servo: Merge #10931 - Send the panic reason and backtrace in mozbrowsererror (from asajeffrey:send-panic-backtrace-to-mozbrowser); r=jdm Closes #10334. Glues together PRs #10837 and #10824. Source-Repo: https://github.com/servo/servo Source-Revision: d9dc6dd03cf9b8b0982b54d83dd0cdded059c3b6
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 0606aa14f..6e09fc4b1 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -874,7 +874,7 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF> let window_size = self.pipeli...
1
3
4
4df4d9266f9046b489ffb23eeb2ea4181df8917a
Matt Brubeck
2016-04-30T13:23:20
servo: Merge #10929 - Update libc, log, and image dependencies (from mbrubeck:version-inflation); r=frewsxcv Source-Repo: https://github.com/servo/servo Source-Revision: ca291927ed7d2a2e5107d9edb8289b74e267f0cf
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 1132c540d..72d2d8949 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -11,7 +11,7 @@ dependencies = [ "compositing 0.0.1", "devtools 0.0.1", "devtools_traits 0.0.1", - "env_logger 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "env_l...
1
103
106
e5eaf1ef7f16bbaa4bbff94527ddd90d18eaf3fe
Simon Sapin
2016-04-30T12:16:46
servo: Merge #10928 - Fix some warnings (from servo:warnings); r=mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 0f1a921ba6731499fe89a82f14d9e01a3bd7c50b
diff --git a/layout/fragment.rs b/layout/fragment.rs index 9523159de..4dda58364 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -2021,8 +2021,7 @@ impl Fragment { return false } - let length = first_unscanned_text.text.len(); - if length ...
5
6
8
e25d472104fa6501ab9a215ed77098f878a72753
Ramana Venkata
2016-04-30T05:54:20
servo: Merge #10896 - Implement fetching file URL's (from vramana:basic_fetch_file); r=KiChjang closes #10166 Source-Repo: https://github.com/servo/servo Source-Revision: fbf98214c91ce3bb52c32ec4a5e121023843f1eb
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index 868d28470..1b4c43195 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -14,6 +14,7 @@ use hyper::header::{IfNoneMatch, Pragma, Location, QualityItem, Referer as Refer use hyper::method::Method; use hyper::mime::{Mime, SubLevel, TopLevel}; u...
1
26
1
c6f8c9d4504737e4a876047b9332045857a44a5c
Corey Farwell
2016-04-30T03:43:29
servo: Merge #10935 - Change OSX 'activiation policy' when running headless mode (from frewsxcv:activation-policy); r=larsbergstrom ...or also when outputting a file. Fixes servo#10836. Source-Repo: https://github.com/servo/servo Source-Revision: f6a5ecb4a992e35f1673673df4f680154f217d2d
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 7512f4090..1132c540d 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -273,7 +273,7 @@ dependencies = [ [[package]] name = "cocoa" -version = "0.3.0" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ ...
1
5
5
104d1da29a5977066c080efec4d2ceaa8f1206d8
Alan Jeffrey
2016-04-30T00:25:17
servo: Merge #10902 - Remove panic! from the compositor (from asajeffrey:remove-explicit-panic-from-compositor); r=aneeshusa Fixes #10864, and adds a check to `/etc/ci/check_no_unwrap.sh`. r? @aneeshusa Source-Repo: https://github.com/servo/servo Source-Revision: f75fa5283e54aeca291fe865cd589e37b86cd8fe
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 366884563..4c3a3505b 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -504,8 +504,10 @@ impl<Window: WindowMethods> IOCompositor<Window> { fn handle_browser_message(&mut self, msg: Msg) -> bool { match (msg...
2
13
6
4a0284482cac96827bf27d4b386cedeebec96def
Yoav Alon
2016-04-29T15:12:18
servo: Merge #10834 - added support for :read-only and :read-write pseudo-classes (from yoava333:master); r=SimonSapin partial fix for https://github.com/servo/servo/issues/10732 It's not a full fix because: 1. there's a bug in wpt-test https://github.com/w3c/web-platform-tests/issues/2889#issuecomment-214144420 2. w...
diff --git a/layout/wrapper.rs b/layout/wrapper.rs index 86c370c0a..a94203cbf 100644 --- a/layout/wrapper.rs +++ b/layout/wrapper.rs @@ -550,13 +550,17 @@ impl<'le> ::selectors::Element for ServoLayoutElement<'le> { } }, + NonTSPseudoClass::ReadOnly => + !self.e...
6
73
4
40bb92efad80e3ffefcdf9981c8f7fbe45922780
Ms2ger
2016-04-29T13:33:34
servo: Merge #10918 - Avoid some clones (from Ms2ger:clones); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 9770e3c1e37a29c4b01ebfc243db2c7be58ec006
diff --git a/script/document_loader.rs b/script/document_loader.rs index 5c835226a..6032d91b4 100644 --- a/script/document_loader.rs +++ b/script/document_loader.rs @@ -146,8 +146,8 @@ impl DocumentLoader { } /// Mark an in-progress network request complete. - pub fn finish_load(&mut self, load: LoadType...
15
56
72
82b1218283f9eb0ef0f6e876ea6e21b06bc83e2f
cjkenned
2016-04-29T04:31:30
servo: Merge #10830 - DOMImplementation::createDocument should set content type based on namespace (from cjkenn:10743); r=Ms2ger Set document content type based on the namespace. Standard: https://dom.spec.whatwg.org/#dom-domimplementation-createdocument Fixes #10743. Source-Repo: https://github.com/servo/servo Sourc...
diff --git a/script/dom/domimplementation.rs b/script/dom/domimplementation.rs index 37b75688c..8c0f9bd61 100644 --- a/script/dom/domimplementation.rs +++ b/script/dom/domimplementation.rs @@ -12,7 +12,7 @@ use dom::bindings::global::GlobalRef; use dom::bindings::inheritance::Castable; use dom::bindings::js::{JS, Roo...
1
11
4
78ce5202ca09643bb48cfd0f56ac2990671f70b3
Cameron McCormack
2016-04-29T01:00:48
servo: Merge #10891 - Specialize text node style resolution so geckolib can avoid inheriting non-inherited structs (from heycam:text-style); r=bholley r? @bholley Source-Repo: https://github.com/servo/servo Source-Revision: 1177ef5869e02b5129ebde6fa9780c93d362e16c
diff --git a/style/matching.rs b/style/matching.rs index 15407d10e..84189fde4 100644 --- a/style/matching.rs +++ b/style/matching.rs @@ -662,13 +662,9 @@ pub trait MatchMethods : TNode { let damage; if self.is_text_node() { - // Text nodes get a copy of the parent style. This ensures - ...
2
15
5
c61d92319982d8fe2506b5311ceaeddcac91dd44
askeing
2016-04-28T21:30:04
servo: Merge #10887 - Dispatch error event when link elements get invalid response (from askeing:fix_10374); r=KiChjang fix #10374 Source-Repo: https://github.com/servo/servo Source-Revision: 210803b4b2f5bd8e4710c610d6950431137a9f7f
diff --git a/script/dom/htmllinkelement.rs b/script/dom/htmllinkelement.rs index 7b0e4e95e..e2b2dc0ed 100644 --- a/script/dom/htmllinkelement.rs +++ b/script/dom/htmllinkelement.rs @@ -15,11 +15,14 @@ use dom::bindings::refcounted::Trusted; use dom::document::Document; use dom::domtokenlist::DOMTokenList; use dom::e...
1
14
1
2f218b80685829f25f06c6a26f51e7dd1b3cb301
Daniel Robertson
2016-04-28T20:36:05
servo: Merge #10867 - Fix logic for cors cache match (from danlrobertson:sandbox); r=KiChjang The current logic for a cors cache match does not consider "credentials is false and request's credentials mode is not "include" or credentials is true." I could have missed something, but `CacheRequestDetails::credentials` ...
diff --git a/net/fetch/cors_cache.rs b/net/fetch/cors_cache.rs index dc640ce4c..1f6d39f71 100644 --- a/net/fetch/cors_cache.rs +++ b/net/fetch/cors_cache.rs @@ -12,7 +12,6 @@ use hyper::method::Method; use net_traits::request::Origin; use std::ascii::AsciiExt; -use std::sync::mpsc::{Sender, Receiver, channel}; use ...
3
60
212
2b526d9fdca8182933ea5a3f518208698e65cf20
Patrick Walton
2016-04-28T19:44:39
servo: Merge #10159 - script: Make iframes know their pipeline IDs at all times, even after navigation (from pcwalton:iframes-know-their-pipelines); r=jdm Since WebRender uses the pipeline ID stored in the iframe element to determine which pipeline to display, it had better be kept up to date! Closes #9919. r? @jdm ...
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 268ce926c..cf4673cd1 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -1256,7 +1256,10 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF> Some((_, new_subpa...
4
23
9
13ca7433e0106969f030e94498468965f6c358d1
Patrick Walton
2016-04-28T17:24:38
servo: Merge #10623 - layout: Reset values appropriately for floats flowing out of blocks with nonzero inline margins (from pcwalton:reddit-float-fix); r=mbrubeck These two commits correctly position the hamburger menu icons on http://reddit.com/r/rust. Source-Repo: https://github.com/servo/servo Source-Revision: fcb...
diff --git a/layout/block.rs b/layout/block.rs index fa91b847b..0b10ef390 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -1020,8 +1020,12 @@ impl BlockFlow { self.base.position.size.block = cur_b; } - // Store the current set of floats in the flow so that flows that com...
2
19
10
c0f05ccc338fc6c590acb8146182756e5ae75397
Simon Sapin
2016-04-28T14:16:57
servo: Merge #10855 - Make css-properties.json checking a proper unit test (from servo:unit); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 55d14ffe001189a648c79512753fb9260a4b4c5d
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 6f3a16c41..d5e9f41e0 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2104,6 +2104,7 @@ dependencies = [ "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "plugins 0.0.1", + "rustc-serialize 0.3.19 (registry+https://...
1
1
0
db34fab5c3539670106d06e530449545ba4f7956
Matt Brubeck
2016-04-28T12:01:24
servo: Merge #10880 - Code cleanup in gfx::text (from mbrubeck:char-at); r=nox * Fix deprecation warnings by replacing `str::char_at` and related functions with iterators. * Replace some uses of `range::Range` with `std::ops::Range`. Source-Repo: https://github.com/servo/servo Source-Revision: 224bcd7057c9b5aeb8f0064...
diff --git a/gfx/lib.rs b/gfx/lib.rs index 1eecec8e3..af04ce347 100644 --- a/gfx/lib.rs +++ b/gfx/lib.rs @@ -11,7 +11,7 @@ #![feature(custom_derive)] #![feature(mpsc_select)] #![feature(plugin)] -#![feature(str_char)] +#![feature(range_contains)] #![feature(unique)] #![plugin(heapsize_plugin)] diff --git a/gfx/t...
3
48
64
d7ade5969281497d63398f02ec9dcb8e614cdd2c
Keith Yeung
2016-04-28T08:57:52
servo: Merge #10890 - Remove extraneous script_chan parameter from Trusted::new (from servo:trusted); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 78e23f4c9b54c51012c672839545682b38455d67
diff --git a/script/dom/bindings/refcounted.rs b/script/dom/bindings/refcounted.rs index c01136cc7..c5d5be9ba 100644 --- a/script/dom/bindings/refcounted.rs +++ b/script/dom/bindings/refcounted.rs @@ -72,7 +72,8 @@ impl<T: Reflectable> Trusted<T> { /// Create a new `Trusted<T>` instance from an existing DOM pointe...
15
38
62
ac857d22911466bbd5ed6c6f78938be958c76870
Daosheng Mu
2016-04-27T23:40:43
servo: Merge #10871 - Fix issue #10755 Canvas without contexts (from daoshengmu:canvasWithoutContexts); r=jdm While canvas without contexts, we just need to return the function without drawing any pixel. Fixes #10755. Source-Repo: https://github.com/servo/servo Source-Revision: 14de06aef077e57ca7fdccaae72551919b7748...
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index fb2847e9d..de76e2b20 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -13,7 +13,7 @@ use app_units::{Au, AU_PER_PX}; use azure::azure_hl::Color; use block::{BlockFlow, BlockStackingContextType}; -use...
1
3
9
dc1c679a9ce1418dcd20d60399c6a54ec58dea41
SunyDays
2016-04-27T17:52:41
servo: Merge #10816 - Implement the errorevent argument to Document::createEvent (from SunyDays:errorevent_argument); r=frewsxcv new_uninitialized function on ErrorEvent has already been in components/script/dom/errorevent.rs close #10738 Source-Repo: https://github.com/servo/servo Source-Revision: 311dd0f930b9e8e90...
diff --git a/script/dom/document.rs b/script/dom/document.rs index d8fa81be0..fffd81fda 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -38,6 +38,7 @@ use dom::documentfragment::DocumentFragment; use dom::documenttype::DocumentType; use dom::domimplementation::DOMImplementation; use dom::element:...
1
3
0
dcc7ea29261d7fed200e0f6b7b9fcd09b73d0082
Connor Brewster
2016-04-27T14:50:54
servo: Merge #10647 - Finish hooking up XML parser (from cbrewster:parse_xml); r=jdm This is a work in progress PR for #10581. I just want to make sure I am headed in the right direction. cc @jdm Source-Repo: https://github.com/servo/servo Source-Revision: daa1a2a0a82d336205dae340d705ea6c0bed4ed2
diff --git a/script/Cargo.toml b/script/Cargo.toml index f4cdde5a1..9e9cb5ec4 100644 --- a/script/Cargo.toml +++ b/script/Cargo.toml @@ -27,7 +27,7 @@ canvas_traits = {path = "../canvas_traits"} js = {git = "https://github.com/servo/rust-mozjs"} angle = {git = "https://github.com/emilio/angle", branch = "servo"} ipc...
5
56
29
ac76e382b91e98da9f75aef2e3c9013dbec5209a
Corey Farwell
2016-04-27T11:23:34
servo: Merge #10869 - DRY out `StreamedResponse::from_http_response` (from frewsxcv:dry); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 88020e9151d3cdb6a2e01b62ac0c093b8f693123
diff --git a/net/http_loader.rs b/net/http_loader.rs index 5855cf394..7f6eee9d6 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -512,26 +512,28 @@ impl<R: HttpResponse> StreamedResponse<R> { } fn from_http_response(response: R, m: Metadata) -> Result<StreamedResponse<R>, LoadError> { - ma...
1
11
9
b5818fb7cba53030cee65f5adbbbc5c654af6519
Martin Broesamle
2016-04-27T10:29:50
servo: Merge #10866 - Move abstract parser infrastructure from servohtmlparser.rs to parse (from broesamle:issue10856-a); r=Ms2ger Fixes #10856 Source-Repo: https://github.com/servo/servo Source-Revision: 5fd93de7be21220ec309969e7795061d835b0e84
diff --git a/script/dom/document.rs b/script/dom/document.rs index 66da66574..d8fa81be0 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -70,7 +70,6 @@ use dom::nodelist::NodeList; use dom::processinginstruction::ProcessingInstruction; use dom::progressevent::ProgressEvent; use dom::range::Range; ...
5
178
170
3f088f2a9d0159419e400cd5afa3992cc0fb0e9c
Corey Farwell
2016-04-27T08:26:05
servo: Merge #10868 - Add `NetworkError::LoadCancelled` variant (from frewsxcv:loadcancelled); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: ad77d40360f4ccb0a1249d86e5a48357f74295ea
diff --git a/msg/constellation_msg.rs b/msg/constellation_msg.rs index e1a5b9ef6..cd0232ca7 100644 --- a/msg/constellation_msg.rs +++ b/msg/constellation_msg.rs @@ -400,4 +400,3 @@ pub enum ReferrerPolicy { OriginWhenCrossOrigin, UnsafeUrl, } - diff --git a/net/file_loader.rs b/net/file_loader.rs index 300d5...
4
6
6
bd868eb8b6b25ba491916cc29e7022bd04f975e6
bd339
2016-04-27T07:16:08
servo: Merge #10838 - Implement step 3 according to spec (from bd339:iss9551); r=KiChjang Goes towards fixing #9551 Source-Repo: https://github.com/servo/servo Source-Revision: 21c177311522f0ecf4a5ce4068c8ede58c7ce676
diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs index 9f74e694a..574de7b8e 100644 --- a/script/dom/xmlhttprequest.rs +++ b/script/dom/xmlhttprequest.rs @@ -706,7 +706,8 @@ impl XMLHttpRequestMethods for XMLHttpRequest { // Step 2 let override_mime = try!(mime.parse::<Mime>().m...
1
2
1
e96f0ae47f24bbae28ebdc43a9659a091b8ae327
Akshit Khurana
2016-04-27T06:26:29
servo: Merge #10870 - Return a Result<i64, ()> from do_parse_integer (from axitkhurana:do-parse-integer-return-value); r=KiChjang Fixes #10860 Source-Repo: https://github.com/servo/servo Source-Revision: 55ea0d1133f2ccd63cb44f9e7ce613c07bcf613f
diff --git a/style/attr.rs b/style/attr.rs index bcd14d985..9678c519d 100644 --- a/style/attr.rs +++ b/style/attr.rs @@ -35,13 +35,13 @@ pub enum AttrValue { /// Shared implementation to parse an integer according to /// <https://html.spec.whatwg.org/multipage/#rules-for-parsing-integers> or /// <https://html.spec.w...
1
7
7
96aa3f968a3b9d13912ca54cbcf2c1d3b51cc1d1
Alan Jeffrey
2016-04-27T01:40:21
servo: Merge #10862 - Don't kill the root pipeline when randomly killing pipelines (from asajeffrey:only-the-chrome-survives); r=SimonSapin Useful for stress-testing the browser chrome, e.g. testing #10334. Source-Repo: https://github.com/servo/servo Source-Revision: 959dbac0e7ca457d3979ff122ed4686eee209e91
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 829eca097..268ce926c 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -1869,6 +1869,8 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF> if let Some((ref mut rng, _)) =...
1
2
0
0dc9d2b11cc102750b0e6bccceb0bc6b5c8b9e1e
SunyDays
2016-04-27T00:50:51
servo: Merge #10820 - Implement the "focusevent" argument to Document::createEvent (from SunyDays:focusevent_argument); r=Ms2ger close #10739 Source-Repo: https://github.com/servo/servo Source-Revision: aa078a0780465a4dbf3ce91494f8c55a57359fd3
diff --git a/script/dom/document.rs b/script/dom/document.rs index 7d25e484a..66da66574 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -2186,6 +2186,8 @@ impl DocumentMethods for Document { Ok(Root::upcast(StorageEvent::new_uninitialized(&self.window, self.URL()))), "p...
2
8
0
2b5b85454c4d5c8860bccb2490caf06c13afefe6
Simon Sapin
2016-04-26T22:46:37
servo: Merge #10857 - Simplify TOML syntax (from servo:toml); r=nox * Sections like `[dependencies.foo]` can be entries in a `[dependencies]` section with the `{key = value}` syntax. * Per-target dependencies can be expressed with more general `cfg(…)` conditions instead of exact target triples: https://github.com/rus...
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index 64f258e5b..8df280ce7 100644 --- a/canvas/Cargo.toml +++ b/canvas/Cargo.toml @@ -8,29 +8,14 @@ publish = false name = "canvas" path = "lib.rs" -[dependencies.azure] -git = "https://github.com/servo/rust-azure" -features = ["plugins"] - -[dependencies.canvas_tr...
22
206
667
ee1b47c410d16eba89381dad330592dbd3db000b
Ms2ger
2016-04-26T21:41:54
servo: Merge #10847 - Update rustc (from servo:rustup-20160424); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: caba731da15e468872e41da466b68ea5a327128a
diff --git a/script/lib.rs b/script/lib.rs index 0748ae954..43d42d47a 100644 --- a/script/lib.rs +++ b/script/lib.rs @@ -2,7 +2,6 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#![feature(ascii)] #![feature(as_unsafe_cell)] ...
2
0
2
307796259fd01b1ca202f990a46c93919458086d
Alan Jeffrey
2016-04-26T20:17:33
servo: Merge #10824 - Communicate a backtrace to the constellation when panicking (from asajeffrey:communicate-backtrace-on-panic); r=Manishearth Send a representation of the backtrace from a pipeline thread to the constellation in the case of panic. This is the next step in communicating the backtrace to the browser ...
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 026edcb9b..829eca097 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -54,7 +54,6 @@ use std::borrow::ToOwned; use std::collections::HashMap; use std::env; use std::io::Error as IOError; -use std::io::{self,...
7
92
63
ba90f44e6289b71a3801b33476e1659e04557450
Keith Yeung
2016-04-26T18:59:25
servo: Merge #10608 - Add parsing of double values in style attributes (from KiChjang:parse-double); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: ccba2d6841119aac82dfe5ae2f528fdb910a6abd
diff --git a/script/dom/htmlfontelement.rs b/script/dom/htmlfontelement.rs index d898a5840..fb5379e79 100644 --- a/script/dom/htmlfontelement.rs +++ b/script/dom/htmlfontelement.rs @@ -150,8 +150,8 @@ pub fn parse_legacy_font_size(mut input: &str) -> Option<&'static str> { // Steps 6, 7, 8 let mut value = m...
7
120
14
fc3430402c08b9f2fdc5e90f8a43f8cf2dee7c9f
Michael Howell
2016-04-26T18:04:41
servo: Merge #10722 - layout: Add support for vertical alignment within table cells (from notriddle:table_cell_valign); r=SimonSapin Fixes #10621 Source-Repo: https://github.com/servo/servo Source-Revision: 31a440867db54f5387aca3bd8ce2f644de84c5e1
diff --git a/layout/flow_list.rs b/layout/flow_list.rs index 96f4d5ba7..85657db8a 100644 --- a/layout/flow_list.rs +++ b/layout/flow_list.rs @@ -29,6 +29,10 @@ impl FlowList { self.flows.push_back(new_tail); } + pub fn back(&self) -> Option<&Flow> { + self.flows.back().map(|x| &**x) + } + ...
3
55
2
83d427198a90086a47d57b222421027ffead2dab
Martin Robinson
2016-04-26T17:13:00
servo: Merge #10810 - Merge DisplayListEntry into DisplayItem (from mrobinson:displayitem); r=pcwalton We don't really need two levels of abstraction for every element in the DisplayList. This simplifies the complexity of the data structure in preparation for providing documentation and properly handling scrolling roo...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index abbece1d7..0b8d5f2db 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -39,9 +39,8 @@ use std::hash::{BuildHasherDefault, Hash}; use std::marker::PhantomData; use std::ops::{Deref, DerefMut}; use std::sync::Arc; -use style::comp...
5
217
183
67190decfd10f5d11c8adb6dfa9551984ffdd410
Sagar Muchhal
2016-04-26T14:40:18
servo: Merge #10767 - Added Store Command to ImageCache Task (from akhan7:command); r=jdm Implemented last bullet of [Image conformance student project: Initial Steps](https://github.com/servo/servo/wiki/Image-load-conformance-student-project) Source-Repo: https://github.com/servo/servo Source-Revision: 47efbea666ed6...
diff --git a/net/image_cache_thread.rs b/net/image_cache_thread.rs index 15f3bd93c..3ca281761 100644 --- a/net/image_cache_thread.rs +++ b/net/image_cache_thread.rs @@ -394,6 +394,9 @@ impl ImageCache { let result = self.get_image_or_meta_if_available(url, use_placeholder); consumer.se...
2
32
1
9cc7fe8c3d8e0aa560b9ce0d758509dfe07dc037
Ramana Venkata
2016-04-26T12:07:14
servo: Merge #10850 - Allow setting withCredentials in synchronous XMLHttpRequest (from vramana:issue_10839); r=Ms2ger closes #10839 Source-Repo: https://github.com/servo/servo Source-Revision: cb42be98279348981951933aeee4b1bfcf1517d1
diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs index 7a538d8ad..9f74e694a 100644 --- a/script/dom/xmlhttprequest.rs +++ b/script/dom/xmlhttprequest.rs @@ -369,8 +369,7 @@ impl XMLHttpRequestMethods for XMLHttpRequest { // Step 10 if !async { ...
1
1
4
d717ed6f6f148fca18b4892c6b99a185a098b84e
Stephen (Ziyun) Li
2016-04-26T05:00:24
servo: Merge #10844 - Implement the "progressevent" argument to Document::createEvent (from sliz1:10740); r=frewsxcv Fixes https://github.com/servo/servo/issues/10740 Source-Repo: https://github.com/servo/servo Source-Revision: 09b2efc7061337593d948c7fb11b9d80ba42df5a
diff --git a/script/dom/document.rs b/script/dom/document.rs index 9488c0bdc..7d25e484a 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -68,6 +68,7 @@ use dom::node::{self, CloneChildrenFlag, Node, NodeDamage, window_from_node}; use dom::nodeiterator::NodeIterator; use dom::nodelist::NodeList; us...
2
9
0
0718056c0024a5f17983fe9f9f9470eb6c629238
Fabrice Desré
2016-04-26T02:11:15
servo: Merge #10842 - Webrender no nativewindow (from fabricedesre:webrender-no-nativewindow); r=Manishearth @glennw this fixed the panic when using webrender and no native display is available. Source-Repo: https://github.com/servo/servo Source-Revision: 5ef355cf439f410f249f0565623eb439afd59456
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index b84516191..366884563 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -93,8 +93,8 @@ pub struct IOCompositor<Window: WindowMethods> { /// The application window. window: Rc<Window>, - /// The display this co...
2
19
8
27c1cb27bf848628164c130eb4fb2029a273b402
Daniel
2016-04-26T01:10:40
servo: Merge #10800 - read cookie_jar, hsts_list, auth_cache, and local_data from file if profile_dir option is present (from DDEFISHER:read_profile_dir_from_file); r=frewsxcv Last step in Persistent sessions student project "check for the presence of the profile directory command-line option in the ResourceThread co...
diff --git a/net/Cargo.toml b/net/Cargo.toml index 927ecf67f..5fb3978a9 100644 --- a/net/Cargo.toml +++ b/net/Cargo.toml @@ -33,7 +33,7 @@ git = "https://github.com/servo/ipc-channel" git = "https://github.com/servo/webrender_traits" [dependencies] -cookie = "0.2" +cookie = { version = "0.2.4", features = [ "serial...
6
52
75
6fe4e08f10629ceab52a98e87b1c04f6dfe2b291
Corey Farwell
2016-04-25T21:37:44
servo: Merge #10785 - Refactor `LoadErrorType` to not require a `String` for every type (from frewsxcv:loaderrortype-nostring); r=jdm Some of the `LoadErrorType` like `LoadCancelled` don't need a `String` associated with the type since the variant is self-explanatory. There are some variants that don't need an associ...
diff --git a/net/http_loader.rs b/net/http_loader.rs index 1a53e013a..fedc31963 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -36,6 +36,7 @@ use std::borrow::ToOwned; use std::boxed::FnBox; use std::collections::HashSet; use std::error::Error; +use std::fmt; use std::io::{self, Read, Write}; use std:...
1
60
38
8f436a538070912c977251aa395106bc7b055b20
Rebecca
2016-04-25T20:52:01
servo: Merge #10696 - Referer header (from rebstar6:referrerPolicy); r=jdm PR1 for https://github.com/servo/servo/issues/10311 This puts the code and data structures in place to set the Referer header based on the Referrer Policy for a given document. Note that document:: get_referrer_policy() always returns the 'No ...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 23c7bfe29..b84516191 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -1305,7 +1305,7 @@ impl<Window: WindowMethods> IOCompositor<Window> { Ok(url) => { self.window.set_page_url(url.clone()); ...
16
139
29
9dd33c57c7fe36e770b652022ec57aac34534c62
Bridget McErlean
2016-04-25T19:03:10
servo: Merge #10833 - Use the document base url when resolving worker URLs (from zubron:use-document-base-url-worker-10577); r=Ms2ger This fixes #10577. I'm not sure if the `worker.js` file needed by this test is in the right location. I placed it within `tests/wpt/web-platform-tests/workers/constructors/Worker/sampl...
diff --git a/script/dom/worker.rs b/script/dom/worker.rs index f6cf53b80..0f0d06d48 100644 --- a/script/dom/worker.rs +++ b/script/dom/worker.rs @@ -69,7 +69,7 @@ impl Worker { // https://html.spec.whatwg.org/multipage/#dom-worker pub fn Constructor(global: GlobalRef, script_url: DOMString) -> Fallible<Root<W...
1
1
1
bf00795f0f83a31e7d96cb586f86e571d7213428
Maciej Skrzypkowski
2016-04-25T10:44:24
servo: Merge #10831 - "storageevent" argument for Document::createEvent (from mskrzypkows:storageevent); r=Ms2ger Fixes #10736 Source-Repo: https://github.com/servo/servo Source-Revision: 8bf732e633cc63dd56a8b6a9f503d694e4b569fe
diff --git a/script/dom/document.rs b/script/dom/document.rs index f82188c7b..746fc2a4c 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -70,6 +70,7 @@ use dom::nodelist::NodeList; use dom::processinginstruction::ProcessingInstruction; use dom::range::Range; use dom::servohtmlparser::{ParserRoot, ...
2
11
0
beca2a8381f094aad6dbc689c2919acecc8983f4
Tyler Southwick
2016-04-25T08:50:52
servo: Merge #10805 - implement webglcontextevent (from tylersouthwick:webglcontextevent); r=Ms2ger fixes #10742 Source-Repo: https://github.com/servo/servo Source-Revision: 59205323da10b5867d4386a50a290c3a7500c217
diff --git a/script/dom/document.rs b/script/dom/document.rs index 02d640f17..f82188c7b 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -77,6 +77,7 @@ use dom::touchevent::TouchEvent; use dom::touchlist::TouchList; use dom::treewalker::TreeWalker; use dom::uievent::UIEvent; +use dom::webglcontext...
2
14
0
3ac1ef4d106185b2d74f3beae21c80ecd4470333
SunyDays
2016-04-25T05:49:26
servo: Merge #10814 - Implement the svgevents argument to Document::createEvent (from SunyDays:svgevents_argument); r=Ms2ger close #10741 Source-Repo: https://github.com/servo/servo Source-Revision: 4b8f1260b9e8fa875dd8055dd5f60f06d053a843
diff --git a/script/dom/document.rs b/script/dom/document.rs index b5295904e..02d640f17 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -2154,7 +2154,7 @@ impl DocumentMethods for Document { Ok(Root::upcast(MouseEvent::new_uninitialized(&self.window))), "customevent" =>...
1
1
1
7da2bdf13e5fdd9e8b751ae908c9a871751fe544
Josh Matthews
2016-04-23T14:51:44
servo: Merge #10823 - Squash unused import and unused crate warnings (from jdm:import); r=frewsxcv Source-Repo: https://github.com/servo/servo Source-Revision: 305c283602882850be9d39c43b980d0fc0f93a3c
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index eac352b1d..1af3b4047 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -98,7 +98,3 @@ serde = "0.7" serde_macros = "0.7" time = "0.1.17" url = {version = "0.5.7", features = ["heap_size"]} - -[target.x86_64-apple-darwin.dependencies...
4
0
12
323d741d9cd58fc1417f139af97b18fff78a32c6
Michael Howell
2016-04-23T05:32:37
servo: Merge #10770 - Do not render the contents of block-level replaced elements (from notriddle:canvas_placeholder_block); r=mbrubeck Fixes #10733 Source-Repo: https://github.com/servo/servo Source-Revision: 5a5e928cb9a0ab4f6556c63c70a88f5e7ade4f10
diff --git a/layout/construct.rs b/layout/construct.rs index ee9619423..cc3464246 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -619,18 +619,20 @@ impl<'a, ConcreteThreadSafeLayoutNode: ThreadSafeLayoutNode> // List of absolute descendants, in tree order. let mut abs_descendants = Ab...
2
17
15
b1bc999ab7af8dec8eae1539da756fe0b2e5c3b9
Corey Farwell
2016-04-23T04:00:18
servo: Merge #10799 - Complete 'inefficient' FIXME by remove unnecessary clone (from frewsxcv:no-clone); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: abce9de2337d4d41ba977241b268f5774975f7b0
diff --git a/script/dom/storage.rs b/script/dom/storage.rs index dae8d73e7..76e7c6a29 100644 --- a/script/dom/storage.rs +++ b/script/dom/storage.rs @@ -129,7 +129,11 @@ impl StorageMethods for Storage { let (sender, receiver) = ipc::channel().unwrap(); self.get_storage_thread().send(StorageThreadMs...
1
5
1
02345d5efdff46c7b17e94e22a2088a55d58a0b1
Tyler Southwick
2016-04-23T02:20:57
servo: Merge #10804 - Remove unused code and make utils private (from tylersouthwick:remove-plugins-utils-unsafe_context); r=nox fixes #10771 Source-Repo: https://github.com/servo/servo Source-Revision: 2b68cf4aba22b9e48e5e40e7191917ab4f2d967b
diff --git a/plugins/lib.rs b/plugins/lib.rs index 69ddbc9a0..9ee553145 100644 --- a/plugins/lib.rs +++ b/plugins/lib.rs @@ -39,7 +39,7 @@ pub mod lints; /// Autogenerates implementations of Reflectable on DOM structs pub mod reflector; /// Utilities for writing plugins -pub mod utils; +mod utils; #[plugin_regist...
2
1
25
51bc4f05f56952efb4217adf9c4a420a7768e28f
Ms2ger
2016-04-23T00:24:23
servo: Merge #10784 - Update xml5ever (from servo:xml5ever); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: 1946c71a9612260fefda89c528e41a1b259365c5
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 9acf75b6e..ed25d333e 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2485,7 +2485,7 @@ dependencies = [ [[package]] name = "xml5ever" version = "0.1.1" -source = "git+https://github.com/Ygg01/xml5ever#4900bbadef28c940a0cd73dc735d53709a2845c7" +source = ...
1
1
1
3e39fec645080a945eb31729558f128d268dadf1
Tetsuharu OHZEKI
2016-04-22T22:56:49
servo: Merge #10769 - Drop support for keyevents in Document::createEvent (from saneyuki:keyevents); r=frewsxcv Fix #10735 Source-Repo: https://github.com/servo/servo Source-Revision: e12fc2a6f70b44784baee7ec2d27879b2b38afe9
diff --git a/script/dom/document.rs b/script/dom/document.rs index 12eab0cf4..2eb9bd880 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -2156,7 +2156,7 @@ impl DocumentMethods for Document { Ok(Root::upcast(CustomEvent::new_uninitialized(GlobalRef::Window(&self.window)))), ...
1
1
1
506fffd3bf7f5e478308d63a7fdff3d2acb05f19
Michael Howell
2016-04-22T21:25:51
servo: Merge #10654 - compositing/script: Do not dispatch the resize event when initially l… (from notriddle:no_resize_on_initial_load); r=asajeffrey …oading. No bug report corresponds to this, but I noticed it while trying to reduce #10593 Source-Repo: https://github.com/servo/servo Source-Revision: 47a0f58f98e1a6d...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 2dddffe15..23c7bfe29 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -31,7 +31,7 @@ use layers::scene::Scene; use layout_traits::LayoutControlChan; use msg::constellation_msg::{ConvertPipelineIdFromWebRender, ConvertPip...
8
69
48
fbf77027c8079df381ad851b7cf331dfb12d05b9
Zbynek Winkler
2016-04-22T20:40:38
servo: Merge #10706 - Turn on unused-extern-crates warning (from zwn:unused-extern-crates); r=nox As discussed in #9256. It should solve second half of the issue. Source-Repo: https://github.com/servo/servo Source-Revision: 0a3a50a1293e4e8f3e04161014d03802765140c7
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index 11a0580c3..64f258e5b 100644 --- a/canvas/Cargo.toml +++ b/canvas/Cargo.toml @@ -12,10 +12,6 @@ path = "lib.rs" git = "https://github.com/servo/rust-azure" features = ["plugins"] -[dependencies.layers] -git = "https://github.com/servo/rust-layers" -features = ...
24
16
38
fb9569287f6925dfc8b815c40c4ebc627da8d39a
Zbynek Winkler
2016-04-22T17:40:06
servo: Merge #10751 - Report lines starting with && in tidy (from zwn:tidy-start-operator); r=Wafflespeanut Partial implementation of the issue #10692 (the easy part). Source-Repo: https://github.com/servo/servo Source-Revision: d926b5d3762a101d5280266f806f2b979f73b695
diff --git a/gfx/text/glyph.rs b/gfx/text/glyph.rs index 9c41bd23f..b1d6222f2 100644 --- a/gfx/text/glyph.rs +++ b/gfx/text/glyph.rs @@ -469,9 +469,9 @@ impl<'a> GlyphStore { character: char, data: &GlyphData) { let glyph_is_compressible...
10
26
26
86443259a867fabe230837bf10e8f35f38a9fa0a
David Raifaizen
2016-04-22T16:26:51
servo: Merge #10651 - Setting current color to black if canvas is not rendered in document (from craftytrickster:10601/current-color); r=Ms2ger Fixes #10601 The change seems deceptively easy, I hope I am not missing anything... Source-Repo: https://github.com/servo/servo Source-Revision: 4da6855e2332ce433fd6d6ea9d84...
diff --git a/script/dom/canvasrenderingcontext2d.rs b/script/dom/canvasrenderingcontext2d.rs index a0c4ee9d0..36c042b4d 100644 --- a/script/dom/canvasrenderingcontext2d.rs +++ b/script/dom/canvasrenderingcontext2d.rs @@ -486,11 +486,29 @@ impl CanvasRenderingContext2D { match color { Ok(CS...
1
19
1
f49caca7f4d703f091f24030eb1f853afb386996
Nick Fitzgerald
2016-04-22T13:05:49
servo: Merge #10729 - Add unit tests skeleton for the time profiler (from fitzgen:unit-tests-for-time-profiler); r=larsbergstrom This commit adds a test crate for the time profiler to `tests/unit/profile`. The only unit test contained in this crate is a smoke test that the time profiler thread can be created and destr...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 70ece4ceb..699fb3295 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -33,6 +33,7 @@ dependencies = [ "offscreen_gl_context 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "plugin_compiletest 0.0.1", "profile 0.0.1", + "profile_tests 0....
2
12
0
4c9b41c1c87414d463e2b8b8f09d4302cf451776
Josh Matthews
2016-04-22T03:50:27
servo: Merge #10727 - Use DOM width/height for canvas display list item (from jdm:canvas_panic); r=pcwalton Fixes #10705. r? @glennw Source-Repo: https://github.com/servo/servo Source-Revision: 0e0e902edd200359db6ae06cd149fb1b0a97fcc6
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index 1a02e7d8a..fa9558fbc 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -1220,6 +1220,9 @@ impl FragmentDisplayListBuilding for Fragment { let height = canvas_fragment_info.replaced_image...
1
9
3
0a43be076ade46899f46a6bba8a652a4ef8d128e
Ms2ger
2016-04-21T10:11:44
servo: Merge #10710 - Update js (from Ms2ger:js); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 7e370c4df4ee0c564322a0bebd34b31359e88d85
diff --git a/script/dom/dedicatedworkerglobalscope.rs b/script/dom/dedicatedworkerglobalscope.rs index 1b2d18b18..56426f883 100644 --- a/script/dom/dedicatedworkerglobalscope.rs +++ b/script/dom/dedicatedworkerglobalscope.rs @@ -240,7 +240,7 @@ impl DedicatedWorkerGlobalScope { } }; - ...
4
40
85
685985689b2c09155c16bf22772009e2c7517235
Daniel
2016-04-20T22:21:56
servo: Merge #10661 - write cookie_jar, hsts_list, auth_cache to file if profile_dir option is present (from DDEFISHER:master); r=jdm For Persistent sessions student project "if the profile directory command-line option is present when the ResourceThread is instructed to exit, serialize the data contained in cookie_s...
diff --git a/net/cookie.rs b/net/cookie.rs index 0f77a8d6f..f5c021e2b 100644 --- a/net/cookie.rs +++ b/net/cookie.rs @@ -8,6 +8,7 @@ use cookie_rs; use net_traits::CookieSource; use pub_domains::PUB_DOMAINS; +use rustc_serialize::{Encodable, Encoder}; use std::borrow::ToOwned; use std::net::{Ipv4Addr, Ipv6Addr}; ...
5
149
12
ff54738d8cf68dc730dd1fd656422427cbb612ad
Josh Matthews
2016-04-20T16:49:22
servo: Merge #9942 - Moving the error handling out of network loader (from jdm:load_error); r=ms2ger Rebase of #8851. Fixes #8678. Fixes #9944. Source-Repo: https://github.com/servo/servo Source-Revision: f051028ee8cd93168b1abe3742929d43d19cb002
diff --git a/gfx/font_cache_thread.rs b/gfx/font_cache_thread.rs index 315702902..0aa732a24 100644 --- a/gfx/font_cache_thread.rs +++ b/gfx/font_cache_thread.rs @@ -183,15 +183,21 @@ impl FontCache { ROUTER.add_route(data_receiver.to_opaque(), box move |message| { ...
17
268
159
98e8cf6cb20f7ea531b7fa45d68f04fdd5d34305
Ms2ger
2016-04-20T15:10:24
servo: Merge #10750 - Use num's constituent crates (from servo:num); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 89b276c889ce76f8fe43c22779835af138472dac
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index ff31840b3..11a0580c3 100644 --- a/canvas/Cargo.toml +++ b/canvas/Cargo.toml @@ -38,5 +38,5 @@ git = "https://github.com/servo/webrender_traits" euclid = {version = "0.6.4", features = ["plugins"]} gleam = "0.2.8" log = "0.3.5" -num = "0.1.24" +num-traits = "0....
24
147
92
c4f20df04307b4e0b961986ed60d793594c74192
zakorgyula
2016-04-20T08:54:53
servo: Merge #10745 - Remove extra definition of WHITESPACE under components/util/str.rs (from zakorgy:refaktor); r=nox issue: #10709 found another ``` const WHITESPACE: &'static [char] = &['\t', '\n', '\r', ' ']; ``` in ```components/style/viewports.rs ``` maybe this could be replaced too with the ```util::str::HTML_...
diff --git a/script/dom/htmlfontelement.rs b/script/dom/htmlfontelement.rs index ae2744110..d898a5840 100644 --- a/script/dom/htmlfontelement.rs +++ b/script/dom/htmlfontelement.rs @@ -15,7 +15,7 @@ use dom::node::Node; use dom::virtualmethods::VirtualMethods; use string_cache::Atom; use style::values::specified; -u...
3
14
18
d06a30b7804e8d1a66e0cf246053449b1c4433d4
Corey Farwell
2016-04-20T00:00:59
servo: Merge #10725 - A few minor `net` component cleanups (from frewsxcv:net-cleanup); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: bebc1dc859192d7fdcfc53e550cbf51343f4375a
diff --git a/net/cookie.rs b/net/cookie.rs index 2f555767b..0f77a8d6f 100644 --- a/net/cookie.rs +++ b/net/cookie.rs @@ -66,7 +66,7 @@ impl Cookie { // Step 7 let mut path = cookie.path.unwrap_or("".to_owned()); - if path.is_empty() || path.as_bytes()[0] != b'/' { + if path.chars().nex...
3
15
20
f92e0565d487a89e6299ccaedc0e76806565238c
Matt Brubeck
2016-04-19T22:06:52
servo: Merge #10718 - Lower the logging level of a really chatty fn (from mbrubeck:trace); r=jdm Reduces the amount of spew when running with settings like `RUST_LOG=script=debug`. Source-Repo: https://github.com/servo/servo Source-Revision: 82873d688e9260b5fc755ec16eec959d94a5cb14
diff --git a/script/dom/bindings/conversions.rs b/script/dom/bindings/conversions.rs index 6db0d08af..060d3d598 100644 --- a/script/dom/bindings/conversions.rs +++ b/script/dom/bindings/conversions.rs @@ -253,12 +253,12 @@ pub unsafe fn get_dom_class(obj: *mut JSObject) -> Result<&'static DOMClass, ()> let clasp...
1
2
2
392150be5b58768e415c0cb0f6e02a80a1ee58e4
Patrick Walton
2016-04-19T21:25:44
servo: Merge #10717 - layout: Implement support for `overflow: scroll` in WebRender (from pcwalton:wr-overflow-scroll); r=glennw Requires a WebRender upgrade. r? @glennw Source-Repo: https://github.com/servo/servo Source-Revision: 64b0dafde8f65ef4aceeb85436c547a1581c619f
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index db9373e84..1a02e7d8a 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -1294,8 +1294,9 @@ impl FragmentDisplayListBuilding for Fragment { scroll_policy: ScrollPolicy, ...
4
32
8
129a4a0724d5022c39af762090a5925e544d38d1
Ms2ger
2016-04-19T18:05:34
servo: Merge #10708 - Fix some compile warnings (from Ms2ger:warnings); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 4d5fa963fdcf9ec9287eac762bf6afafdbee5f41
diff --git a/plugins/lib.rs b/plugins/lib.rs index a2babd3bf..69ddbc9a0 100644 --- a/plugins/lib.rs +++ b/plugins/lib.rs @@ -63,5 +63,5 @@ fn register_clippy(reg: &mut Registry) { ::clippy::plugin_registrar(reg); } #[cfg(not(feature = "clippy"))] -fn register_clippy(reg: &mut Registry) { +fn register_clippy(_reg...
3
2
3
c729863cc408e3dc1d9196dc2e05293cbdbe78de
Alan Jeffrey
2016-04-19T16:28:07
servo: Merge #10641 - Dedicated panic channel (from asajeffrey:dedicated-panic-channel); r=Manishearth Added a dedicated panic channel, and removed the panic messages for the script and layout threads. This is needed so that other threads can report panics, which is part of #10334. Note that this PR includes the comm...
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 3cd67edcb..4a4aec9d8 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -25,7 +25,7 @@ use gaol; #[cfg(not(target_os = "windows"))] use gaol::sandbox::{self, Sandbox, SandboxMethods}; use gfx::font_cache_threa...
13
108
232
7c69bad77cb4998dab4350ceecf0e29803cb7b13
Arnaud Marant
2016-04-19T15:21:18
servo: Merge #10634 - Issue #10574 Use the document base url in img (from amarant:10574-image-document-base); r=metajack add a test with base path set to the resources path and an img with a cat and the reference directly to the image Source-Repo: https://github.com/servo/servo Source-Revision: 3d4416e1b0ae758e68900f...
diff --git a/script/dom/htmlimageelement.rs b/script/dom/htmlimageelement.rs index 92291600c..c0a9e9603 100644 --- a/script/dom/htmlimageelement.rs +++ b/script/dom/htmlimageelement.rs @@ -369,7 +369,7 @@ impl VirtualMethods for HTMLImageElement { &atom!("src") => { self.update_image(mutat...
1
1
1
013c257770d95754e5efc2aa11f5e083b0f73cf8
Nazım Can Altınova
2016-04-19T11:50:32
servo: Merge #10592 - Use the document base url when resolving stylesheets (from canaltinova:stylesheet_with_base); r=Ms2ger Use the document base url when resolving stylesheets. Fixes #10575 . Source-Repo: https://github.com/servo/servo Source-Revision: a7c885706ec4bd526b00ecad5d870415ae6cc1e1
diff --git a/script/dom/htmllinkelement.rs b/script/dom/htmllinkelement.rs index e7af4f537..1b058b4c6 100644 --- a/script/dom/htmllinkelement.rs +++ b/script/dom/htmllinkelement.rs @@ -190,9 +190,8 @@ impl VirtualMethods for HTMLLinkElement { impl HTMLLinkElement { fn handle_stylesheet_url(&self, href: &str) { ...
1
9
12
40dc7f1ca9fbc5906afddc3ce3fa5fe8cb81a9f0
Corey Farwell
2016-04-19T05:40:18
servo: Merge #10695 - Avoid unnecessary `net_traits::LoadData` clone (from frewsxcv:no-clone); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: 407c43fadedab02614e5d5c6b5a9d55e7632e991
diff --git a/net/http_loader.rs b/net/http_loader.rs index 5aca88e19..5473a83fc 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -155,8 +155,7 @@ fn load_for_consumer(load_data: LoadData, }; let ui_provider = TFDProvider; - let context = load_data.context.clone(); - match load(load_data, &u...
1
11
12
187a6d798596eca7a7e9fbe5d113df693f734f30
Martin Robinson
2016-04-19T04:59:21
servo: Merge #10678 - WebRender no longer needs StackingLevel information (from mrobinson:remove-stackinglevel-from-webrender); r=pcwalton Since the display list is already sorted before it is passed to WebRender, we don't need to pass the stacking level information any longer. Update webrender, webrender_traits, and ...
diff --git a/layout/webrender_helpers.rs b/layout/webrender_helpers.rs index 1d21ab4e4..f52685501 100644 --- a/layout/webrender_helpers.rs +++ b/layout/webrender_helpers.rs @@ -12,7 +12,7 @@ use azure::azure_hl::Color; use euclid::num::Zero; use euclid::{Point2D, Rect, Size2D}; use gfx::display_list::{BorderRadii, B...
2
28
73
32286f9c823e5ba227902aa2b80ffc45f7a3274a
David Zbarsky
2016-04-19T04:16:24
servo: Merge #10652 - Prevent use of reserved names in BindAttribLocation (from dzbarsky:reserved); r=dzbarsky (Depend on the WebGL tests landing) Source-Repo: https://github.com/servo/servo Source-Revision: 82b952c03f94c0b8433a9fccbe9b66aa7e704924
diff --git a/script/dom/webglprogram.rs b/script/dom/webglprogram.rs index d288e9422..0458e2ae2 100644 --- a/script/dom/webglprogram.rs +++ b/script/dom/webglprogram.rs @@ -147,7 +147,7 @@ impl WebGLProgram { } // Check if the name is reserved - if name.starts_with("webgl") || name.starts_wit...
2
9
7
18d710016df3c9dab87cc52cc6d147958f46a7d1
Corey Farwell
2016-04-18T22:36:25
servo: Merge #10672 - Improvements to network preferences, HTTP redirection limiting (from frewsxcv:net-network); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: 80662f1e4e3054415700f1d82896bd76626b022d
diff --git a/gfx/font_cache_thread.rs b/gfx/font_cache_thread.rs index 7af1e0889..315702902 100644 --- a/gfx/font_cache_thread.rs +++ b/gfx/font_cache_thread.rs @@ -423,7 +423,7 @@ impl FontCacheThread { // derived from http://stackoverflow.com/a/10864297/3830 fn is_supported_font_type(toplevel: &TopLevel, sublevel...
3
7
9
f64e8e799c2a833dd672818164106d6aed1986ca
Alan Jeffrey
2016-04-18T21:33:46
servo: Merge #10551 - Trigger mozbrowsererror event when a pipeline fails (from asajeffrey:trigger-mozbrowsererror-event); r=jdm Addresses part of #10334 (it fires the event, but does not include a backtrace). Source-Repo: https://github.com/servo/servo Source-Revision: 4001a24c461f6826cb2d1b1ab270b23a95a3a6c9
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 0e65c36ec..3cd67edcb 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -873,6 +873,9 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF> let window_size = self.pipeline...
1
44
16