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
f1dfb8b382f553a415ae19a124bf2c2c386ede54
Patrick Walton
2016-03-16T04:31:49
servo: Merge #9997 - style: Compute damage for text nodes (from pcwalton:text-node-damage); r=mbrubeck They have styles just like elements do. Allows a dynamic change of `display: none` to `display: inline` to work. Closes #9868. r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 437e875c2e8...
diff --git a/style/matching.rs b/style/matching.rs index 211f04acb..1c158505e 100644 --- a/style/matching.rs +++ b/style/matching.rs @@ -655,6 +655,7 @@ pub trait MatchMethods : TNode { } }; + let damage; if self.is_text_node() { // Text nodes get a copy of the paren...
1
8
3
1ca86a76b9d40e5fdcd995cb854a0d40760b94b6
Lars Bergstrom
2016-03-15T15:20:44
servo: Merge #9987 - Test using 4 parallel codegen units on release builds (from larsbergstrom:codegen_units); r=metajack Do not merge yet! Doing a test run first. Note that `codegen-units` had very little effect on our dev builds (saved ~12 seconds http://logs.glob.uno/?c=mozilla%23servo&s=6+Aug+2015&e=6+Aug+2015#c2...
diff --git a/servo/Cargo.toml b/servo/Cargo.toml index b6bb3469c..c547e09a0 100644 --- a/servo/Cargo.toml +++ b/servo/Cargo.toml @@ -66,12 +66,11 @@ headless = ["glutin_app/headless"] webdriver = ["webdriver_server"] energy-profiling = ["profile_traits/energy-profiling"] +[profile.release] +opt-level = 3 +codegen-u...
1
3
4
177e0ce95f32c6f1fe192461f73044e02b2e48db
Ms2ger
2016-03-15T11:03:03
servo: Merge #9988 - Use lazy_static for HOST_TABLE (from Ms2ger:lazy-static-host-table); r=Manishearth This might change behaviour if the file is changed between Servo startup and the moment HOST_TABLE is first accessed. I don't think we care. Source-Repo: https://github.com/servo/servo Source-Revision: 183772583fcb...
diff --git a/net_traits/Cargo.toml b/net_traits/Cargo.toml index 461dc4679..1ad98091a 100644 --- a/net_traits/Cargo.toml +++ b/net_traits/Cargo.toml @@ -25,6 +25,7 @@ heapsize = "0.3.0" heapsize_plugin = "0.1.2" hyper = { version = "0.7", features = [ "serde-serialization" ] } image = "0.7" +lazy_static = "0.1.15" ...
5
25
33
e4cd2d427fabeae58f68b5c3702c5d6e8c0a23c3
Patrick Walton
2016-03-15T01:40:54
servo: Merge #9810 - Make border radii clip their contents (from pcwalton:border-radius-clip-contents); r=mbrubeck Needed for browser.html rounded corners. r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 5b28a416eb567fb25b8ffa4bdf5aeb6eca5c72b1
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 34c78080f..5ecde93bf 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -762,9 +762,7 @@ pub struct BaseDisplayItem { impl BaseDisplayItem { #[inline(always)] - pub fn new(bounds: &Rect<Au>, - metadata: Disp...
2
9
7
1a7e27aaf40949882ba17a638594ed8cffe24af0
Bobby Holley
2016-03-14T21:33:53
servo: Merge #9976 - Remove lifetimes from Style/Layout traits (from bholley:remove_trait_lifetimes); r=SimonSapin Right now, there's a huge amount of complexity in T{Node,Element,Document} and friends because of the lifetime parameter. Before I started generalizing this code for use by Gecko, these wrappers were pla...
diff --git a/layout/construct.rs b/layout/construct.rs index 39bdbfa50..3f91bdad3 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -209,8 +209,8 @@ impl InlineFragmentsAccumulator { } } - fn from_inline_node<'ln, N>(node: &N) -> InlineFragmentsAccumulator - where N: ThreadSafe...
14
138
157
b76550df485de55c91054f48a04f09aa51a63d7d
Patrick Walton
2016-03-14T18:48:05
servo: Merge #9851 - Implement support for overscrolling on the Mac (from pcwalton:overscroll); r=glennw Requires tomaka/glutin#734, servo/webrender_traits#14, and servo/webrender#217. r? whoever (waiting on the landing of the above) Source-Repo: https://github.com/servo/servo Source-Revision: 881d6b4220f2391a22d4ea...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 793c72a5c..1a64c4bb8 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -53,7 +53,7 @@ use util::geometry::{PagePx, ScreenPx, ViewportPx}; use util::opts; use util::print_tree::PrintTree; use webrender; -use webrender_tra...
3
99
18
68b29d2c29e08d418b954915954b77face9d7e9d
Matt Brubeck
2016-03-11T23:30:17
servo: Merge #9964 - Compute damage even when incremental layout is disabled (from mbrubeck:incremental-damage); r=pcwalton This fixes traversals that use the damage flags to decide which nodes to process, such as `resolve_generated_content`, which was broken in non-incremental mode. r? @pcwalton Source-Repo: https:/...
diff --git a/layout/layout_thread.rs b/layout/layout_thread.rs index 5c6afdbcf..e31d9f236 100644 --- a/layout/layout_thread.rs +++ b/layout/layout_thread.rs @@ -1302,9 +1302,11 @@ impl LayoutThread { self.profiler_metadata(), self.time_profiler_chan.clone(), ...
1
5
3
6fc5eb839cfa467874bfc45b0e9529ec14cff60c
Matt Brubeck
2016-03-11T21:12:10
servo: Merge #9969 - Don't re-resolve already-resolved generated content (from mbrubeck:quotes-036); r=pcwalton This fixes #7846, a failure in the "quotes-036.htm" test. Servo lays out this test correctly in its initial layout, but then messes it up in any relayout (whether it's an incremental or full layout). The pr...
diff --git a/layout/fragment.rs b/layout/fragment.rs index db3a42a06..ef7d3008e 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -256,6 +256,8 @@ fn clamp_size(size: Au, pub enum GeneratedContentInfo { ListItem, ContentItem(ContentItem), + /// Placeholder for elements with generated content tha...
4
16
8
293cb7f0dc46968283636e16f324d1a17a12d108
Saurav Sachidanand
2016-03-11T19:49:04
servo: Merge #9967 - Convert directly from DOMString to Vec<u8> (from saurvs:master); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 00ab2e9f9e5457375c38bbc349ae26db92fae578
diff --git a/script/dom/blob.rs b/script/dom/blob.rs index 7e8f350b8..dc24cbb01 100644 --- a/script/dom/blob.rs +++ b/script/dom/blob.rs @@ -124,14 +124,12 @@ impl Blob { blobPropertyBag: &BlobBinding::BlobPropertyBag) -> Fallible<Root<Blob>> { // TODO: accept ...
1
1
3
ba2927e0ae010777ee27f14f590e90253678302c
Matt Brubeck
2016-03-11T17:49:43
servo: Merge #9961 - Fix work list order after split_line_at_last_known_good_position (from mbrubeck:split-line-work-list); r=pcwalton This fixes a bug in line splitting caused by the following actions when `LineBreaker::split_line_at_last_known_good_position` is called: 1. Push some number of previous fragments onto...
diff --git a/layout/inline.rs b/layout/inline.rs index 1212f8a3c..90f289355 100644 --- a/layout/inline.rs +++ b/layout/inline.rs @@ -592,12 +592,7 @@ impl LineBreaker { // known good split point. if !fragment.white_space().allow_wrap() { debug!("LineBreaker: fragment can't split; falling ...
1
14
16
4fd9db4f4402d5509f133ff6b09489d9e8c029bd
Martin Robinson
2016-03-11T05:52:29
servo: Merge #9962 - Simplify the display list slightly (from mrobinson:display-list-simplification); r=pcwalton Now that WebRender uses an Iframe display item, we do not need the Noop item for the non-WebRender path. We can simply reuse the Iframe display item. Also remove the layer_id member from the LayeredItem str...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 516fd5cba..34c78080f 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -744,7 +744,6 @@ pub enum DisplayItem { LineClass(Box<LineDisplayItem>), BoxShadowClass(Box<BoxShadowDisplayItem>), LayeredItemClass(Box<LayeredI...
3
14
29
c8b8baadb27b3b5665bf184cff2881296ba9f31b
Rebecca
2016-03-11T04:36:24
servo: Merge #9930 - Remove activatable element filter within HTMLElement#click() (from rebstar6:htmlclick); r=jdm Address https://github.com/servo/servo/issues/6542 Ensure that click() calls are not limited to activatable elements. Also makes the isTrusted attribute false when synthetic click activation are called f...
diff --git a/script/dom/activation.rs b/script/dom/activation.rs index 6fd1882c5..9fd94ae66 100644 --- a/script/dom/activation.rs +++ b/script/dom/activation.rs @@ -29,55 +29,70 @@ pub trait Activatable { // https://html.spec.whatwg.org/multipage/#implicit-submission fn implicit_submission(&self, ctrlKey: b...
6
91
60
16c29823d2f9822e7b3cb60c59bd129c565547db
Ms2ger
2016-03-11T02:57:19
servo: Merge #9951 - Use a match rather than unwrap() in main_fetch (from Ms2ger:fetch-unwrap); r=ecoal95 Source-Repo: https://github.com/servo/servo Source-Revision: 20992c9df9463b9d5426b1eb4b00381fd2cf35c5
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index b4620aec0..481da0310 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -138,51 +138,51 @@ fn main_fetch(request: Rc<Request>, cors_flag: bool, recursive_flag: bool) -> Re // this step is obsoleted by fetch_async // Step 9 - let ...
1
35
35
7a5302f5f4fe690ec207bf5c9b2074b3e8e88ed2
Prashant Gupta
2016-03-10T21:23:59
servo: Merge #9781 - Allow user to choose between GL and ES2 (from jdm:refactor_gle); r=glennw Rebase of #8869. Requires https://github.com/servo/rust-layers/pull/232. Source-Repo: https://github.com/servo/servo Source-Revision: f3a871ec3ded9efe5dfc07f8a3a39ddd6fb05856
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index cf420f63d..04129feb2 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -20,7 +20,7 @@ dependencies = [ "glutin_app 0.0.1", "image 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "ipc-channel 0.2.1 (git+https://github.com/servo/ipc-channe...
2
31
10
66bde329a2ab1765a84afc6d2d5143a649285474
Connor Imes
2016-03-10T17:39:23
servo: Merge #9926 - Update heartbeats and energymon profiler dependencies (from connorimes:update-em-interface-hbs-crates); r=asajeffrey Heartbeats now on crates.io. Updates to energymon interface for energy profiling. Profiling script for Android. Source-Repo: https://github.com/servo/servo Source-Revision: 396812b...
diff --git a/profile/Cargo.toml b/profile/Cargo.toml index 9df1e76c5..fcca1ce2b 100644 --- a/profile/Cargo.toml +++ b/profile/Cargo.toml @@ -17,13 +17,11 @@ path = "../plugins" [dependencies.util] path = "../util" -[dependencies.hbs-pow] -git = "https://github.com/libheartbeats/heartbeats-simple-rust.git" - [depen...
3
47
24
20449bf28131aae2a4d1a5e7612bff876266673e
Olaf Buddenhagen
2016-03-10T16:12:20
servo: Merge #9948 - Update ipc-channel for another fix in large transfers (from antrik:update-ipc_channel-3); r=metajack This pulls in 78c1be46ccc199d00d96e5dc225e8b130c5a565a , which might help with some intermittent failures. Source-Repo: https://github.com/servo/servo Source-Revision: b2892e6321599db448be147d013a...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index b89e19a90..a81eb03ed 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -935,7 +935,7 @@ dependencies = [ [[package]] name = "ipc-channel" version = "0.2.1" -source = "git+https://github.com/servo/ipc-channel#e6d0164573737927fd8f0754066c2e959a7bf68b" +sourc...
1
1
1
f94fb609f43b0584d814aae25fa9982e7ae7c3e1
Nikki
2016-03-10T03:29:07
servo: Merge #9907 - Add Tests For Asynchronous Fetch Calls With Filtered Responses (from nikkisquared:async_tests); r=jdm I've added two tests using async_fetch intended to create filtered responses. I caught and fixed a bug where waiting for response.body to be completed would never pass for Opaque or OpaqueRedirect...
diff --git a/net_traits/response.rs b/net_traits/response.rs index b8167f41d..9e6cedd27 100644 --- a/net_traits/response.rs +++ b/net_traits/response.rs @@ -133,7 +133,14 @@ impl Response { } pub fn wait_until_done(&self) { - while !self.body.lock().unwrap().is_done() && !self.is_network_error() { + ...
1
8
1
53257c49c05df21890062206ee1d1bf57dd3d2f7
Yoav Alon
2016-03-09T23:14:33
servo: Merge #9946 - Added compiler lint ban on DOMRefCell (from yoava333:master); r=KiChjang this resolves https://github.com/servo/servo/issues/9924 Source-Repo: https://github.com/servo/servo Source-Revision: d23b7481d60f52f9e2fa72b6cd3de7eda05c2419
diff --git a/plugins/lints/ban.rs b/plugins/lints/ban.rs index 02037a5d7..0e1ebc947 100644 --- a/plugins/lints/ban.rs +++ b/plugins/lints/ban.rs @@ -37,5 +37,11 @@ impl EarlyLintPass for BanPass { .is_some() { cx.span_lint(BANNED_TYPE, ty.span, "Banned type Cell<JSVal> detected. Use MutHeap<JS...
2
7
0
cbbcdcd9fa26be1f39e29e20a17c5ad00cccbc40
Ms2ger
2016-03-09T15:21:30
servo: Merge #9940 - Fix warnings in the fetch code (from Ms2ger:fetch-warnings); r=asajeffrey Source-Repo: https://github.com/servo/servo Source-Revision: 0359fb8ed8c2bd509a69335822ef7c8feb081994
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index 6cd19bef1..b4620aec0 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -3,30 +3,24 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use fetch::cors_cache::{BasicCORSCache, CORSCache, CacheRequestDetails}; -use http_loader:...
2
16
41
5f89991b3c972f5fc3627566728775f962ce6632
Ulf Nilsson
2016-03-09T11:29:58
servo: Merge #9934 - Update jpeg-decoder (from kaksmet:update-jpeg-decoder); r=metajack This brings performance improvements and fixes a bug which was causing some progressive JPEGs to fail decoding. Source-Repo: https://github.com/servo/servo Source-Revision: 4f08caa5a686c5ccf078c84cdf2fe459a3784f37
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index f33a77c35..e620303eb 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -900,7 +900,7 @@ dependencies = [ "enum_primitive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "gif 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ...
1
2
2
108da6db35111e8139e24e92d881ff766ad36c30
Glenn Watson
2016-03-09T10:37:01
servo: Merge #9906 - Update gleam 0.2.6 -> 0.2.8 (from glennw:bump-gleam); r=ecoal95 Source-Repo: https://github.com/servo/servo Source-Revision: 4d2040b31b6d18daacce73a582a676cacc3f941d
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index c83166faa..f33a77c35 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -16,7 +16,7 @@ dependencies = [ "gaol 0.0.1 (git+https://github.com/servo/gaol)", "gfx 0.0.1", "gfx_tests 0.0.1", - "gleam 0.2.6 (registry+https://github.com/rust-lang/crates.io-inde...
1
12
12
075d2240ada8fb69b483bb7dd90e4f876623ab1b
Bob
2016-03-09T09:43:52
servo: Merge #9780 - correctly send secure cookies after hsts url match (from bobthekingofegypt:github_hsts_bug); r=jdm Fixes #8100, where sites in the hsts list were not recieving secure cookies if the site was originally loading using a plain http url. Source-Repo: https://github.com/servo/servo Source-Revision: 16...
diff --git a/net/http_loader.rs b/net/http_loader.rs index 1f044885a..e0227a063 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -513,14 +513,14 @@ fn request_must_be_secured(url: &Url, hsts_list: &Arc<RwLock<HSTSList>>) -> bool } pub fn modify_request_headers(headers: &mut Headers, - ...
1
27
32
b6b6809c1b49441e9806ea6a502b841767e51c19
Ms2ger
2016-03-08T16:55:57
servo: Merge #9923 - Make Response::new() an inherent method (from Ms2ger:response-new); r=jdm There is no real reason to put this in an extension trait. Source-Repo: https://github.com/servo/servo Source-Revision: ebe7d9ebfb28d484ff0cce4e70cb8809f5867af5
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index 7ef663d52..6cd19bef1 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -3,7 +3,6 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use fetch::cors_cache::{BasicCORSCache, CORSCache, CacheRequestDetails}; -use fetch::respons...
4
16
38
a5f2d65653cb3b72ed743a72ac1fd56ea83d4f0c
Anthony Ramine
2016-03-08T14:33:24
servo: Merge #9886 - Make Cargo share more things between servo and ports (from nox:unstable-feature); r=SimonSapin This should enable Cargo to reuse more build artifacts between servo and geckolib. Source-Repo: https://github.com/servo/servo Source-Revision: 5fbed88248069f1943399d28885249ee0adc89b2
diff --git a/style/Cargo.toml b/style/Cargo.toml index be060d0ca..a0b1a83f9 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -34,7 +34,7 @@ matches = "0.1" num = "0.1.24" rustc-serialize = "0.3" selectors = {version = "0.5", features = ["heap_size", "unstable"]} -serde = "0.6" +serde = {version = "0.6", featu...
1
1
1
dc2768b1de5b2ddc4a7dcdbe0964fec218a08da6
Suvish Varghese Thoovamalayil
2016-03-08T11:55:16
servo: Merge #9920 - Remove unused cell_extras feature gates. Fixes #9912 (from vishy1618:issue_9912); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: a96b2360a9e6cfed26c101704fd4c804ed1fcfd3
diff --git a/layout/lib.rs b/layout/lib.rs index 2891e1cda..174125c3f 100644 --- a/layout/lib.rs +++ b/layout/lib.rs @@ -4,7 +4,6 @@ #![feature(as_unsafe_cell)] #![feature(box_syntax)] -#![feature(cell_extras)] #![feature(custom_derive)] #![feature(mpsc_select)] #![feature(nonzero)] diff --git a/script/lib.rs b/...
3
0
3
e731e997e194a71decf0708fd55a444721ff57ea
Anthony Ramine
2016-03-08T09:56:50
servo: Merge #9898 - Properly use "pub extern crate" (from nox:fix-private-in-public); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 60d97c31129947d92258332e64a1896d2d988e2e
diff --git a/servo/lib.rs b/servo/lib.rs index 67b6875da..6a18419d5 100644 --- a/servo/lib.rs +++ b/servo/lib.rs @@ -20,30 +20,28 @@ #[cfg(not(target_os = "windows"))] extern crate gaol; #[macro_use] -extern crate util as _util; - -mod export { - extern crate canvas; - extern crate canvas_traits; - extern c...
1
23
45
f30bdca972cbae0571e0243449e15503e2a91058
Simon Sapin
2016-03-08T03:22:45
servo: Merge #9903 - Replace usage of deprecated std::cell::Ref::filter_map (from servo:ref-filter-map); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: b6e469cbde0e58bab1b99e8c5ba356be2fc61843
diff --git a/script/Cargo.toml b/script/Cargo.toml index 8f6cc0703..8b5b4558a 100644 --- a/script/Cargo.toml +++ b/script/Cargo.toml @@ -82,6 +82,7 @@ num = "0.1.24" rand = "0.3" phf = "0.7.13" phf_macros = "0.7.13" +ref_filter_map = "1.0" ref_slice = "0.1.0" rustc-serialize = "0.3" selectors = {version = "0.5", ...
4
11
2
49ad6a23ef8f43af74a87e17f15619c64f6d1dec
Arpad Borsos
2016-03-08T01:02:43
servo: Merge #9896 - rename deprecated utf16_units to encode_utf16 (from Swatinem:rename_utf16); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: e8aeebbac5584e19e7ee23f187cdd6cf0da5ecb9
diff --git a/script/dom/characterdata.rs b/script/dom/characterdata.rs index d9798f76a..bffd52831 100644 --- a/script/dom/characterdata.rs +++ b/script/dom/characterdata.rs @@ -78,7 +78,7 @@ impl CharacterDataMethods for CharacterData { // https://dom.spec.whatwg.org/#dom-characterdata-data fn SetData(&self, ...
5
6
7
1ed8ce3c874d36fcd684b4250b82aba893b61293
Nikki
2016-03-07T23:15:25
servo: Merge #9850 - Set response.body Asynchronously In Fetch (from nikkisquared:2_async_2_furious); r=jdm Following having finished making Fetch asynchronous, response.body should be set asynchronously, since it's the major goal of calling Fetch. So far, I've made the body wrapped in Arc<Mutex<>>, and I've wrapped a...
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index a75022800..7ef663d52 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -5,7 +5,7 @@ use fetch::cors_cache::{BasicCORSCache, CORSCache, CacheRequestDetails}; use fetch::response::ResponseMethods; use http_loader::{NetworkHttpRequestFactory, ...
4
101
62
408504be5dd0f26b34771a133b16c724edb0bbe2
Ms2ger
2016-03-07T16:00:30
servo: Merge #9892 - ImageCache cleanup (from Ms2ger:imagecache); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 1330e7e58f3da6a6fa855d9d44350873ea38c2b7
diff --git a/net/image_cache_thread.rs b/net/image_cache_thread.rs index 22797bda3..07868c4a4 100644 --- a/net/image_cache_thread.rs +++ b/net/image_cache_thread.rs @@ -3,7 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use immeta::load_from_buf; -use ipc_channel::ipc::{self, IpcSender}; +us...
1
63
79
fa3abbf88e3b933acf0c910240630b916c0d5faa
Anthony Ramine
2016-03-06T11:03:42
servo: Merge #9888 - Update to Rust 2016-03-05 (from servo:rustup); r=Manishearth Blocked by https://github.com/Manishearth/rust-tenacious/pull/14. Source-Repo: https://github.com/servo/servo Source-Revision: 743e0c9c878a78da873fed4edaa9c8284b2fd12d
diff --git a/net/fetch/cors_cache.rs b/net/fetch/cors_cache.rs index c1f55dce2..63c62f37c 100644 --- a/net/fetch/cors_cache.rs +++ b/net/fetch/cors_cache.rs @@ -29,7 +29,7 @@ pub enum HeaderOrMethod { impl HeaderOrMethod { fn match_header(&self, header_name: &str) -> bool { match *self { - Hea...
9
41
46
c319b6e23278df1451539eeb87041bd52684928f
Ravi Shankar
2016-03-05T16:02:46
servo: Merge #9800 - fixed the last failing test in dom/nodes/attributes.html (from Wafflespeanut:node_attrs); r=nox r? @nox Source-Repo: https://github.com/servo/servo Source-Revision: 64fb09ca2d5d077b4d3e0815ee3e094f67b7cf4e
diff --git a/script/dom/namednodemap.rs b/script/dom/namednodemap.rs index 94e21b65b..50a2894b8 100644 --- a/script/dom/namednodemap.rs +++ b/script/dom/namednodemap.rs @@ -13,6 +13,7 @@ use dom::bindings::reflector::{Reflector, reflect_dom_object}; use dom::bindings::xmlname::namespace_from_domstring; use dom::eleme...
1
14
3
3809e8c28dd2a58cfb6e8f89f041ca21184427ad
Anthony Ramine
2016-03-05T14:58:25
servo: Merge #9885 - Bump regex and regex-syntax (from nox:bump-regex); r=ecoal95 Source-Repo: https://github.com/servo/servo Source-Revision: 1edabe1673789aace16ae0477dbd2328fbf87e2e
diff --git a/profile/Cargo.toml b/profile/Cargo.toml index d44d3635f..9df1e76c5 100644 --- a/profile/Cargo.toml +++ b/profile/Cargo.toml @@ -26,7 +26,7 @@ git = "https://github.com/servo/ipc-channel" [dependencies] log = "0.3" libc = "0.2" -regex = "0.1.14" +regex = "0.1.55" time = "0.1.12" [target.x86_64-apple-...
3
11
11
97bf90939ae89ac612d8b1e138adaac6b7ef81d7
Glenn Watson
2016-03-05T05:36:06
servo: Merge #9883 - Update ipc-channel (from glennw:update-ipc-channel); r=frewsxcv Fixes #9882. Source-Repo: https://github.com/servo/servo Source-Revision: 6e3e41ef1a9f6df44f2b8c9012000dca73741d8d
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index bc65fdff7..09422b9e0 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -935,7 +935,7 @@ dependencies = [ [[package]] name = "ipc-channel" version = "0.2.0" -source = "git+https://github.com/servo/ipc-channel#8bd8d3ebcebafb12c3ff0e25af543613941a70cd" +sourc...
1
1
1
9968f499a5dcb8fa53de919992f86c068e8402d2
Jack Moffitt
2016-03-04T23:03:18
servo: Merge #9873 - Adds browserhtml dependency and mach run --browserhtml (from metajack:mach-run-bhtml); r=ecoal95 This makes the experience for testing browserhtml super easy. Source-Repo: https://github.com/servo/servo Source-Revision: 69f52d0f213aeec0d498798dfdaa15f8459a9a79
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 311ab0136..bc65fdff7 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -4,6 +4,7 @@ version = "0.0.1" dependencies = [ "android_glue 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "bitflags 0.3.3 (registry+https://github.com/rust-lang/cr...
2
10
0
482339e235afae3b5c5ffe1c5d2948687d3d10f9
Bobby Holley
2016-03-04T20:18:35
servo: Merge #9852 - Stylo uplifts 3 (from bholley:stylo_uplifts_3); r=bholley Source-Repo: https://github.com/servo/servo Source-Revision: 49e9594fb97d396f909cf367f70dec6c1ac32fc3
diff --git a/style/selector_impl.rs b/style/selector_impl.rs index 1aa2469b6..77aa23ca8 100644 --- a/style/selector_impl.rs +++ b/style/selector_impl.rs @@ -19,7 +19,7 @@ pub trait SelectorImplExt : SelectorImpl + Sized { fn get_user_or_user_agent_stylesheets() -> &'static [Stylesheet<Self>]; - fn get_quirk...
2
6
4
923a88cdcf9daa9c96ffdd4cf07572cf3f7e4acf
Simon Sapin
2016-03-04T19:23:33
servo: Merge #9875 - Hide overflow of <input> (from servo:overflow-clip-box); r=mbrubeck Fix #9477 r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: b46d2e2737c174d79681e73f3dbf881624373268
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index b93c3c56c..714110092 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -44,6 +44,7 @@ use std::default::Default; use std::sync::Arc; use std::{cmp, f32}; use style::computed_values::filter::Filter; +u...
2
59
15
14f660eeca0cd6e4762b0a7a09541579ae158d86
Jack Moffitt
2016-03-04T03:06:12
servo: Merge #9866 - Unrevert the fix for hit testing through shadows (from metajack:refix-shadow-hit-test); r=pcwalton This was originally #9428 but got accidentally reverted during rebase in Fixes #9865. Source-Repo: https://github.com/servo/servo Source-Revision: 12466b87062d8a20bd134bdd5824d46c5216ee48
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index ddd98a07d..516fd5cba 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -1314,23 +1314,30 @@ impl DisplayItem { return; } - if let DisplayItem::BorderClass(ref border) = *self { - // If the ...
1
19
12
5e13db73c83ef0ae19bba679851fc06ce94e3dca
UK992
2016-03-04T02:11:08
servo: Merge #9863 - Fix Windows build and add AppVeyor support (from larsbergstrom:appveyor2); r=edunham Proof of success: https://ci.appveyor.com/project/larsbergstrom/servo/build/1.0.15 Fixes #9767 Source-Repo: https://github.com/servo/servo Source-Revision: 08b9fe0c00fc2be24f1c7ca877011f27a2a19599
diff --git a/profile/lib.rs b/profile/lib.rs index fa93f883b..b6fa7e57a 100644 --- a/profile/lib.rs +++ b/profile/lib.rs @@ -8,6 +8,7 @@ #![feature(plugin)] #![plugin(plugins)] +#[cfg(not(target_os = "windows"))] extern crate alloc_jemalloc; extern crate hbs_pow; extern crate ipc_channel; diff --git a/profile/me...
2
7
0
d9d0dc8c59ecbf6e6dcd55b9785ce3cd86d56fbc
Patrick Walton
2016-03-04T01:15:45
servo: Merge #9861 - Flatten the WebRender API to allow us to use shared memory to transfer display lists (from pcwalton:superflat); r=glennw Improves performance significantly. Requires servo/webrender_traits#15 and servo/webrender#222. r? @glennw Source-Repo: https://github.com/servo/servo Source-Revision: 1c63bf...
diff --git a/layout/layout_thread.rs b/layout/layout_thread.rs index f152fe6c6..a0ee55ece 100644 --- a/layout/layout_thread.rs +++ b/layout/layout_thread.rs @@ -83,7 +83,7 @@ use util::thread; use util::thread_state; use util::workqueue::WorkQueue; use webrender_helpers::WebRenderDisplayListConverter; -use webrender...
3
58
37
bfb4f8332c86af794f612c0d737660b1c6d2164a
Glenn Watson
2016-03-04T00:20:50
servo: Merge #9858 - Fix animation smoothness when using requestAnimationFrame (from glennw:anim-smoothness); r=pcwalton Previously, the flow for ticking animations was: Compositor -> Constellation -> Layout -> Script However, this means that the compositor <-> layout messages can thrash, meaning layout thread is ve...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 8921f7798..793c72a5c 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -2,6 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +...
5
37
15
9263c1b67ee133abc8adda36037efe0fe3b56f1a
Jack Moffitt
2016-03-03T22:30:30
servo: Merge #9832 - Suppress reflows before RefreshTick or FirstLoad (from metajack:suppress-reflows); r=mbrubeck This fixes a bug where partially loaded content is displayed to the user before it should be, usually before stylesheets have loaded. This commit supresses reflows until either FirstLoad or RefreshTick, w...
diff --git a/layout/layout_thread.rs b/layout/layout_thread.rs index a361e42fb..1a8bdfb4a 100644 --- a/layout/layout_thread.rs +++ b/layout/layout_thread.rs @@ -22,7 +22,7 @@ use euclid::size::Size2D; use flow::{self, Flow, ImmutableFlowUtils, MutableFlowUtils, MutableOwnedFlowUtils}; use flow_ref::{self, FlowRef}; ...
6
91
56
c5427dd25e73ca91ab1680797dc84201df6cd2b5
Corey Farwell
2016-03-03T20:07:14
servo: Merge #9857 - Indicate components should not be published to crates.io (from servo:publish-false); r=ecoal95 http://doc.crates.io/manifest.html#the-publish--field-optional Source-Repo: https://github.com/servo/servo Source-Revision: 633f0414aaa177e439528f0fa848a41bc0fc094a
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index c67c8ea87..f81900768 100644 --- a/canvas/Cargo.toml +++ b/canvas/Cargo.toml @@ -2,6 +2,7 @@ name = "canvas" version = "0.0.1" authors = ["The Servo Project Developers"] +publish = false [lib] name = "canvas" diff --git a/canvas_traits/Cargo.toml b/canvas_t...
23
23
0
e44a0efaeb1bd24c8d400847946f9b7e4af7168f
Emilio Cobos Álvarez
2016-03-03T17:25:35
servo: Merge #9715 - script: Fix MouseOver handling (from emilio:mousemove); r=mbrubeck Now we only query for the topmost node, and apply the hover state to all of the parent elements. This fixes things like #9705, where the hover state was applied only to the children. This also makes us more conformant with other ...
diff --git a/layout/query.rs b/layout/query.rs index 348a3ad55..df4530110 100644 --- a/layout/query.rs +++ b/layout/query.rs @@ -16,7 +16,7 @@ use layout_thread::LayoutThreadData; use msg::constellation_msg::ConstellationChan; use opaque_node::OpaqueNodeMethods; use script::layout_interface::{ContentBoxResponse, Con...
5
136
139
a3a9bba1347e69ac863f8b2bbfa6933e8ada5f68
Glenn Watson
2016-03-03T01:30:27
servo: Merge #9853 - Update webrender. Fixes #9846 (from glennw:update-wr); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: c92ad616a38434978f30c2bf17a9fabb123efc68
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 2a84c459f..969aa1334 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2254,7 +2254,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.1.0" -source = "git+https://github.com/servo/webrender#f8bb08eb5cd94d14572208676a7d927f707ace8c" +source ...
1
1
1
ea57dd279fb11f22f81c3e94f9547f188d0eafd7
Glenn Watson
2016-03-02T19:05:50
servo: Merge #9841 - Fix unexpected overflow with overflow: hidden set (from glennw:extra-overflow); r=pcwalton Fixes #9719. Source-Repo: https://github.com/servo/servo Source-Revision: 3ff5082798825c6b5925ba4ef3553eb653700695
diff --git a/layout/flow.rs b/layout/flow.rs index 480b86898..cf8b1be45 100644 --- a/layout/flow.rs +++ b/layout/flow.rs @@ -47,7 +47,7 @@ use std::slice::IterMut; use std::sync::Arc; use std::sync::atomic::Ordering; use std::{fmt, mem, raw}; -use style::computed_values::{clear, display, empty_cells, float, position...
1
33
1
9fa3fe5e28fdd47cec95ef45d4568aab50339156
Anthony Ramine
2016-03-02T15:54:38
servo: Merge #9837 - Use a BTreeMap for Document::animation_frame_list (fixes #9834) (from nox:deterministic-raf); r=mbrubeck The callbacks must stay ordered. Source-Repo: https://github.com/servo/servo Source-Revision: 9ceda7de509d3dff01a766077011207f94ffadfd
diff --git a/script/dom/bindings/trace.rs b/script/dom/bindings/trace.rs index a318ca00c..7bfb6978e 100644 --- a/script/dom/bindings/trace.rs +++ b/script/dom/bindings/trace.rs @@ -70,7 +70,7 @@ use serde::{Deserialize, Serialize}; use smallvec::SmallVec; use std::boxed::FnBox; use std::cell::{Cell, UnsafeCell}; -us...
2
17
10
66ca2f06681c2de1ac0fda1ec29176354a55d15a
Ms2ger
2016-03-02T10:50:19
servo: Merge #9836 - Remove a stray println in table layout (from Ms2ger:print); r=nox It was introduced in 4dc9d8b1c5a4e68eee09af547ae7069455c9abe9. Source-Repo: https://github.com/servo/servo Source-Revision: de7c67575e5cfe71578d226026484da5c6de8707
diff --git a/layout/table_row.rs b/layout/table_row.rs index f0e326414..7fc8381f7 100644 --- a/layout/table_row.rs +++ b/layout/table_row.rs @@ -828,7 +828,6 @@ fn perform_inline_direction_border_collapse_for_row( child_table_cell: &mut TableCellFlow, iterator: &mut Peekable<Enumerate<MutFlowListItera...
1
0
1
e88422468d6fd505c73fb207003df90b206ede54
Ulf Nilsson
2016-03-02T08:47:50
servo: Merge #9790 - Use piston_image instead of stb_image for decoding JPEGs (from kaksmet:piston-jpeg); r=metajack The main reason stb_image was used for decoding JPEGs was the lack of progressive support in piston_image. With version 0.7, piston_image gained support for decoding progressive JPEGs through use of the...
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index abbd3f430..a82e8c7fb 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -91,7 +91,7 @@ git = "https://github.com/servo/webrender" app_units = {version = "0.2.1", features = ["plugins"]} euclid = {version = "0.6.2", features = ["plugin...
8
36
61
4037043a6d5638151ea9e660595fb89ed10c1c7b
Glenn Watson
2016-03-01T23:56:29
servo: Merge #9827 - Update webrender_traits, webrender, num (from glennw:update-wr); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: 70941e3806786d4bc4da3165e234e70249316de0
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 4e1725446..0289ccb48 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -121,7 +121,7 @@ version = "0.4.0" source = "git+https://github.com/TyOverby/bincode#590a862b4368910a5285ca8e970163f21a752b8d" dependencies = [ "byteorder 0.4.2 (registry+https://githu...
1
20
20
09f573e29f56b171733e25f944218a904df84b1d
Matt Brubeck
2016-03-01T22:08:12
servo: Merge #9826 - Table border-collapse fixes (from mbrubeck:table-row-iter); r=pcwalton Two related fixes for border-collapse: * Fix border collapsing across table-row-group flows This fixes the border-end calculation for table rows whose borders are collapsed with rows in different rowgroups. The border coll...
diff --git a/layout/table.rs b/layout/table.rs index 07b606733..7f0a4b09a 100644 --- a/layout/table.rs +++ b/layout/table.rs @@ -12,8 +12,9 @@ use block::{ISizeConstraintInput, ISizeConstraintSolution}; use context::LayoutContext; use display_list_builder::{BlockFlowDisplayListBuilding, BorderPaintingMode}; use eucl...
3
113
142
be74fd1579f0c4316be70646658d3ac345917bec
Nikki
2016-03-01T20:19:29
servo: Merge #9753 - Make Fetch Protocol Asynchronous (from nikkisquared:async_fetch); r=jdm I'm working on making it possible to run Fetch Asynchronously, as required for some steps, such as Main Fetch. It looks like somebody has already laid some groundwork for that, with a AsyncFetchListener trait and two async fet...
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index f09a7019f..a75022800 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -154,7 +154,7 @@ fn main_fetch(request: Rc<Request>, cors_flag: bool, recursive_flag: bool) -> Re false }; - if (!cors_flag && same_origin) |...
4
204
164
093348d3c84d5a2330f02fbed7c5b0c04c048055
Guillaume Gomez
2016-03-01T13:40:45
servo: Merge #9792 - Remove util::vec::Comparator (from GuillaumeGomez:remove_comparator); r=nox r? @nox Fixes #9696 Source-Repo: https://github.com/servo/servo Source-Revision: 40c52d55e2037a8dc154718f43260bd347739260
diff --git a/gfx/text/glyph.rs b/gfx/text/glyph.rs index d480ffeb8..9c41bd23f 100644 --- a/gfx/text/glyph.rs +++ b/gfx/text/glyph.rs @@ -10,7 +10,6 @@ use simd::u32x4; use std::cmp::{Ordering, PartialOrd}; use std::vec::Vec; use std::{fmt, mem, u16}; -use util::vec::*; /// GlyphEntry is a port of Gecko's Compress...
3
11
73
b838365aac438dae18d35c04b3fc6620439e5ea9
Olaf Buddenhagen
2016-03-01T02:10:26
servo: Merge #9815 - Update ipc-channel again for working deadlock fix (from antrik:update-ipc_channel-2); r=KiChjang Pull in ce7c296a3717b054060889b780f8638eb66ce970 , fixing concurrent large transfers on Linux. Source-Repo: https://github.com/servo/servo Source-Revision: cd274a4a11ade6b0f17b96eb425472238698e12b
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 3c8cebe45..4e1725446 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -928,7 +928,7 @@ dependencies = [ [[package]] name = "ipc-channel" version = "0.2.0" -source = "git+https://github.com/servo/ipc-channel#1a1f4c976b62db1265ecd036d951aa8c9b402a9d" +sourc...
1
1
1
9c9f7b44a21bd2c405d92bf3b574bd990463aedf
Glenn Watson
2016-03-01T01:16:01
servo: Merge #9813 - With WebRender, only send resize events when window size is valid (from glennw:iframe-sizing); r=pcwalton Fixes WR 112. Source-Repo: https://github.com/servo/servo Source-Revision: 4035f7ae2c4925675263f514884ec702ac3d5460
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 1e9f29b01..8921f7798 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -353,10 +353,11 @@ impl webrender_traits::RenderNotifier for RenderNotifier { pipeline_id: webrender_traits::PipelineId, ...
1
4
3
62e8a25af5db20aa74099c0696dc12cae484ff42
Glenn Watson
2016-03-01T00:18:26
servo: Merge #9814 - Update gleam to get UBO bindings (from glennw:update-gleam); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: eba9f4b629a0705f4889628d35ae1416dc068018
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 421dfdc21..3c8cebe45 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -15,7 +15,7 @@ dependencies = [ "gaol 0.0.1 (git+https://github.com/servo/gaol)", "gfx 0.0.1", "gfx_tests 0.0.1", - "gleam 0.2.5 (registry+https://github.com/rust-lang/crates.io-inde...
1
12
12
e6d30d30984b53e2622e11e0cd045764565c26dd
Anthony Ramine
2016-02-29T14:43:11
servo: Merge #9787 - Refactor dispatch_event according to the spec (fixes #9178) (from nox:event-invoke); r=Ms2ger Two new functions invoke and invoke_inner are introduced and some invariants documented. Source-Repo: https://github.com/servo/servo Source-Revision: 7d4276b393fe3df1a04ade010bc345388ac390cd
diff --git a/script/dom/eventdispatcher.rs b/script/dom/eventdispatcher.rs index f80a21765..cef67d2d1 100644 --- a/script/dom/eventdispatcher.rs +++ b/script/dom/eventdispatcher.rs @@ -47,7 +47,9 @@ fn handle_event(window: Option<&Window>, listener: &CompiledEventListener, listener.call_or_handle_event(current_tar...
2
104
68
a4535c9df56d04ea29916f78bfa10220cdd28448
Anthony Ramine
2016-02-28T23:41:28
servo: Merge #9799 - Fix step 14.2 of Range::ExtractContents (from nox:range-extractcontents); r=KiChjang We need the last inclusive ancestor of start node that is not an inclusive ancestor of end node, not the first that is an inclusive ancestor of it. Source-Repo: https://github.com/servo/servo Source-Revision: dfd...
diff --git a/script/dom/range.rs b/script/dom/range.rs index 7044746dd..235a4dbcc 100644 --- a/script/dom/range.rs +++ b/script/dom/range.rs @@ -564,8 +564,9 @@ impl RangeMethods for Range { } else { // Step 14.1-2. let reference_node = start_node.ancestors() - ...
1
3
2
f0f7dc0a3fddbdbf67c7ec5abd9b320e0e3d16cc
Anthony Ramine
2016-02-28T22:48:06
servo: Merge #9797 - Fix step 1 of Range::InsertNode (from nox:range-insertnode); r=KiChjang The method needs to throw when trying to insert start node into range. Source-Repo: https://github.com/servo/servo Source-Revision: b3964a89585539082982160f5f4fb4bd05ddac2f
diff --git a/script/dom/range.rs b/script/dom/range.rs index df3d0d358..7044746dd 100644 --- a/script/dom/range.rs +++ b/script/dom/range.rs @@ -658,6 +658,9 @@ impl RangeMethods for Range { let start_offset = self.StartOffset(); // Step 1. + if &*start_node == node { + return Err(...
1
3
0
95835b293de928d6762831b71609e95047b99d38
Emilio Cobos Álvarez
2016-02-28T18:28:41
servo: Merge #9795 - script: Fix remaining bugs from Range.deleteContents (from emilio:other-range-bugs); r=nox This makes all the `Range.deleteContents` tests pass. I changed some `try!()`s for `unwraps()` because those calls are actually infallible. r? @nox Source-Repo: https://github.com/servo/servo Source-Revis...
diff --git a/script/dom/node.rs b/script/dom/node.rs index c82fbb49e..ec72b6eed 100644 --- a/script/dom/node.rs +++ b/script/dom/node.rs @@ -1051,21 +1051,18 @@ pub struct FollowingNodeIterator { root: Root<Node>, } -impl Iterator for FollowingNodeIterator { - type Item = Root<Node>; - - // https://dom.sp...
2
42
20
d6bc988036dcb9b65fc7250e1ebb452e29e96fb6
Anthony Ramine
2016-02-28T14:51:51
servo: Merge #9793 - Fix step 6 of Range::DeleteContents (from nox:range-deletecontents); r=ecoal95 Source-Repo: https://github.com/servo/servo Source-Revision: be6940db59a2e8bf4fac45911848edbc8cd3dd8d
diff --git a/script/dom/range.rs b/script/dom/range.rs index 6807a7a2d..88fc9ad35 100644 --- a/script/dom/range.rs +++ b/script/dom/range.rs @@ -774,7 +774,7 @@ impl RangeMethods for Range { let mut reference_node = Root::from_ref(start_node); while let Some(parent) = reference_node.Ge...
1
1
1
142e1cc0c4d6724fc003b165fe6ca9a847741c1b
Corey Farwell
2016-02-28T03:55:18
servo: Merge #9789 - Minor constellation refactoring (from frewsxcv:constellation-cleanup); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 39502d6bed76343930b9d6409203e9c2e9ff09fc
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index b7a57f706..32c8170c5 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -471,12 +471,8 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF> // Get an iterator for the current f...
1
10
19
f844e2fba95237f7a7aba968072e8c8289a4fb83
Josh Matthews
2016-02-27T20:12:47
servo: Merge #9784 - Fix some errors in the DOM documentation (from servo:jdm-patch-1); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 5b8041147d81f56c908080c6da36d206bdc3debe
diff --git a/script/dom/mod.rs b/script/dom/mod.rs index 3fdf140a0..3656055fe 100644 --- a/script/dom/mod.rs +++ b/script/dom/mod.rs @@ -186,9 +186,10 @@ //! superclass or `Reflector` member, and other members as appropriate; //! * implementing the //! `dom::bindings::codegen::Bindings::FooBindings::FooMethods` ...
1
3
2
e0eb3ca885aa751f01a6fc3d705f6cac561f01b8
Anthony Ramine
2016-02-27T17:33:25
servo: Merge #9734 - Fix the "get the parent" loop when dispatching event (fixes #6733) (from nox:finish-event-dispatch); r=Ms2ger The DOM specification says: > A document's get the parent algorithm, given an event, returns null > if event's type attribute value is "load" or document does not have > a browsing contex...
diff --git a/script/dom/eventdispatcher.rs b/script/dom/eventdispatcher.rs index 28a269b74..f80a21765 100644 --- a/script/dom/eventdispatcher.rs +++ b/script/dom/eventdispatcher.rs @@ -10,6 +10,7 @@ use dom::bindings::inheritance::Castable; use dom::bindings::js::{JS, Root, RootedReference}; use dom::bindings::reflec...
1
8
0
dfd524dc542340c12ffc262dddfe7a95f1d88ccd
Chandler Abraham
2016-02-27T16:39:46
servo: Merge #9768 - disallow restricted XMLHttpRequest header prefixes (from jdm:add_disallowed_prefixes); r=jdm Rebased from #9376. Source-Repo: https://github.com/servo/servo Source-Revision: 4a7d234510d5a5f6b2b960a84f70a7260e1fc0a9
diff --git a/net/http_loader.rs b/net/http_loader.rs index d1e0bef10..07e1153a4 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -523,7 +523,16 @@ pub fn modify_request_headers(headers: &mut Headers, port: doc_url.port_or_default() }; headers.set(host); - headers.set(UserAgent(user_agen...
2
30
15
837a36ad9b75c7f1c5b98ca0fba24b868d3fe1f0
Keith Yeung
2016-02-27T14:52:22
servo: Merge #9675 - Update fetch attributes to match the new spec (from KiChjang:fetch-attributes); r=jdm This should make fetch match the spec more closely. Source-Repo: https://github.com/servo/servo Source-Revision: 4e244b16dd3c050a8d6b24ee9209caf116462317
diff --git a/net/fetch/cors_cache.rs b/net/fetch/cors_cache.rs index 9f74e184a..c1f55dce2 100644 --- a/net/fetch/cors_cache.rs +++ b/net/fetch/cors_cache.rs @@ -10,11 +10,12 @@ //! with CORSRequest being expanded into FetchRequest (etc) use hyper::method::Method; +use net_traits::request::Origin; use std::ascii::A...
3
193
123
061125195dc81a8d5de20ee7784bdc3cf8abe396
Paul Rouget
2016-02-27T05:01:07
servo: Merge #9762 - cocoa v0.2.2 -> v0.2.4 (from paulrouget:cocoaUpdate); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: e73812c10660163a95f16c60e17dc94de1968cf7
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index aaa2fb4ef..421dfdc21 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -232,7 +232,7 @@ dependencies = [ [[package]] name = "cocoa" -version = "0.2.2" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ ...
1
2
2
78078cda0c0aa79228092a71bc7642d32319538b
Daniel Robertson
2016-02-26T12:05:43
servo: Merge #9747 - Use macro for boilerplate code in webdriver `handle_*` (from danlrobertson:handle_macro); r=Ms2ger Add a macro for the boilerplate code that appears in most of Handler's methods handling a `WebDriverScriptCommand`. There are at least three steps that appear in most `Hande::handle_*` methods that ...
diff --git a/webdriver_server/lib.rs b/webdriver_server/lib.rs index aa1e6ae41..41df57736 100644 --- a/webdriver_server/lib.rs +++ b/webdriver_server/lib.rs @@ -299,6 +299,18 @@ impl Handler { } } + #[inline] + fn frame_script_command(&self, cmd_msg: WebDriverScriptCommand) -> WebDriverResult<()> ...
1
33
68
708841054572f3ba073ca1348a9c46cd810fead4
Sam Gibson
2016-02-26T08:44:06
servo: Merge #9757 - Trigger WebSocket error event (from jdm:websocket-errors-rebase); r=jdm Trigger a WebSocket error after receiving an invalid message from the server. Rebased from #8868. Fixes #7861. Source-Repo: https://github.com/servo/servo Source-Revision: 26b40afe237f97ebd81d537e8ed1201c7c1e4011
diff --git a/net/websocket_loader.rs b/net/websocket_loader.rs index 305a991e9..ab576077c 100644 --- a/net/websocket_loader.rs +++ b/net/websocket_loader.rs @@ -107,7 +107,11 @@ pub fn init(connect: WebSocketCommunicate, connect_data: WebSocketConnectData, c for message in receiver.incoming_messages() { ...
2
17
15
57336c9c7be9f8fa448352f436d8b66f50676998
Jonathan Schuster
2016-02-26T02:11:57
servo: Merge #9717 - Move util::range into its own crate (from schuster:move-range); r=frewsxcv Fixes #9695 Source-Repo: https://github.com/servo/servo Source-Revision: 4300ba221170785652fe7368e2900f9a5a946096
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index dc9388353..bc4b26de2 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -52,6 +52,9 @@ path = "../msg" [dependencies.profile_traits] path = "../profile_traits" +[dependencies.range] +path = "../range" + [dependencies.style] path = "../style" diff --git a/gfx/d...
18
68
23
bf67057c6374b65378389094a9ccf1c6dcabf522
Matt Brubeck
2016-02-25T22:21:46
servo: Merge #9754 - Don't use image metadata for layout when rendering to a file (from mbrubeck:img-metadata); r=jdm Fixes #9550. r? @jdm Source-Repo: https://github.com/servo/servo Source-Revision: 21f0e639794327040184f62b8afd3f1ce339e60b
diff --git a/layout/context.rs b/layout/context.rs index 953c98797..49dc10cb4 100644 --- a/layout/context.rs +++ b/layout/context.rs @@ -178,47 +178,27 @@ impl<'a> LayoutContext<'a> { pub fn get_or_request_image_or_meta(&self, url: Url, use_placeholder: UsePlaceholder) -> Option<...
1
16
36
7ee2a9d629172093efd916c9dc6a5f7096752d05
Jonathan Giddy
2016-02-25T21:27:44
servo: Merge #9631 - Validate MIME pattern checking (from jongiddy:remove-extra-mask-byte); r=jdm The MIME detector for a HTML file contains an additional byte in the mask. While it doesn't hurt, it is not used in the byte matching code (since it is zipped with the `pattern` iterator). I'm not clear how to test this...
diff --git a/net/mime_classifier.rs b/net/mime_classifier.rs index b1ee9231b..3b97566f0 100644 --- a/net/mime_classifier.rs +++ b/net/mime_classifier.rs @@ -150,6 +150,18 @@ impl MIMEClassifier { } } + pub fn validate(&self) -> Result<(), String> { + try!(self.image_classifier.validate()); + ...
1
69
6
7d215e2bb8d239d4e6081eff6621a64601484160
Eli Friedman
2016-02-25T19:39:32
servo: Merge #9743 - Use presentation hints correctly for the dimensions of `<img>` (from jdm:image-preshint-rebase); r=pcwalton Mostly straightforward; includes some extra fixes to make `<canvas>` work the same way as `<img>` for reflow. Rebase of #8531. Source-Repo: https://github.com/servo/servo Source-Revision: ...
diff --git a/layout/fragment.rs b/layout/fragment.rs index 2c0fc922c..8c671355c 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -34,7 +34,6 @@ use std::cmp::{max, min}; use std::collections::LinkedList; use std::fmt; use std::sync::{Arc, Mutex}; -use string_cache::Atom; use style::computed_values::conte...
3
102
60
478c8385ba0865aeee6d3bf3d319591f23f040bf
Paul Rouget
2016-02-25T10:26:24
servo: Merge #9740 - Support Browser API event mozbrowserconnected (from paulrouget:mozbrowserconnected); r=jdm Fixes https://github.com/servo/servo/issues/9382 This new event is not yet documented. If this lands, I will add documentation to MDN. Source-Repo: https://github.com/servo/servo Source-Revision: 42f171284...
diff --git a/script/dom/document.rs b/script/dom/document.rs index b7c46c966..fb996f759 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -584,9 +584,17 @@ impl Document { // https://html.spec.whatwg.org/multipage/#current-document-readiness pub fn set_ready_state(&self, state: DocumentReady...
3
14
6
61a7bcf6d5facc36c31ac86a3df621b08e5f651c
Anthony Ramine
2016-02-25T03:09:44
servo: Merge #9742 - Make use of From<String> for Atom (from nox:atom-from-string); r=ecoal95 Source-Repo: https://github.com/servo/servo Source-Revision: b3b6f092062eed2f323da88991553d0285da6a16
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index f66ca8c65..dc9388353 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -26,7 +26,7 @@ serde = "0.6" serde_macros = "0.6" servo-skia = "0.20130412.0" smallvec = "0.1" -string_cache = {version = "0.2.9", features = ["heap_size"]} +string_cache = {version = "0.2.10",...
30
73
69
6c03a3d538a2980c501725840cc85979b7dc1755
Greg Morenz
2016-02-25T02:10:49
servo: Merge #9679 - Switch to external deque crate (from gmorenz:deque); r=pcwalton Fixes #9539 Source-Repo: https://github.com/servo/servo Source-Revision: b4da844c038b9c71f694e2200cc39db045d13fef
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 3513e5939..30a520631 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -374,6 +374,14 @@ dependencies = [ "unreachable 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "deque" +version = "0.3.1" +source = "registry+h...
5
23
422
7f9274c17f7feb7dec506a55e49a9955218ebfe3
Daniel Robertson
2016-02-25T00:19:03
servo: Merge #9708 - Implement GetElementRect webdriver command: #8623 (from danlrobertson:i8623); r=KiChjang Implement the webdriver Get Element Rect command. Originally I wrote out the algorithm for [Step 7](https://w3c.github.io/webdriver/webdriver-spec.html#dfn-calculate-the-absolute-position) and then I found `Ge...
diff --git a/msg/webdriver_msg.rs b/msg/webdriver_msg.rs index 94c4556b5..fb59de4a9 100644 --- a/msg/webdriver_msg.rs +++ b/msg/webdriver_msg.rs @@ -3,6 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use constellation_msg::{PipelineId, WindowSizeData}; +use euclid::rect::Rect; use ipc_chann...
4
68
10
afe7d2fe6f4d49dbf4641a7ffc1e2d07fffc0d82
Patrick Walton
2016-02-24T22:26:02
servo: Merge #9663 - compositing: Stop compositing unnecessarily after each animation frame (from pcwalton:browser-html-jank-fix); r=glennw Instead, schedule a delayed composite after each frame of an animation. The previous code would cause jank, because the following sequence frequently occurred: 1. The page uses ...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 786099981..1e9f29b01 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -8,6 +8,7 @@ use compositor_layer::{CompositorData, CompositorLayer, RcCompositorLayer, Wants use compositor_thread::{CompositorEventListener, Composit...
7
146
115
18f6b6946441802b181f8e373d1aff3575f2e846
Martin Robinson
2016-02-24T21:22:45
servo: Merge #9706 - Remove parallel display list construction (from mrobinson:remove-parallel-display-list-building); r=pcwalton Parallel display list construction hasn't been shown to give any performance gains. It is also incompatible with the current flat display list implementation. Once flat display lists have l...
diff --git a/layout/layout_thread.rs b/layout/layout_thread.rs index e1e163acb..b574e2d62 100644 --- a/layout/layout_thread.rs +++ b/layout/layout_thread.rs @@ -860,19 +860,7 @@ impl LayoutThread { flow::mut_base(flow_ref::deref_mut(layout_root)).clip = ClippingRegion::from_rect(&data.page...
3
3
80
ab57f85a3157db9c01a09868fa96d122dbd3edd5
benshu
2016-02-24T18:52:43
servo: Merge #9661 - Completed implementation of devtools' `getLayout` (from jdm:devtools-inspector-get-layout); r=pcwalton Rebase of #7267. Fixes #3598. This avoids all of the sketchy issues of trying to read the style data for margins from the script thread. I replaced it with a layout query that fetches the margin...
diff --git a/devtools/Cargo.toml b/devtools/Cargo.toml index 36567380d..9d4f910df 100644 --- a/devtools/Cargo.toml +++ b/devtools/Cargo.toml @@ -27,5 +27,6 @@ hyper = { version = "0.7", features = [ "serde-serialization" ] } log = "0.3" rustc-serialize = "0.3" serde = "0.6" +serde_json = "0.6" serde_macros = "0.6" ...
11
220
39
b8dbe98296bee2b397878a9976ba4dd6bb474c87
Paul Rouget
2016-02-24T16:48:19
servo: Merge #9731 - allow mozbrowser only for top level windows (from paulrouget:mozbrowserRootPipelineOnly); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 3212d3a91ef749db9eb118c9168b2d5f6510bb59
diff --git a/script/dom/htmliframeelement.rs b/script/dom/htmliframeelement.rs index 630b36e14..b59199d49 100644 --- a/script/dom/htmliframeelement.rs +++ b/script/dom/htmliframeelement.rs @@ -360,7 +360,8 @@ pub fn Navigate(iframe: &HTMLIFrameElement, direction: NavigationDirection) -> F Ok(()) } else ...
1
11
4
6694d8949f3ef49ef50886f0fea04f76dbc7d332
Lars Bergstrom
2016-02-24T15:37:04
servo: Merge #9741 - Pick up new webrender for doc build fixes (from larsbergstrom:update_webrender); r=nox Fixes #9704 r? @nox Source-Repo: https://github.com/servo/servo Source-Revision: 9ab2da3cd111eb619d5ed779b6bb42c750a99f00
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 785fd47af..59c4c0947 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2207,7 +2207,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.1.0" -source = "git+https://github.com/servo/webrender#c05e4d6458609bd6ecab3fea644cdd299a830032" +source ...
1
1
1
4a42c37faf65bcc3432a00984aae0dc1a574e6bc
Matt Brubeck
2016-02-24T13:25:39
servo: Merge #9722 - Dirty elements whose selectors are affected by sibling changes (from mbrubeck:slow-selector); r=nox This fixes incremental layout of nodes that match pseudo-class selectors such as :first-child, :nth-child, :last-child, :first-of-type, etc. Fixes #8191 and other intermittent layout bugs. This co...
diff --git a/layout/Cargo.toml b/layout/Cargo.toml index ff709ffaf..6d34a1dd8 100644 --- a/layout/Cargo.toml +++ b/layout/Cargo.toml @@ -70,7 +70,7 @@ heapsize_plugin = "0.1.2" libc = "0.2" log = "0.3" rustc-serialize = "0.3" -selectors = {version = "0.5", features = ["heap_size"]} +selectors = {version = "0.5.1", f...
6
124
14
ad07834330193acd97499791f614830e30f8a8f6
Saurav Sachidanand
2016-02-24T12:31:29
servo: Merge #9739 - Inline functions HTMLCollection::get_length and get_item (from saurvs:master); r=nox Fixes https://github.com/servo/servo/issues/9726 Source-Repo: https://github.com/servo/servo Source-Revision: 7d25243af12e8546c6a7dc5dafc15fc2a5006345
diff --git a/script/dom/htmlcollection.rs b/script/dom/htmlcollection.rs index 0c429c295..b2c691fb7 100644 --- a/script/dom/htmlcollection.rs +++ b/script/dom/htmlcollection.rs @@ -103,19 +103,6 @@ impl HTMLCollection { } } - fn get_length(&self) -> u32 { - // Call validate_cache before callin...
1
40
48
0959e968d63c7acbf0df3884dd29a6a57505296a
Corey Farwell
2016-02-24T01:22:40
servo: Merge #9733 - Update webrender crate refs to reflect ownership change (from servo:servo-webrender); r=glennw Source-Repo: https://github.com/servo/servo Source-Revision: 33f0040496bde88683cfadb4068183f7d08a5f1c
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index 34451e679..c67c8ea87 100644 --- a/canvas/Cargo.toml +++ b/canvas/Cargo.toml @@ -34,7 +34,7 @@ git = "https://github.com/ecoal95/rust-offscreen-rendering-context" git = "https://github.com/servo/ipc-channel" [dependencies.webrender_traits] -git = "https://gith...
10
25
25
289e64923b9f1f01c5f0357a68474266846f6cad
Ms2ger
2016-02-23T19:51:01
servo: Merge #9729 - Stop returning an Option from Window::browsing_context (from Ms2ger:bc-option); r=jdm A Window always has a WindowProxy; the only reason it's wrapped in a nullable field is the order in which those objects are created. Source-Repo: https://github.com/servo/servo Source-Revision: d85ee09bc72a98192...
diff --git a/script/dom/bindings/utils.rs b/script/dom/bindings/utils.rs index ba8879347..adc96c453 100644 --- a/script/dom/bindings/utils.rs +++ b/script/dom/bindings/utils.rs @@ -395,7 +395,7 @@ pub unsafe extern "C" fn outerize_global(_cx: *mut JSContext, obj: HandleObject) debug!("outerizing"); let win = ...
2
7
7
77f379ddabf04ebdb541ad4462ea1b965df06097
Simon Sapin
2016-02-23T18:21:54
servo: Merge #9660 - Update websocket (from servo:websocketup); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 7840aae1b9b35206ac8826b627969c1ac5423daf
diff --git a/net/Cargo.toml b/net/Cargo.toml index ae03f5600..5dc0f3ea1 100644 --- a/net/Cargo.toml +++ b/net/Cargo.toml @@ -42,5 +42,5 @@ mime_guess = "1.1.1" flate2 = "0.2.0" uuid = "0.1.16" url = {version = "0.5.5", features = ["heap_size"]} -websocket = "0.14.0" +websocket = "0.15.0" immeta = "0.3.1" diff --git...
5
9
9
3aa93e770fa7b182a0e38f4cd6ee3c20a9c71186
Tim Neumann
2016-02-23T15:38:43
servo: Merge #9598 - Implement XHR::SetRequestHeader Step 3 (from TimNN:xhr-header-step-3); r=Ms2ger Closes #9548. Alternative implementation of #9595. cc @timvandermeij I'm not sure if a utility method on `ByteString` is the best place for this functionality, maybe a free function in XHR module would be more suita...
diff --git a/script/dom/bindings/str.rs b/script/dom/bindings/str.rs index 850277f59..6276c2c19 100644 --- a/script/dom/bindings/str.rs +++ b/script/dom/bindings/str.rs @@ -48,76 +48,6 @@ impl ByteString { pub fn to_lower(&self) -> ByteString { ByteString::new(self.0.to_ascii_lowercase()) } - - //...
2
104
82
a6e1f691ad0ec8bce2a016621e1b80f1061667fc
Ms2ger
2016-02-23T12:59:59
servo: Merge #9727 - Remove an unused import from xmlhttprequest (from Ms2ger:xhr-import); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: 90c7b78b12c772e4019c9724e0037b813eb8a555
diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs index 0e53dfd86..749de9ac2 100644 --- a/script/dom/xmlhttprequest.rs +++ b/script/dom/xmlhttprequest.rs @@ -55,7 +55,6 @@ use std::ascii::AsciiExt; use std::borrow::ToOwned; use std::cell::{Cell, RefCell}; use std::default::Default; -use std::s...
1
0
1
199cc8cd89589d0df49a35d338d86452df486de3
Anthony Ramine
2016-02-23T01:45:04
servo: Merge #9721 - Bump to Rust 2016-02-22 (from servo:rustup); r=larsbergstrom,nox Source-Repo: https://github.com/servo/servo Source-Revision: dd5f3382547069b9f5d7933959c0307c863c58ac
diff --git a/layout/Cargo.toml b/layout/Cargo.toml index 99bf99cd4..e58cac00a 100644 --- a/layout/Cargo.toml +++ b/layout/Cargo.toml @@ -72,7 +72,7 @@ log = "0.3" rustc-serialize = "0.3" selectors = {version = "0.5", features = ["heap_size"]} serde = "0.6" -serde_json = "0.5" +serde_json = "0.6" serde_macros = "0.6...
8
135
132
deef48fd7c00bee44426a62265a1fa7dda9fa33f
benshu
2016-02-21T16:13:28
servo: Merge #8603 - Timers clean up (from benschulz:timers-clean-up); r=jdm This PR splits the `ActiveTimers` abstraction into - `OneshotTimers` for scheduling "arbitrary" oneshot timers, such as XHR timeouts, and - `JsTimers`, based on `OneshotTimers`, for scheduling JS timers (`setTimeout`/`setInterval`). The r...
diff --git a/script/dom/bindings/global.rs b/script/dom/bindings/global.rs index e0e558e0f..c7ba5aaaf 100644 --- a/script/dom/bindings/global.rs +++ b/script/dom/bindings/global.rs @@ -23,7 +23,7 @@ use net_traits::ResourceThread; use profile_traits::mem; use script_thread::{CommonScriptMsg, ScriptChan, ScriptPort, S...
5
369
275
d46cedf0d248ea7aabda16e564d250daf83974b8
Josh Matthews
2016-02-20T23:03:32
servo: Merge #9714 - Improvements to Documents' browsing contexts (from servo:browsingcontext); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: f5193ebd82b7d4daf2e5aa30948845bab7a696ea
diff --git a/script/dom/document.rs b/script/dom/document.rs index 9fdff62aa..7a1ce36e5 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -314,8 +314,10 @@ impl Document { // https://html.spec.whatwg.org/multipage/#fully-active pub fn is_fully_active(&self) -> bool { - let browsing_...
3
13
10
f0974f1901c9600a0013e3386a0932d2b16cc6d0
Tim van der Meij
2016-02-20T18:45:19
servo: Merge #9713 - Move util::persistent_list to layout (from timvandermeij:move-persistent-list); r=nox Fixes #9694. Source-Repo: https://github.com/servo/servo Source-Revision: 581aa1a14f7a24db9068a94c3fb1e7326aaa7024
diff --git a/layout/floats.rs b/layout/floats.rs index f74b063b2..44704b222 100644 --- a/layout/floats.rs +++ b/layout/floats.rs @@ -3,12 +3,12 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use app_units::Au; +use persistent_list::PersistentList; use std::cmp::{max, min}; use std::fmt; use st...
4
2
2
e9895fa4e0bbff979852b83dfaefb25e74ad05ee
Paul Rouget
2016-02-20T06:03:06
servo: Merge #9710 - do not send mouseevent twice (from paulrouget:fix9702); r=glennw Fix #9702 Source-Repo: https://github.com/servo/servo Source-Revision: 875f1e92ccafebc8ddebc722f430e5037007b9dc
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index e8ac9a88c..786099981 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -1295,6 +1295,7 @@ impl<Window: WindowMethods> IOCompositor<Window> { .send(ConstellationControlMsg::SendEvent(root_pipeline_i...
1
1
0
69ec75b6ff885f8e4840600488951d8de9530aea
Ms2ger
2016-02-19T16:53:35
servo: Merge #9700 - Avoid some spurious string copies in XHR (from servo:xhr-to-owned); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: 94d28bfecf127c9245103ed18b4a3e046795a1d7
diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs index 72ad07d89..634024f35 100644 --- a/script/dom/xmlhttprequest.rs +++ b/script/dom/xmlhttprequest.rs @@ -1106,7 +1106,7 @@ impl XMLHttpRequest { // According to Simon, decode() should never return an error, so unwrap()ing // t...
1
4
4
54606af247646a2608e9f2bb5ad52d708152304e
Ms2ger
2016-02-19T16:04:22
servo: Merge #9701 - Use if-let in set_inline_event_listener (from Ms2ger:listener-is-some); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: 0209d42b7bb11b0e0e4cab8850e5f77cc0e31ad1
diff --git a/script/dom/eventtarget.rs b/script/dom/eventtarget.rs index 8a7594532..9c7c62600 100644 --- a/script/dom/eventtarget.rs +++ b/script/dom/eventtarget.rs @@ -326,10 +326,10 @@ impl EventTarget { EventListenerType::Inline(listener.unwrap_or(InlineEventListener::Null)); } ...
1
2
2
c42a0ae350c268b956907ed6059d7d8abed0f6e0
Daniel Robertson
2016-02-19T11:51:14
servo: Merge #9684 - Add methods to move ByteStrings underlying bytes (from danlrobertson:i9655); r=KiChjang Add methods to move the underlying `Vec<u8>` for `ByteString`. I saw this as at least two methods. One to "move and replace with and empty Vec<u8> (`bytes`), and one to take ownership of the whole object (`own...
diff --git a/script/dom/bindings/str.rs b/script/dom/bindings/str.rs index 3f3c14bf8..850277f59 100644 --- a/script/dom/bindings/str.rs +++ b/script/dom/bindings/str.rs @@ -7,6 +7,7 @@ use std::ascii::AsciiExt; use std::borrow::ToOwned; use std::hash::{Hash, Hasher}; +use std::mem; use std::ops; use std::str; use...
2
18
9
c43ea8a931c6ba4757517888d002fc7a11db9b8a
liviuba
2016-02-19T10:09:59
servo: Merge #9610 - Bypass GetResponseXML to better match spec (from liviuba:Fix-9553); r=KiChjang Resolves https://github.com/servo/servo/issues/9553 Source-Repo: https://github.com/servo/servo Source-Revision: 361bb24a4904eb8045779b7f79859dbd4970d02e
diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs index 140ad1597..355cd989e 100644 --- a/script/dom/xmlhttprequest.rs +++ b/script/dom/xmlhttprequest.rs @@ -778,8 +778,8 @@ impl XMLHttpRequestMethods for XMLHttpRequest { }, // Step 2 XMLHttpRequ...
1
17
4
f9326199c7d35cf79b7316a7d49c2eaa7a2e19cf
Ms2ger
2016-02-19T07:19:35
servo: Merge #9603 - Store a pointer to the browsing context in the Document (from Ms2ger:document-bc); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: ee158cc65f117f8fa10c4b706ff4009c579c7775
diff --git a/script/dom/browsingcontext.rs b/script/dom/browsingcontext.rs index 7cd856cad..603b2c27f 100644 --- a/script/dom/browsingcontext.rs +++ b/script/dom/browsingcontext.rs @@ -2,6 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/...
10
53
23
d24382d0949cbb2286e9af783d7c1f45b2e939a9
Glenn Watson
2016-02-19T00:17:56
servo: Merge #9693 - Update webrender (perf fixes for demos) (from glennw:update-wr); r=mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: ddf5e9dba56fe593a657c9b7fa4827604906b698
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 9c4a7af61..b14579ff9 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2209,7 +2209,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.1.0" -source = "git+https://github.com/glennw/webrender#90cd6afdd64cdb48f606dbe0ce5d1ac352329004" +source...
1
1
1