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
1c7495102798a76583120799e8a18de4180b34d7
David Zbarsky
2015-07-14T04:24:22
servo: Merge #6554 - Test namespace prefix for element equality (from dzbarsky:master); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 91ce002241c32d4d6f0c4814f93ae693672485be
diff --git a/script/dom/node.rs b/script/dom/node.rs index 21c427d07..3fc51c10f 100644 --- a/script/dom/node.rs +++ b/script/dom/node.rs @@ -2368,8 +2368,8 @@ impl<'a> NodeMethods for &'a Node { fn is_equal_element(node: &Node, other: &Node) -> bool { let element: &Element = ElementCast::to_ref(no...
1
1
1
da8e085ab878dae2b2170157a63c7d43399013aa
Simon Sapin
2015-07-14T03:49:04
servo: Merge #6614 - Add a `-Z replace-surrogates` command-line option (from servo:replace-surrogates); r=Ms2ger See #6564. r? @Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: db90d484edd3a3c1b44030a76d8d011e2ca048fc
diff --git a/script/dom/bindings/conversions.rs b/script/dom/bindings/conversions.rs index 9967b6cf9..9f6ed02a2 100644 --- a/script/dom/bindings/conversions.rs +++ b/script/dom/bindings/conversions.rs @@ -352,10 +352,34 @@ pub fn jsstring_to_str(cx: *mut JSContext, s: *mut JSString) -> DOMString { JS_GetTw...
3
37
2
50ca886978adb908e9ea590f0f0e91c29ff84cca
Ms2ger
2015-07-13T08:47:16
servo: Merge #6610 - Replace WebSocketTask::Open by ConnectionEstablished (from Ms2ger:task-readystate); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 12195a5c4ac08f1e6eeaf8888c279fea8e5be48a
diff --git a/script/dom/websocket.rs b/script/dom/websocket.rs index e676e9d8f..0c0ab25a3 100644 --- a/script/dom/websocket.rs +++ b/script/dom/websocket.rs @@ -151,15 +151,6 @@ impl WebSocket { }; let response = request.send().unwrap(); response.validate().unwrap(); - ws.r().ready_sta...
1
22
22
4492ef3d3d1e1e89e92442678c9df818666f879c
Ms2ger
2015-07-13T06:24:35
servo: Merge #6609 - Return the parsed URL from WebSocket#url (from Ms2ger:ws-url); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: c2dbc4587f70a15f0acefcff214c649d009c2f76
diff --git a/script/dom/websocket.rs b/script/dom/websocket.rs index 39c627b72..e676e9d8f 100644 --- a/script/dom/websocket.rs +++ b/script/dom/websocket.rs @@ -47,7 +47,7 @@ no_jsmanaged_fields!(Receiver<WebSocketStream>); #[dom_struct] pub struct WebSocket { eventtarget: EventTarget, - url: DOMString, + ...
1
10
10
b1b58da6c7e9c5d0ff5b03ff4dca74f3ea911f49
Glenn Watson
2015-07-12T16:29:33
servo: Merge #6606 - Use atoms for font template structures (from glennw:font-atoms); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: c3fc943c6627b0248e1e61b106a964131209cb6d
diff --git a/gfx/font_cache_task.rs b/gfx/font_cache_task.rs index 5732e6a79..b82c70509 100644 --- a/gfx/font_cache_task.rs +++ b/gfx/font_cache_task.rs @@ -61,9 +61,9 @@ impl FontFamily { None } - fn add_template(&mut self, identifier: &str, maybe_data: Option<Vec<u8>>) { + fn add_template(&mut s...
5
27
26
7d02e371ce99db5e6e38063fe67b108f4c3a4e44
Ms2ger
2015-07-12T08:44:04
servo: Merge #6605 - Pass the WorkQueue to LayoutTask::solve_constraints_parallel (from Ms2ger:solve_constraints_parallel); r=SimonSapin This removes the possibility of a panic by checking a constraint at compile time rather than at run time. Source-Repo: https://github.com/servo/servo Source-Revision: d7cf58d6f15c1b...
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index bafdd1088..3a51d858c 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -757,23 +757,18 @@ impl LayoutTask { /// benchmarked against those two. It is marked `#[inline(never)]` to aid profiling. #[inline(never)] fn solve_const...
1
10
15
94608a1562a6a05687a2e071e8d11708e7984593
Ms2ger
2015-07-11T20:27:49
servo: Merge #6604 - Add debug logging to register_named_element and unregister_named_element (from Ms2ger:idmap-debug); r=jdm I found them helpful; I imagine others might as well. Source-Repo: https://github.com/servo/servo Source-Revision: 9e02ef93478c41a3fc6971611b358da6f73625d6
diff --git a/script/dom/document.rs b/script/dom/document.rs index 0597a3fce..7f8a864dc 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -396,6 +396,7 @@ impl<'a> DocumentHelpers<'a> for &'a Document { fn unregister_named_element(self, to_unregister: &Element, ...
1
2
0
d747144c4528d5d66a8f62bfa86fd0e1b00177a5
Will Huxtable
2015-07-11T10:47:06
servo: Merge #6603 - Remove url field from Page (from wjh:remove-url-from-page-6589); r=jdm Resolves issue [#6589](https://github.com/servo/servo/issues/6589). Source-Repo: https://github.com/servo/servo Source-Revision: 3d4122e7c1e9e412d88f69b853af5265a4c9f0fe
diff --git a/script/page.rs b/script/page.rs index 83c0c609a..563cbae10 100644 --- a/script/page.rs +++ b/script/page.rs @@ -11,7 +11,6 @@ use dom::window::Window; use msg::constellation_msg::PipelineId; use std::cell::Cell; use std::rc::Rc; -use url::Url; /// Encapsulates a handle to a frame in a frame tree. #[...
2
2
9
7953ffd52b53a876d3255def95a24bf187aa2f7d
Ms2ger
2015-07-11T07:32:32
servo: Revert "Replace surrogates in JS strings with U+FFFD instead of panicking." This reverts commit 3f07f8e8661e7ebd451af3aef247212708083bc5. Source-Repo: https://github.com/servo/servo Source-Revision: 243446eff33d596b192a7190d5dfe3bb1a6e07dd
diff --git a/script/dom/bindings/conversions.rs b/script/dom/bindings/conversions.rs index 1a090a1ef..9967b6cf9 100644 --- a/script/dom/bindings/conversions.rs +++ b/script/dom/bindings/conversions.rs @@ -355,9 +355,7 @@ pub fn jsstring_to_str(cx: *mut JSContext, s: *mut JSString) -> DOMString { let char_vec =...
1
1
3
cf7a5132db39137fb1d114d25f2bbb8564faa41a
Simon Sapin
2015-07-10T19:14:38
servo: Merge #6595 - Replace surrogates in JS strings with U+FFFD instead of panicking (from servo:replace-surrogates); r=pcwalton Fix #6519. See #6564. r? @pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 0f36eeab61b233cbcf0274e985ebd07b45d7a44f
diff --git a/script/dom/bindings/conversions.rs b/script/dom/bindings/conversions.rs index 9967b6cf9..1a090a1ef 100644 --- a/script/dom/bindings/conversions.rs +++ b/script/dom/bindings/conversions.rs @@ -355,7 +355,9 @@ pub fn jsstring_to_str(cx: *mut JSContext, s: *mut JSString) -> DOMString { let char_vec =...
1
3
1
949379f7c2126c63b8f16e75d0e716af073262ed
David Zbarsky
2015-07-10T12:44:25
servo: Merge #6561 - Implement Node#isDefaultNamespace and Node#lookupNamespaceURI (fixes #1826) (from dzbarsky:namespace); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 52e857dd7b9b083d691efab088aeba80888c61ff
diff --git a/script/dom/element.rs b/script/dom/element.rs index 495a33c90..30b92f0d4 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -1121,10 +1121,7 @@ impl<'a> AttributeHandlers for &'a Element { impl<'a> ElementMethods for &'a Element { // https://dom.spec.whatwg.org/#dom-element-namespaceur...
2
90
12
010edb2b69a35db030a0bf6f91118b0b89904e3c
Ms2ger
2015-07-08T14:02:30
servo: Merge #6574 - Remove ReplacedImageFragmentInfo::for_node and unsafe code it required (from Ms2ger:for_node); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 805232a85e401f1a07635da894c8e7d05fed4ce9
diff --git a/layout/fragment.rs b/layout/fragment.rs index edaf13d86..ebd206cb2 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -18,7 +18,6 @@ use inline::{InlineFragmentContext, InlineFragmentNodeInfo, InlineMetrics}; use layout_debug; use model::{self, IntrinsicISizes, IntrinsicISizesContribution, Maybe...
1
0
11
5433274e50db0584ebd09eb7c8c1022b92cf0503
Ms2ger
2015-07-08T11:59:00
servo: Merge #6576 - Reduce the scope of the allowed unsafe code in context.rs (from Ms2ger:scope-unsafe-context); r=pcwalton Since I made unsafe code opt-in in layout, the unsafe code in this module has been reduced to a single unsafe impl, so there is no reason to allow it in the entire module. Source-Repo: https:/...
diff --git a/layout/context.rs b/layout/context.rs index bf560ff6c..353d37d9d 100644 --- a/layout/context.rs +++ b/layout/context.rs @@ -4,7 +4,7 @@ //! Data needed by the layout task. -#![allow(unsafe_code)] +#![deny(unsafe_code)] use css::matching::{ApplicableDeclarationsCache, StyleSharingCandidateCache}; ...
1
2
1
3e8af216621b6bede1d869c823c03198411eb369
Martin Robinson
2015-07-08T09:14:21
servo: Merge #6530 - Move LayerBuffer cache to the compositor (from mrobinson:move-cache); r=pcwalton Now that NativeDisplay can be shared between the compositor and the paint task, we can move the LayerBuffer cache to the compositor. This allows surfaces to be potentially reused between different paint tasks and will...
diff --git a/gfx/buffer_map.rs b/compositing/buffer_map.rs similarity index 93% rename from gfx/buffer_map.rs rename to compositing/buffer_map.rs index 2de24c99a..8e514eab8 100644 --- a/gfx/buffer_map.rs +++ b/compositing/buffer_map.rs @@ -8,7 +8,6 @@ use euclid::size::Size2D; use layers::platform::surface::NativeDisp...
10
172
224
095bb16eea99bd273754c1d6f0009db9bd0889ad
Ms2ger
2015-07-08T07:20:28
servo: Merge #6575 - Really require documentation in the script_traits crate (from Ms2ger:script-traits-docs); r=jdm My previous attempt (1303dd6e2e1af39b13b57986f154a67f9e7490e7) was foiled by a typo that made the requirement only apply to the next item. Source-Repo: https://github.com/servo/servo Source-Revision: 5...
diff --git a/script_traits/lib.rs b/script_traits/lib.rs index 20fe580fd..f8c5ccc9d 100644 --- a/script_traits/lib.rs +++ b/script_traits/lib.rs @@ -6,7 +6,7 @@ //! The traits are here instead of in script so that these modules won't have //! to depend on script. -#[deny(missing_docs)] +#![deny(missing_docs)] ex...
1
12
2
1a9eb3fdc33f40145c2b7b4fe3127a8eba4c3851
Ms2ger
2015-07-08T06:35:38
servo: Merge #6573 - Don't lose a possible error in <SpecificFragmentInfo as fmt::Debug>::fmt (from Ms2ger:warnings); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: effe569e32d33d5c6c95d0882487b6ea128fd71b
diff --git a/layout/fragment.rs b/layout/fragment.rs index b9a2713b9..edaf13d86 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -213,11 +213,10 @@ impl fmt::Debug for SpecificFragmentInfo { match *self { SpecificFragmentInfo::ScannedText(ref info) => { write!(f, " \"{}...
1
2
3
d199c7ef124562e920dc8f12f13a508b95e919ee
Ms2ger
2015-07-08T05:57:44
servo: Merge #6577 - Remove the unused unrooted_must_root permission from layout (from Ms2ger:disallow-unrooted-layout); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 453b826fb8d24201f00e8a2280f0c5c6cfa77938
diff --git a/layout/lib.rs b/layout/lib.rs index da4dd55b5..8519758cc 100644 --- a/layout/lib.rs +++ b/layout/lib.rs @@ -16,7 +16,6 @@ #![feature(unsafe_no_drop_flag)] #![deny(unsafe_code)] -#![allow(unrooted_must_root)] #![plugin(string_cache_plugin)] #![plugin(plugins)]
1
0
1
387e78f379caa375e015c27bf42d6368986218cc
Ms2ger
2015-07-07T19:07:31
servo: Merge #6570 - Require that WorkQueue's QueueData is Sync rather than Send (from Ms2ger:workqueue-sync); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: c76720d67c0d04f6d77c138c295b4fd4ebf24ee3
diff --git a/layout/context.rs b/layout/context.rs index 1e3761663..bf560ff6c 100644 --- a/layout/context.rs +++ b/layout/context.rs @@ -129,7 +129,16 @@ pub struct SharedLayoutContext { pub goal: ReflowGoal, } -unsafe impl Send for SharedLayoutContext {} +// FIXME(#6569) This implementations is unsound: +// XX...
2
12
3
aeed4cc96bbe08b6be36323359c4685feff09743
Patrick Walton
2015-07-07T16:28:04
servo: Merge #6492 - layout: Modify styles for replaced content as appropriate during incremental flow construction (from pcwalton:even-more-jumpiness); r=mbrubeck Fixes jumpiness on lots of Web sites. r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: bbcd42773342a587a8515f34bdc3ca69a380c0a8
diff --git a/gfx/paint_context.rs b/gfx/paint_context.rs index df5e7a235..62701cfb7 100644 --- a/gfx/paint_context.rs +++ b/gfx/paint_context.rs @@ -1171,7 +1171,12 @@ pub trait ToAzureRect { impl ToAzureRect for Rect<Au> { fn to_nearest_azure_rect(&self) -> Rect<AzFloat> { - Rect::new(self.origin.to_nea...
4
30
6
50bcf3fefd01c4c47b952ea937dc17002053b2b8
Josh Matthews
2015-07-07T15:43:36
servo: Merge #6540 - Make devtools usable once more (from jdm:devtoolsfix); r=glennw This fixes the panic by rebasing #6189, and also makes cached messages appear once more. Source-Repo: https://github.com/servo/servo Source-Revision: c04b7bbf6e5efe2e5217b69c9680e4e91bbd6ecd
diff --git a/devtools/actors/console.rs b/devtools/actors/console.rs index ff151be3b..b7de253b4 100644 --- a/devtools/actors/console.rs +++ b/devtools/actors/console.rs @@ -13,6 +13,7 @@ use protocol::JsonPacketStream; use devtools_traits::EvaluateJSReply::{NullValue, VoidValue, NumberValue}; use devtools_traits::Eva...
4
81
47
b4243acb476b0dd36ab1a095c39486a62781b294
Corey Farwell
2015-07-07T14:58:35
servo: Merge #6555 - Join tokens when stringifying DOMTokenList (from frewsxcv:stringify-tokenlist); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: d64f91863af6c22b3af6d5ea5ebfd671f4e83aaa
diff --git a/script/dom/attr.rs b/script/dom/attr.rs index 0c8e92f7d..782ab3fd8 100644 --- a/script/dom/attr.rs +++ b/script/dom/attr.rs @@ -14,7 +14,7 @@ use dom::window::Window; use dom::virtualmethods::vtable_for; use devtools_traits::AttrInfo; -use util::str::{DOMString, parse_unsigned_integer, split_html_space...
4
21
12
9f59cb740e1bafe4411556e77c15914d05a07f2b
David Winslow
2015-07-07T12:27:13
servo: Merge #6565 - Fix for #6542 - <img> top-padding adds margin (from dwins:issue_6452_image_padding); r=pcwalton I wrote this patch that makes the test from #6542 render as expected but I am not confident it is actually the right fix. Should the padding be included in the 'ascent' metric for images, or am I just ...
diff --git a/layout/construct.rs b/layout/construct.rs index d3e568b10..12eb258f8 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -1352,7 +1352,7 @@ impl<'a> PostorderNodeMutTraversal for FlowConstructor<'a> { } }; - debug!("building flow for node: {:?} {:?} {:?}", display, ...
2
2
2
ceeeba460d50facc89dd0e4909ad67c50f633d0a
Patrick Walton
2015-07-07T11:42:07
servo: Merge #6487 - gfx: Use a pattern instead of tiling images manually (from pcwalton:background-tiling); r=glennw r? @SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: ae01e97efa31a180374dc0fd623ff03a650f7878
diff --git a/canvas_traits/lib.rs b/canvas_traits/lib.rs index 6f5e73bb2..132b4b86a 100644 --- a/canvas_traits/lib.rs +++ b/canvas_traits/lib.rs @@ -284,7 +284,8 @@ impl FillOrStrokeStyle { Pattern::Surface(SurfacePattern::new( source_surface.azure_source_surface, ...
4
75
38
c942aed2f596fe7382e271a8fc52da352bad183b
Ms2ger
2015-07-07T06:50:17
servo: Merge #6571 - Silence unused variable warnings in properties.rs (from Ms2ger:warnings); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 8b9f7d7764611ab0e6c81fe884f68fd274441c3d
diff --git a/style/properties.mako.rs b/style/properties.mako.rs index 6b7788089..29bccc4c2 100644 --- a/style/properties.mako.rs +++ b/style/properties.mako.rs @@ -440,12 +440,12 @@ pub mod longhands { } fn cascade_property_custom(computed_value: &computed_value::T, - ...
1
8
8
543dd802c149534c1b6a817df31dc56a138da3ad
Ms2ger
2015-07-07T05:17:05
servo: Merge #6543 - Only make a elements activatable when they have an href attribute (from Ms2ger:a-href-activate); r=jdm I've tested this manually, by clicking on the "baz" in code like ```js var a = document.body.appendChild(document.createElement("a")); a.textContent = "bar "; a.setAttribute("href", "http://www....
diff --git a/script/dom/htmlanchorelement.rs b/script/dom/htmlanchorelement.rs index 9f1f57a0b..afe10ed71 100644 --- a/script/dom/htmlanchorelement.rs +++ b/script/dom/htmlanchorelement.rs @@ -101,7 +101,12 @@ impl<'a> Activatable for &'a HTMLAnchorElement { } fn is_instance_activatable(&self) -> bool { - ...
1
12
8
0e3746fc2e6cad75151fb22cde72958a3b479efc
Michael Tremel
2015-07-06T22:37:05
servo: Merge #6567 - Remove unused import (from mt2d2:remove_unused_imports); r=glennw Remove an unused import. This prevents a compiler warning in ```util```. Source-Repo: https://github.com/servo/servo Source-Revision: a0db2cf1bb720130aabd0d755e9432bd17063740
diff --git a/util/workqueue.rs b/util/workqueue.rs index 6d11e814c..e32e4f1ec 100644 --- a/util/workqueue.rs +++ b/util/workqueue.rs @@ -13,7 +13,6 @@ use task_state; use libc::funcs::posix88::unistd::usleep; use rand::{Rng, weak_rng, XorShiftRng}; -use std::mem; use std::sync::atomic::{AtomicUsize, Ordering}; us...
1
0
1
0ba90fcfe01101e2741668f81277f409226768bc
Glenn Watson
2015-07-06T19:45:04
servo: Merge #6566 - Add servo Image type. Remove rust-png dependency from script, gfx, layout (from glennw:image-deps); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 3a3ac2281b2d137ba620194e037ec671b746530c
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index 5e8cc7325..d051f4bac 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -38,12 +38,6 @@ git = "https://github.com/servo/rust-azure" [dependencies.layers] git = "https://github.com/servo/rust-layers" -[dependencies.stb_image] -git = "https://github.com/servo/rust-s...
11
66
51
7a39807adcdcc4ea5ae1619f3ebc88aead9821c4
Ms2ger
2015-07-06T14:29:17
servo: Merge #6547 - Borrow the QueueData for WorkQueue::run (from Ms2ger:workqueue-reference); r=pcwalton This allows us to get rid of the raw pointers and unsafe dereferencing in the parallel layout implementation. Source-Repo: https://github.com/servo/servo Source-Revision: a3821bf24094bf5bb2a9553e66b69da3b6430aa5
diff --git a/layout/context.rs b/layout/context.rs index f433c121f..1e3761663 100644 --- a/layout/context.rs +++ b/layout/context.rs @@ -129,9 +129,7 @@ pub struct SharedLayoutContext { pub goal: ReflowGoal, } -pub struct SharedLayoutContextWrapper(pub *const SharedLayoutContext); - -unsafe impl Send for Shared...
4
46
47
05707d8001a454cc0bb7e61de4a66476f50673b4
Patrick Walton
2015-07-06T13:45:38
servo: Merge #6364 - layout: Outline the individual property cascading functions to reduce I-cache footprint (from pcwalton:debloat-cascade); r=SimonSapin Reduces the size of `properties::cascade` from over 100K of code to under 5K. Due to the improved I-cache utilization, improves ARM scaling on 4 cores by 15%. r? @...
diff --git a/style/build.rs b/style/build.rs index 76d58e812..970400112 100644 --- a/style/build.rs +++ b/style/build.rs @@ -22,8 +22,10 @@ fn main() { .env("PYTHONPATH", &mako) .env("TEMPLATE", &template) .arg("-c") - .arg("from os import environ; from mako.template import Template;\ ...
2
205
111
4249c5078ea3a2b5ed92bfdec05c98b7c03aa48c
Patrick Walton
2015-07-06T13:08:58
servo: Merge #6365 - layout: Disable parallel display list building by default (from pcwalton:sequential-display-list-construction); r=larsbergstrom I've never see it result in a speedup. Actually, I don't think I've seen it result in anything better than a 50% slowdown. The arithmetic intensity is just too low, at le...
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index 35ffc56fa..79b46bb5d 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -836,18 +836,18 @@ impl LayoutTask { flow::mut_base(&mut **layout_root).clip = ClippingRegion::from_rect(&data.page_clip_rect); - ...
2
12
6
ae728ce28cf2e57f99655473920437dae6b9cb2b
Michael Wu
2015-07-06T03:39:12
servo: Merge #6546 - Remove LayoutChan from LayoutDataWrapper (from michaelwu:slim-layoutdatawrapper); r=Ms2ger Saves 32 bytes in Node. Source-Repo: https://github.com/servo/servo Source-Revision: cc73aad447f0455606a5a6005d31aa55334668a8
diff --git a/layout/data.rs b/layout/data.rs index e26e0a284..75831d7c2 100644 --- a/layout/data.rs +++ b/layout/data.rs @@ -7,7 +7,6 @@ use incremental::RestyleDamage; use msg::constellation_msg::ConstellationChan; use parallel::DomParallelInfo; use script::dom::node::SharedLayoutData; -use script::layout_interface...
4
10
20
a89c4ea88a8e09a5eaa8afd3f68578d509d2cc93
Ms2ger
2015-07-05T15:38:20
servo: Merge #6557 - Update rust-mozjs (from Ms2ger:update-js); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: db9e29a5f3c3600dcdd5c2b4e5a3e1e0baf917d7
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 52f1e13ce..87563f0a1 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -617,7 +617,7 @@ dependencies = [ [[package]] name = "js" version = "0.1.0" -source = "git+https://github.com/servo/rust-mozjs#fdcb73fbc9c5b7f78265f8ffd5fdbe329ec13b6b" +source = "git+h...
1
1
1
401a4cc7d711c08a36148c90510193b0e57b3875
Corey Farwell
2015-07-05T03:08:11
servo: Merge #6556 - Utilize iterators for AttrValue::from_serialized_tokenlist (from frewsxcv:AttrValue-from_serialized_tokenlist); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 0fb6604cb37da0ca0f4852328def21100a38fd63
diff --git a/script/dom/attr.rs b/script/dom/attr.rs index 6923c32c0..0c8e92f7d 100644 --- a/script/dom/attr.rs +++ b/script/dom/attr.rs @@ -38,12 +38,13 @@ pub enum AttrValue { impl AttrValue { pub fn from_serialized_tokenlist(tokens: DOMString) -> AttrValue { - let mut atoms: Vec<Atom> = vec!(); - ...
1
7
6
c6290e017b08471a1910fe8b7523ec17e832cf4e
David Zbarsky
2015-07-04T13:34:29
servo: Merge #6552 - Remove some redundant let bindings (from dzbarsky:master); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 236250c3fc7313346e490ce249083bb94d0dad74
diff --git a/script/dom/characterdata.rs b/script/dom/characterdata.rs index 0270bff99..707a801f7 100644 --- a/script/dom/characterdata.rs +++ b/script/dom/characterdata.rs @@ -50,9 +50,7 @@ impl CharacterData { impl<'a> CharacterDataMethods for &'a CharacterData { // https://dom.spec.whatwg.org/#dom-characterdat...
8
24
64
3e320aec0f296287b1df7a9800dbad6a72189e54
Ms2ger
2015-07-04T10:00:29
servo: Merge #6551 - Store a LayoutJS<Element> in LayoutElement (from Ms2ger:layoutelement); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 2e1c9785dc5725f809c56b7bafb7a3a68fb1dca0
diff --git a/layout/wrapper.rs b/layout/wrapper.rs index 74bb77f3b..020d6af3b 100644 --- a/layout/wrapper.rs +++ b/layout/wrapper.rs @@ -43,7 +43,7 @@ use script::dom::bindings::codegen::InheritTypes::{CharacterDataCast, ElementCas use script::dom::bindings::codegen::InheritTypes::{HTMLIFrameElementCast, HTMLCanvasEle...
1
41
37
0700a094de84784fd070c99cb75ce93bd36292a9
Ms2ger
2015-07-04T07:01:25
servo: Merge #6550 - Fix build warnings (from Ms2ger:warnings); r=larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: c7f1716ee1778893004d5210c5945cf1d7839160
diff --git a/gfx/lib.rs b/gfx/lib.rs index fb9e36884..b42e05375 100644 --- a/gfx/lib.rs +++ b/gfx/lib.rs @@ -3,13 +3,12 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #![feature(arc_weak)] -#![feature(box_raw)] +#![cfg_attr(any(target_os="linux", target_os = "android"), feature(box_raw))] #![fea...
6
7
10
7c896fed4df743a4556a2d945790d81f35e22c51
Simon Sapin
2015-07-04T03:47:02
servo: Merge #6548 - Upgrade to rustc 1.3.0-dev (f3b97a74a 2015-07-03) (from servo:rustup_2015-07-03); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: f5f64dab749d0851ef82be3cdc7fb2bd1cb09956
diff --git a/layout/animation.rs b/layout/animation.rs index 4e500a3d0..423a4cbcc 100644 --- a/layout/animation.rs +++ b/layout/animation.rs @@ -14,6 +14,7 @@ use msg::constellation_msg::{AnimationState, Msg, PipelineId}; use script::layout_interface::Animation; use script_traits::{ConstellationControlMsg, ScriptCont...
12
89
109
e67bf1da31278dcd1fe58a46e8d30eb1a8bb2568
David Zbarsky
2015-07-04T00:49:37
servo: Merge #6545 - Factor out common forward/back navigation code in HTMLIFrameElementMethods (from dzbarsky:master); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 02d84a13470271d18198af118d4f25ee45fe6917
diff --git a/script/dom/htmliframeelement.rs b/script/dom/htmliframeelement.rs index f38a591bd..81440e6b5 100644 --- a/script/dom/htmliframeelement.rs +++ b/script/dom/htmliframeelement.rs @@ -232,6 +232,27 @@ impl HTMLIFrameElement { } } +pub fn Navigate(iframe: &HTMLIFrameElement, direction: NavigationDirecti...
1
23
36
8a40a7c210219a752828d5a3f408d235d26385fb
Ms2ger
2015-07-03T13:22:44
servo: Merge #6513 - Remove the data field from WorkQueue (from Ms2ger:workqueue-data); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: d09881b051e01f145bf701d48d6d91167bccbe30
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index e3349ef19..172fcf2ed 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -300,8 +300,7 @@ impl LayoutTask { opts::get().initial_window_size.as_f32() * ScaleFactor::new(1.0)); let parallel_traversal = if opts::get().layo...
3
14
31
54bd844709e78f1fd9d72450592bddb1cdb7194b
Ms2ger
2015-07-03T12:39:53
servo: Merge #6504 - Move back to using a labeled break in WorkQueue (from Ms2ger:workqueue-labeled-break); r=pcwalton This was changed in 18a2050a64cd6f320cc59cb490a69b0e895f11d3; it appears to work fine now. Source-Repo: https://github.com/servo/servo Source-Revision: 59d3b45b74a22fa807872b78e881991e86f7c6ee
diff --git a/util/workqueue.rs b/util/workqueue.rs index 2f0523a09..f5f83567d 100644 --- a/util/workqueue.rs +++ b/util/workqueue.rs @@ -114,20 +114,13 @@ impl<QueueData: Send, WorkData: Send> WorkerThread<QueueData, WorkData> { let mut back_off_sleep = 0 as u32; // We're off! - /...
1
3
17
4650831e1719056937e991faa7b805ce2badddfd
Ms2ger
2015-07-03T05:32:59
servo: Merge #6538 - Some cleanup in HTMLAnchorElement (from Ms2ger:a-cleanup); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 73b52c095a448116c0f9db23894a0932d0d53484
diff --git a/script/dom/htmlanchorelement.rs b/script/dom/htmlanchorelement.rs index 4e749ff63..9f1f57a0b 100644 --- a/script/dom/htmlanchorelement.rs +++ b/script/dom/htmlanchorelement.rs @@ -69,15 +69,6 @@ impl<'a> VirtualMethods for &'a HTMLAnchorElement { Some(htmlelement as &VirtualMethods) } - ...
1
7
17
40031660555859aca07a2c95ff6107416b1d7ba4
Ms2ger
2015-07-02T14:20:03
servo: Merge #6533 - Check the result of JS_Init (from Ms2ger:init); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: eb5fbb6ea26c68fb875da51d57b1c85eeffae43b
diff --git a/script/lib.rs b/script/lib.rs index 144644438..642efd546 100644 --- a/script/lib.rs +++ b/script/lib.rs @@ -90,6 +90,6 @@ mod webdriver_handlers; #[allow(unsafe_code)] pub fn init() { unsafe { - js::jsapi::JS_Init(); + assert_eq!(js::jsapi::JS_Init(), 1); } }
1
1
1
615688bf10af952fb78719781587b77c7543665e
Brandon Mintern
2015-07-02T09:28:29
servo: Merge #6510 - Update Worker location for redirects (from mintern:fix-worker-redirect-location); r=Ms2ger Fixes #4146 Source-Repo: https://github.com/servo/servo Source-Revision: be9d60664d26e979489fe891b7b11468bb89ba2a
diff --git a/script/dom/dedicatedworkerglobalscope.rs b/script/dom/dedicatedworkerglobalscope.rs index a3d06ee7b..6aea05e0e 100644 --- a/script/dom/dedicatedworkerglobalscope.rs +++ b/script/dom/dedicatedworkerglobalscope.rs @@ -149,15 +149,16 @@ impl DedicatedWorkerGlobalScope { parent_sen...
1
7
5
7c995b3882712d8d906aae9daa6b77216a27c203
Matt Brubeck
2015-07-01T13:54:15
servo: Merge #6528 - Reduce dependencies of the `util` crate (from mbrubeck:util_deps); r=Ms2ger Because almost all our main crates depend on util, we should keep its dependencies minimal to increase parallelism and reduce the amount of stuff rebuilt when upstream crates are changed. Source-Repo: https://github.com/s...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index db014d7f9..ace2a499b 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -1055,7 +1055,7 @@ impl<Window: WindowMethods> IOCompositor<Window> { fn device_pixels_per_screen_px(&self) -> ScaleFactor<ScreenPx, DevicePixel,...
11
24
57
93cd5173878c5db9893f3cee1543930c23283787
Matt Brubeck
2015-07-01T10:01:51
servo: Merge #6527 - Remove gfx dependency from script crate (from mbrubeck:script_deps); r=larsbergstrom This dependency is not used anywhere. Source-Repo: https://github.com/servo/servo Source-Revision: e958d92be6c35234bcffce2d4e74ece585de02e4
diff --git a/script/Cargo.toml b/script/Cargo.toml index 84da9d7c9..9d343baee 100644 --- a/script/Cargo.toml +++ b/script/Cargo.toml @@ -36,9 +36,6 @@ path = "../devtools_traits" [dependencies.style] path = "../style" -[dependencies.gfx] -path = "../gfx" - [dependencies.canvas] path = "../canvas" diff --git a/s...
2
0
4
058d99be6c078be8ca46bb7701e9e340e1e45f14
Yoav Alon
2015-07-01T02:05:06
servo: Merge #6434 - Added support for mouseover and mouseout events (from yoava333:mouseover); r=nox fixes issue https://github.com/servo/servo/issues/6404 Source-Repo: https://github.com/servo/servo Source-Revision: 9897125b34762f4756bc40aa43fa2e51b1ef5fa4
diff --git a/script/dom/document.rs b/script/dom/document.rs index d63dcd017..0a1c5a428 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -259,6 +259,9 @@ pub trait DocumentHelpers<'a> { fn get_body_attribute(self, local_name: &Atom) -> DOMString; fn set_body_attribute(self, local_name: &Ato...
1
41
18
b1468fd0c325e2e9c92dd678fae90a4c2ba99c2e
Martin Robinson
2015-06-30T23:02:26
servo: Merge #6525 - Update to latest rust-layers (from mrobinson:simplify-display); r=glennw The compositing context, painting context and display metadata have all been collapsed into a single NativeDisplay class. Source-Repo: https://github.com/servo/servo Source-Revision: 4674afe846df6720882da28cbd2c3087c17d0b22
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 2bc78a392..db014d7f9 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -4,7 +4,7 @@ use compositor_layer::{CompositorData, CompositorLayer, WantsScrollEventsFlag}; use compositor_task::{CompositorEventListener, Composit...
8
48
59
dc5b8088b77375d08a83a7d0b51ed6cc5a0de8df
Michael Wu
2015-06-30T14:45:39
servo: Merge #6523 - Auto-derive JSTraceable and Reflectable for ServoHTMLParser (from michaelwu:autoderive-servohtmlparser); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 52f2c4dc5e5aff426c1743e69b24612e3128bdfa
diff --git a/script/dom/servohtmlparser.rs b/script/dom/servohtmlparser.rs index 35ffad678..0f063c348 100644 --- a/script/dom/servohtmlparser.rs +++ b/script/dom/servohtmlparser.rs @@ -12,7 +12,7 @@ use dom::bindings::global::GlobalRef; use dom::bindings::trace::JSTraceable; use dom::bindings::js::{JS, Root}; use do...
1
7
25
866941b2ddc315e92131759e632db878a817564e
Ms2ger
2015-06-30T14:44:05
servo: Merge #6522 - Update some submodules (from Ms2ger:update); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 1e0c89390cced7ab55b83925c7c4130d7fd07753
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index b59d0c95e..1b249ade5 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -50,7 +50,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "azure" version = "0.1.0" -source = "git+https://github.com/servo/rust-azure#d4ae702d7...
1
8
8
f0cc658bbf008c39ba201d2c4f023ef6a09dbb68
Michael Wu
2015-06-29T23:05:18
servo: Merge #6516 - Add JSAutoRequest/JSAutoCompartment to HTMLIFrameElement (from michaelwu:fix-mozbrowser); r=glennw Fixes https://github.com/servo/servo/issues/6515 Source-Repo: https://github.com/servo/servo Source-Revision: 836463b9e03f441aaf213ff48c99d50d8c1be5a5
diff --git a/script/dom/htmliframeelement.rs b/script/dom/htmliframeelement.rs index c6c5ca85f..f38a591bd 100644 --- a/script/dom/htmliframeelement.rs +++ b/script/dom/htmliframeelement.rs @@ -14,6 +14,7 @@ use dom::bindings::error::{ErrorResult, Fallible}; use dom::bindings::error::Error::NotSupported; use dom::bind...
1
4
1
27ae7d7247fb094ee9d4e57ec5daca3c0a8d0d8a
Jesse Ruderman
2015-06-29T17:44:03
servo: Merge #6495 - Add keyboard shortcuts to glutin browser (from jruderman:add_keyboard_shortcuts_2); r=metajack Supersedes #6488. Changes since then: * Fix a few places where we needed cfg(feature = "window") in order to compile without the feature. * Zoom-in shortcut now works both with and without shift. (Uses ...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 0613d337b..2bc78a392 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -851,6 +851,10 @@ impl<Window: WindowMethods> IOCompositor<Window> { self.on_zoom_window_event(magnification); } + ...
3
14
0
95095b84bf133e0db124846b6f978c8ed66505a6
Ms2ger
2015-06-28T20:01:47
servo: Merge #6507 - Fix a bug in Node::pre_insert (from Ms2ger:node-insert); r=Manishearth It was accidentally broken in 3ce368fa289bc4c6d09b23357350a37b861013f9. Source-Repo: https://github.com/servo/servo Source-Revision: 6f25ecea3f3c1fc86c188447df18645ae6ea26f9
diff --git a/script/dom/node.rs b/script/dom/node.rs index 83244f554..35c07308a 100644 --- a/script/dom/node.rs +++ b/script/dom/node.rs @@ -1626,11 +1626,14 @@ impl Node { } // Step 7-8. + let reference_child_root; let reference_child = match child { - Some(child) if chil...
1
6
3
52f1f94460829b80c9b0f09c23b4d1f6e20019de
Ms2ger
2015-06-27T21:51:35
servo: Merge #6499 - Stop using position_elem (from Ms2ger:slice_position_elem); r=nox It is unstable and not really better than the stable alternative. Source-Repo: https://github.com/servo/servo Source-Revision: 46709edaf839eb77893eef3f4d01c568c46c98fe
diff --git a/script/dom/eventtarget.rs b/script/dom/eventtarget.rs index bbb266230..ab8da8923 100644 --- a/script/dom/eventtarget.rs +++ b/script/dom/eventtarget.rs @@ -310,7 +310,7 @@ impl<'a> EventTargetMethods for &'a EventTarget { phase: phase, listener: EventListenerType::...
2
2
4
0c2a717a6d8f751d5362b9a39d75e2d0ae0a6405
Ms2ger
2015-06-27T17:38:34
servo: Merge #6500 - Remove unused imports (from Ms2ger:warnings); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: dab4e73ee73a21e07ad73ec211b919a746a45624
diff --git a/script/dom/element.rs b/script/dom/element.rs index 445fd05be..269a08536 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -60,7 +60,6 @@ use dom::virtualmethods::{VirtualMethods, vtable_for}; use devtools_traits::AttrInfo; use smallvec::VecLike; -use style; use style::legacy::{Unsigne...
3
1
6
1de3a57455bea416b9d34f0397c50cadca10e3e9
Ms2ger
2015-06-27T16:27:03
servo: Merge #6498 - Remove Deref and DerefMut implementations from WeakFlowRef (from Ms2ger:weak-deref); r=metajack By definition of a weak pointer, these implementations cannot be safe. Source-Repo: https://github.com/servo/servo Source-Revision: 82be491fa318f742720dc0a31f6c1b24beb57a3d
diff --git a/layout/flow.rs b/layout/flow.rs index 5d10a6d9f..5227f97dc 100644 --- a/layout/flow.rs +++ b/layout/flow.rs @@ -1393,7 +1393,7 @@ impl ContainingBlockLink { panic!("Link to containing block not established; perhaps you forgot to call \ `set_absolute_descendants`?")...
2
13
22
73c357fd4dbff6e5341997f12a6a818786833f95
Ms2ger
2015-06-27T08:10:50
servo: Merge #6494 - Use an atomic bool for EXPERIMENTAL_ENABLED (from Ms2ger:atomic); r=metajack static mut smells, especially as it can be set and read from multiple threads (for example in unit tests). Source-Repo: https://github.com/servo/servo Source-Revision: 8892f8175d84126f938965bc7256ba3f3f4c14d5
diff --git a/util/opts.rs b/util/opts.rs index 3c5be3888..27d6f327d 100644 --- a/util/opts.rs +++ b/util/opts.rs @@ -21,6 +21,7 @@ use std::mem; use std::path::Path; use std::process; use std::ptr; +use std::sync::atomic::{AtomicBool, Ordering, ATOMIC_BOOL_INIT}; use url::{self, Url}; /// Global flags for Servo,...
1
4
7
04ef8df081740c5c88a9fa4400eff9b0e49f67ae
Martin Robinson
2015-06-27T07:30:33
servo: Merge #6493 - Update to latest rust-layers (from mrobinson:new-rust-layers); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 9c5eb162ae29b6653918406a9dc1c4aa1147d040
diff --git a/gfx/paint_task.rs b/gfx/paint_task.rs index 1d02c153f..e0e2bc906 100644 --- a/gfx/paint_task.rs +++ b/gfx/paint_task.rs @@ -386,8 +386,7 @@ impl<C> PaintTask<C> where C: PaintListener + Send + 'static { // in case it dies in transit to the compositor task. let mut native_surface: NativeSu...
2
9
12
f03dd1d201d8432f5aa2be318649ca6c31c3742d
Michael Wu
2015-06-27T02:36:04
servo: Merge #6491 - Remove unnecessary uses of MutHeap (from michaelwu:mutable); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: b73eca160cc5d35faf422a946ec1d0812af89d6e
diff --git a/script/dom/htmlinputelement.rs b/script/dom/htmlinputelement.rs index 87c23d00b..21aaa4d82 100644 --- a/script/dom/htmlinputelement.rs +++ b/script/dom/htmlinputelement.rs @@ -89,7 +89,7 @@ struct InputActivationState { indeterminate: bool, checked: bool, checked_changed: bool, - checked_...
2
9
9
06f0158ad6919c978a7891091d3aef03535ea38e
Ms2ger
2015-06-26T23:10:40
servo: Merge #6482 - Stop using the deprecated Thunk API (from Ms2ger:thunk); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: f0dd71418e03945de8210c1dcf81e40f0c0ad5e1
diff --git a/util/lib.rs b/util/lib.rs index 4d7cfeec6..8dcd3d6ca 100644 --- a/util/lib.rs +++ b/util/lib.rs @@ -16,7 +16,6 @@ #![feature(slice_extras)] #![feature(step_by)] #![feature(step_trait)] -#![feature(thunk)] #![feature(zero_one)] #![plugin(string_cache_plugin)] diff --git a/util/taskpool.rs b/util/task...
2
3
4
ea0547667ebe3407aadbabf2c41ab76e63c56e2f
Ms2ger
2015-06-26T22:01:23
servo: Merge #6477 - Stop using Vec::from_raw_buf (from Ms2ger:vec_from_raw_buf); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: aed11dc22c5b56081ddae8f5be29a22afcb488c8
diff --git a/script/dom/bindings/conversions.rs b/script/dom/bindings/conversions.rs index 1f29eeb68..9967b6cf9 100644 --- a/script/dom/bindings/conversions.rs +++ b/script/dom/bindings/conversions.rs @@ -448,11 +448,11 @@ impl FromJSValConvertible for ByteString { }; assert!(!chars.is_null())...
3
10
12
80dfeb01e61da994d8dbaa2739aeda85fd6e1ff4
Ms2ger
2015-06-26T21:26:25
servo: Merge #6474 - Use the heap module through its facade in libstd (from Ms2ger:alloc); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: e6db6ae61f3962b17b6e6b3af6249037484fdf0e
diff --git a/gfx/lib.rs b/gfx/lib.rs index dec7548cd..fb9e36884 100644 --- a/gfx/lib.rs +++ b/gfx/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(alloc)] #![feature(arc_weak)] #![feature(box_ra...
4
2
6
01d71f061373c85e5d3c34aad8f3800796a08ea7
Simon Sapin
2015-06-26T20:50:01
servo: Merge #6468 - Update rust-selectors (from servo:update-selectors); r=Ms2ger r? @Ms2ger https://github.com/servo/rust-selectors/pull/33 Source-Repo: https://github.com/servo/servo Source-Revision: c331db1623719774c3ead554bcdca0b9c02d90fe
diff --git a/layout/css/matching.rs b/layout/css/matching.rs index eae14f6a4..68ccf3c5c 100644 --- a/layout/css/matching.rs +++ b/layout/css/matching.rs @@ -17,6 +17,7 @@ use wrapper::{LayoutElement, LayoutNode}; use script::dom::characterdata::CharacterDataTypeId; use script::dom::node::NodeTypeId; use script::layo...
10
151
166
bdc480d8de86d496ae7ea54be83aa95c76d9c670
Ms2ger
2015-06-26T20:10:07
servo: Merge #6461 - Use a dedicated type for the opaque type parameter to WorkQueue in layout (from Ms2ger:workqueuedata); r=pcwalton Currently, we use UnsafeFlow and UnsafeLayoutNode, both of which are aliases for (usize, usize) and thus interconvertible. This change should make it clearer that the WorkQueue is not ...
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index 58a12cf94..e3349ef19 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -19,7 +19,7 @@ use fragment::{Fragment, FragmentBorderBoxIterator}; use incremental::{LayoutDamageComputation, REFLOW, REFLOW_ENTIRE_DOCUMENT, REPAINT}; use layout_de...
2
8
6
04e4996447fb80806bdb793b70629f6e74d5fcd2
Ms2ger
2015-06-26T18:55:23
servo: Merge #6473 - Stop using env::set_exit_code (from Ms2ger:args); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: b26818a7b09727a08bc3fa4af9fee02849b0dcdd
diff --git a/servo/main.rs b/servo/main.rs index 5ffc75d91..46f320a13 100644 --- a/servo/main.rs +++ b/servo/main.rs @@ -47,47 +47,47 @@ fn main() { env_logger::init().unwrap(); // Parse the command line options and store them globally - if opts::from_cmdline_args(&*get_args()) { - setup_logging()...
3
44
49
e634b51b0d4e028d34b0d7066daca1a376826d3e
Ms2ger
2015-06-26T12:45:48
servo: Merge #6463 - Reduce the scope of the unsafe block in ParallelPostorderDomTraversal (from Ms2ger:layout-reduce-unsafe); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: f812390d3a6f5097aa493313c6c90fd2fa320024
diff --git a/layout/parallel.rs b/layout/parallel.rs index 9cc60f31a..1792e41aa 100644 --- a/layout/parallel.rs +++ b/layout/parallel.rs @@ -12,7 +12,6 @@ use context::{LayoutContext, SharedLayoutContextWrapper, SharedLayoutContext}; use flow::{Flow, MutableFlowUtils, PreorderFlowTraversal, PostorderFlowTraversal}; u...
1
15
19
4438ac9fb795a94d48dbc67c025d3e929b5f44c6
Simon Sapin
2015-06-26T05:12:09
servo: Merge #6465 - Update to zero-copy* HTML parsing (from servo:tendril); r=pcwalton html5ever now uses the Tendril string type to minimize copying internally, but Servo still converts from/to `String` at the boundary (which involves copying). Source-Repo: https://github.com/servo/servo Source-Revision: 2165c55d64...
diff --git a/script/Cargo.toml b/script/Cargo.toml index 31be05ac9..84da9d7c9 100644 --- a/script/Cargo.toml +++ b/script/Cargo.toml @@ -76,7 +76,8 @@ num = "0.1.24" websocket = "0.12" uuid = "0.1.16" smallvec = "0.1" -html5ever = "0.1" +html5ever = "0.2" string_cache = "0.1" string_cache_plugin = "0.1" euclid = ...
5
37
12
d4c368f7a908eb32d1a2bb1dfa5741fc9ed24251
Matt Brubeck
2015-06-26T04:25:36
servo: Merge #6449 - Slice TextRuns by byte range instead of char range (from mbrubeck:byte_range); r=pcwalton Currently only the end of the byte range is used, but I plan to use the full range in some follow-up work. Fixes #6431. r? @pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 26982cb547f4...
diff --git a/layout/text.rs b/layout/text.rs index 2943fa255..6296dc876 100644 --- a/layout/text.rs +++ b/layout/text.rs @@ -240,19 +240,19 @@ impl TextRunScanner { let run = runs[mapping.text_run_index].clone(); let requires_line_break_afterward_if_wrapping_on_newlines = - ...
1
13
7
951026e9e0ea58f12bdb16f2af395a58e7632dcf
Michael Wu
2015-06-25T19:30:46
servo: Merge #6460 - Fix indentation in testbindingproxy.rs (from michaelwu:fix-indentation); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: ea06bebca9fab485485ce60bd3f464bc64bf1c36
diff --git a/script/dom/testbindingproxy.rs b/script/dom/testbindingproxy.rs index 52fb04cd3..a0bbb0612 100644 --- a/script/dom/testbindingproxy.rs +++ b/script/dom/testbindingproxy.rs @@ -1,30 +1,30 @@ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was...
1
22
22
00b38768fe6f21c9e7f22bea8a903e191a28e02d
Ms2ger
2015-06-25T18:03:15
servo: Merge #6459 - Update to rustc 2d0cbf3e3e25e092bd9e4c94d08e446b680869f0 (from servo:rustup_20150625); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 21b48fc44d0b32627918b4778fed16203eecdba5
diff --git a/canvas/lib.rs b/canvas/lib.rs index 4ef4afe39..99f5881cc 100644 --- a/canvas/lib.rs +++ b/canvas/lib.rs @@ -3,7 +3,9 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #![feature(core)] -#![feature(collections)] +#![feature(nonzero)] +#![feature(slice_bytes)] +#![feature(vec_push_all)] ...
15
119
65
a8ed26f3e4902e26a7786442ab18bd2b8be0a7e4
Ms2ger
2015-06-25T07:42:45
servo: Merge #6456 - Some cleanup in layout (from Ms2ger:cleanup-layout); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: 605b83da54dc7c33def4fb1e3162e377e1715d0b
diff --git a/layout/wrapper.rs b/layout/wrapper.rs index d56fb0925..561d750a7 100644 --- a/layout/wrapper.rs +++ b/layout/wrapper.rs @@ -575,13 +575,6 @@ impl<'le> TElementAttributes for LayoutElement<'le> { } } -fn get_content(content_list: &content::T) -> Vec<ContentItem> { - match *content_list { - ...
1
20
30
89bf3695951926350b06187d1296f799e91d082c
Corey Farwell
2015-06-25T06:56:48
servo: Merge #6458 - Remove unused js::JS_ARGV import in script component (from frewsxcv:unused-import); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 4c9afb2756e7f82f77a66cca3e8cd83462fcd661
diff --git a/script/dom/bindings/utils.rs b/script/dom/bindings/utils.rs index c57de127d..f8df9805e 100644 --- a/script/dom/bindings/utils.rs +++ b/script/dom/bindings/utils.rs @@ -57,7 +57,7 @@ use js::jsval::{BooleanValue, DoubleValue, Int32Value, JSVal, NullValue}; use js::jsval::{PrivateValue, UInt32Value, Undefin...
1
1
1
b1650e884d52133e2d34b5b453760ba8588a22b5
Ms2ger
2015-06-24T20:27:11
servo: Merge #6454 - Make {ThreadSafe,}LayoutNode::get_jsmanaged private (from Ms2ger:opaque); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: e02e7c517c30e87adcb61ef408d1ecddc7fb1458
diff --git a/layout/construct.rs b/layout/construct.rs index 2742c18d2..d3e568b10 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -31,7 +31,6 @@ use incremental::{RECONSTRUCT_FLOW, RestyleDamage}; use inline::{InlineFlow, InlineFragmentNodeInfo}; use list_item::{ListItemFlow, ListStyleTypeContent}; use...
6
22
39
f90c6e2a69a91891c6c9278fb19205bc32a50b0a
Glenn Watson
2015-06-24T19:51:15
servo: Merge #6457 - Trigger reflow after requestAnimationFrame callbacks (from glennw:raf-reflow); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: 6889f5fb4ec618a949c1308ce58099e7fc139d44
diff --git a/script/dom/document.rs b/script/dom/document.rs index 18426b42a..eaf68a380 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -931,6 +931,10 @@ impl<'a> DocumentHelpers<'a> for &'a Document { for (_, callback) in animation_frame_list { callback(*performance.Now()); ...
2
6
0
b7fbfda3636753b01c50192966bd211991cf5b5a
Ms2ger
2015-06-24T09:00:32
servo: Merge #6443 - Various layout cleanup (from Ms2ger:cleanup-layout); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 469b9550f6feec56d87ea5c772cb76453c13036a
diff --git a/layout/construct.rs b/layout/construct.rs index d3d210072..2742c18d2 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -16,7 +16,7 @@ use block::BlockFlow; use context::LayoutContext; use css::node_style::StyledNode; -use data::{HAS_NEWLY_CONSTRUCTED_FLOW, LayoutDataAccess, LayoutDataWrapper...
9
207
287
e227c11bd69c79c31d490863d31d12485fdad978
Hyowon Kim
2015-06-24T06:39:48
servo: Merge #6410 - Create pattern from HTMLCanvasElement or CanvasRenderingContext2D (from hyowon:create_pattern); r=pcwalton r? @nox @pcwalton cc @yichoi Source-Repo: https://github.com/servo/servo Source-Revision: 95d643c995a271fac11ab3d9aac97f2d0aac8934
diff --git a/script/dom/canvasrenderingcontext2d.rs b/script/dom/canvasrenderingcontext2d.rs index 2d4e38d48..798e1f558 100644 --- a/script/dom/canvasrenderingcontext2d.rs +++ b/script/dom/canvasrenderingcontext2d.rs @@ -275,7 +275,7 @@ impl CanvasRenderingContext2D { } fn fetch_image_data(&self, - ...
1
77
31
9dbf03b95081bfd792c84d07a2adc164ea720379
Pyfisch
2015-06-23T21:14:30
servo: Merge #6450 - Remove is_some() from mime_classifier.rs (from pyfisch:patch-1); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: b1021c36c53914a42bbc5c6e5ec7795dbf29f9d3
diff --git a/net/mime_classifier.rs b/net/mime_classifier.rs index db44f1ec3..7b9696dda 100644 --- a/net/mime_classifier.rs +++ b/net/mime_classifier.rs @@ -29,7 +29,7 @@ impl MIMEClassifier { } Some((ref media_type, ref media_subtype)) => { match (&**media_type, &**media_subt...
1
22
33
3fc76faeee2bad92dc9afa24fce25708c3d99f51
Ms2ger
2015-06-23T20:09:23
servo: Merge #6446 - Fix some warnings (from Ms2ger:warnings); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: e4412be1b6c0bd5284b2e177b527a3140053f39c
diff --git a/script/dom/browsercontext.rs b/script/dom/browsercontext.rs index d4d13c1e4..37065a7f6 100644 --- a/script/dom/browsercontext.rs +++ b/script/dom/browsercontext.rs @@ -29,6 +29,7 @@ use std::default::Default; #[jstraceable] #[privatize] +#[allow(raw_pointer_derive)] pub struct BrowserContext { hi...
2
6
5
0e9129bfa5e566da8e7bdb0a5ec5cd73edd5118f
Maciej Skrzypkowski
2015-06-23T09:17:46
servo: Merge #6405 - Refactoring, return an Atom from Element::parsed_name. #5774 (from mskrzypkows:element_parsed_name_refactor); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: e869e8ad08526bbbfffd390b52e423f58b8269f1
diff --git a/script/dom/element.rs b/script/dom/element.rs index 81e00710d..1b78b67cb 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -541,7 +541,7 @@ pub enum StylePriority { pub trait ElementHelpers<'a> { fn html_element_in_html_document(self) -> bool; fn local_name(self) -> &'a Atom; - ...
2
7
8
5c4958cb8c62257879896574d97d60328b1d9e95
Matt Brubeck
2015-06-22T22:23:27
servo: Merge #6445 - Simplify next_fragment and fix obsolete docs (from mbrubeck:next_fragment); r=pcwalton r? @pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: d86c5879255ec9ced621412d4565a9a66ee4dc72
diff --git a/layout/inline.rs b/layout/inline.rs index 93a62c484..468daa22d 100644 --- a/layout/inline.rs +++ b/layout/inline.rs @@ -301,22 +301,11 @@ impl LineBreaker { } /// Acquires a new fragment to lay out from the work list or fragment list as appropriate. - /// If the fragment was at the end of an...
1
1
12
91e8312129a505ff40eac9a0076f2539d5cf38d0
Robert Knight
2015-06-22T19:46:56
servo: Merge #6373 - Use a faster scroll speed under X11 (from robertknight:gh5660-rob-x11_scroll_speed); r=pcwalton Platforms may report scroll deltas either in chunks/lines/rows or pixels, depending on the platform API and device capabilities. If the platform reports a line/chunk-based delta then the application ne...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 67beda733..2760747c7 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -476,7 +476,7 @@ dependencies = [ [[package]] name = "glutin" version = "0.0.26" -source = "git+https://github.com/servo/glutin?branch=servo#3d39d1bb45a6f76be846ed92f946424e24109141" +s...
1
1
1
30319f8db4809098c9ce63c9d3862af3c2c3275a
Ms2ger
2015-06-22T11:05:08
servo: Merge #6444 - Remove some unnecessary clones (from Ms2ger:clone); r=saneyuki Source-Repo: https://github.com/servo/servo Source-Revision: c6ca389d546cbf3f3859a5549e3fc86d5381d680
diff --git a/servo/lib.rs b/servo/lib.rs index 5842a0b22..6f45a1757 100644 --- a/servo/lib.rs +++ b/servo/lib.rs @@ -124,7 +124,7 @@ impl Browser { let compositor = CompositorTask::create(window, compositor_proxy, ...
1
2
2
62a13c256e4392f524f2568f8518545f612c8bb9
Ms2ger
2015-06-22T05:40:46
servo: Merge #6440 - Update rust-mozjs (from Ms2ger:finalizeInBackground); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: d85afb744a5538135eca2a2b67c5be3ccc8373be
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index beb59e14f..67beda733 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -600,7 +600,7 @@ dependencies = [ [[package]] name = "js" version = "0.1.0" -source = "git+https://github.com/servo/rust-mozjs#d0c4bd28930e809bf0af38cc8c034cbc61afa545" +source = "git+h...
1
1
1
da645f2106ade5cde5990af7c33d8662110d8869
Simon Sapin
2015-06-21T17:12:07
servo: Merge #6427 - Update rust-selectors (from servo:selector-traits-refactor); r=Ms2ger https://github.com/servo/rust-selectors/pull/30 r? @Ms2ger This conflicts with the SpiderMonkey upgrade #6150. I’m happy to wait until that lands and rebase. Source-Repo: https://github.com/servo/servo Source-Revision: c119b5...
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index ec5a37df7..1cad88557 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -68,7 +68,6 @@ use std::sync::mpsc::{channel, Sender, Receiver, Select}; use std::sync::{Arc, Mutex, MutexGuard}; use style::computed_values::{filter, mix_blend_mode}...
8
99
118
95e286b259e88931d5935ef904e07e46f8a96435
Ms2ger
2015-06-21T14:31:04
servo: Merge #6437 - Implement AttrHelpersForLayout for LayoutJS<Attr> rather than Attr itself (from Ms2ger:AttrHelpersForLayout); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: bf64e2765aeb88611e781abeae4360f69a3a6caa
diff --git a/script/dom/attr.rs b/script/dom/attr.rs index 5ec04a8df..d0a823621 100644 --- a/script/dom/attr.rs +++ b/script/dom/attr.rs @@ -7,7 +7,7 @@ use dom::bindings::codegen::Bindings::AttrBinding::{self, AttrMethods}; use dom::bindings::codegen::InheritTypes::NodeCast; use dom::bindings::global::GlobalRef; us...
3
21
24
e123fa39bb06e146b727b08bad9150b30567fab4
Ms2ger
2015-06-21T09:54:21
servo: Merge #6417 - Require documentation for the memory profiling module (from servo:profile-docs); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: b8c7f49ce8a130a057eea4cfc912bd68c99687aa
diff --git a/profile_traits/lib.rs b/profile_traits/lib.rs index 25dbb0b4c..1a20a02c2 100644 --- a/profile_traits/lib.rs +++ b/profile_traits/lib.rs @@ -2,5 +2,9 @@ * 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/. */ +//! This module ...
2
16
0
cd9d54927de09b7fcfde4b7970127d629b20194f
Hyowon Kim
2015-06-20T12:44:08
servo: Merge #6413 - Check invalid values for the shadow attributes (from hyowon:invalid_shadow_attrs); r=Ms2ger I left out checking invalid values when setting the shadows attributes. r? @nox @pcwalton cc @yichoi Source-Repo: https://github.com/servo/servo Source-Revision: 02303941bef5f5bbdbec750ab0dfa0b77f32345a
diff --git a/script/dom/canvasrenderingcontext2d.rs b/script/dom/canvasrenderingcontext2d.rs index c92c9fcdf..2d4e38d48 100644 --- a/script/dom/canvasrenderingcontext2d.rs +++ b/script/dom/canvasrenderingcontext2d.rs @@ -1124,6 +1124,9 @@ impl<'a> CanvasRenderingContext2DMethods for &'a CanvasRenderingContext2D { ...
1
15
2
f42424281cf0c4f78d5a875dd724a8ab098b13bd
Michael Wu
2015-06-20T02:56:29
servo: Merge #6433 - Fix some warnings caused by the SM upgrade (from michaelwu:fix-smup-warnings); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: 72ead882c08fbd66d59457efd1ebf86ee4ee97f2
diff --git a/script/dom/bindings/callback.rs b/script/dom/bindings/callback.rs index bc6077c8c..dc1bd386a 100644 --- a/script/dom/bindings/callback.rs +++ b/script/dom/bindings/callback.rs @@ -143,7 +143,7 @@ impl CallbackInterface { /// Wraps the reflector for `p` into the compartment of `cx`. pub fn wrap_call_this_...
13
16
19
39f78c46b489b635e93dc7bdef2375c646e465a8
Glenn Watson
2015-06-19T03:57:55
servo: Merge #6424 - Update gleam to 0.1.1 (from glennw:update-gleam); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: a256f39796270cd3a5f40f33eaa4e407117b0cc6
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 10ff5f381..b181a407e 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -80,7 +80,7 @@ dependencies = [ "cssparser 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "euclid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "gf...
1
8
8
c9b37fbec6fedc9f65d02f23d9e02c79cde7702c
Glenn Watson
2015-06-18T02:29:44
servo: Merge #6403 - Fix computed value of outline width when outline style is not set (from glennw:fix-outline-width); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: fd44db2190ac4f2d8b71d048600b22554ab86f2e
diff --git a/style/properties.mako.rs b/style/properties.mako.rs index 3f66a7333..93b95a60e 100644 --- a/style/properties.mako.rs +++ b/style/properties.mako.rs @@ -5732,6 +5732,12 @@ pub fn cascade(viewport_size: Size2D<Au>, box_.display = box_.display.to_computed_value(&context); } + // The initial...
1
11
0
f5bb60e01e5ae6514ff1db1d2370eb9a8a98b597
Hyowon Kim
2015-06-17T19:32:25
servo: Merge #6402 - Fill and stroke for all pattern types and check the zero size gradient (from hyowon:canvas_fill_stroke); r=pcwalton Depends on servo/rust-azure#170 which has been already merged. So this patch contains the update of rust-azure. r? @nox cc @yichoi Source-Repo: https://github.com/servo/servo Source...
diff --git a/canvas/canvas_paint_task.rs b/canvas/canvas_paint_task.rs index dfe262d27..c09dc0215 100644 --- a/canvas/canvas_paint_task.rs +++ b/canvas/canvas_paint_task.rs @@ -250,6 +250,10 @@ impl<'a> CanvasPaintTask<'a> { } fn fill_rect(&self, rect: &Rect<f32>) { + if is_zero_size_gradient(&self.s...
3
47
29
40c57cf1ddc42a3195d7b0e8e0ea87cf29b7944f
James Graham
2015-06-17T16:16:27
servo: Merge #6401 - Implement timeout for url load from WebDriver (from jgraham:load_timeout); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: ee54c89e3f801dcd90a494c65ff8cfd975a6be6f
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index cbca7b48a..13dbb1103 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -190,7 +190,7 @@ pub struct SendableFrameTree { } struct WebDriverData { - load_channel: Option<(PipelineId, Sender<webdriver_msg::Lo...
4
23
11
d068a33bc6a9c19a1ab6c801a9d2c3aecac7b1da
Hyowon Kim
2015-06-16T11:30:20
servo: Merge #6355 - Implement drawing shadows in canvas (from hyowon:drawing_shadows); r=nox https://html.spec.whatwg.org/multipage/#when-shadows-are-drawn r? @nox cc @mmatyas @yichoi Source-Repo: https://github.com/servo/servo Source-Revision: 48e1d45bffaf7679d1f9487038a104f373a90e5a
diff --git a/canvas/canvas_paint_task.rs b/canvas/canvas_paint_task.rs index ca5afcbda..dfe262d27 100644 --- a/canvas/canvas_paint_task.rs +++ b/canvas/canvas_paint_task.rs @@ -54,40 +54,6 @@ impl<'a> CanvasPaintTask<'a> { image_data } - /// It writes image data to the canvas - /// source_rect: th...
1
134
59
abfe1743f52b468e1c85b03c33543da8f57a5670
Jinwoo Song
2015-06-16T07:47:10
servo: Merge #6397 - WebSocket constructor should not panic (from servo:ws-connect); r=Ms2ger Make an early return when the WebSocket connection fails in the constructor. Also let the WebSocket connection to be closed when the connection could not be established. Fixes #6082. Source-Repo: https://github.com/servo/se...
diff --git a/script/dom/websocket.rs b/script/dom/websocket.rs index c0c6a6248..9272346d4 100644 --- a/script/dom/websocket.rs +++ b/script/dom/websocket.rs @@ -141,7 +141,16 @@ impl WebSocket { // TODO Client::connect does not conform to RFC 6455 // see https://github.com/cyderize/rust-websocket/is...
1
10
1
50907e332299d29d174399dd452952a5cd7e51eb
Simon Sapin
2015-06-16T06:42:36
servo: Merge #6396 - Use html5ever and string-cache from crates.io (from SimonSapin:crates.io-html5ever); r=Ms2ger r? @metajack Source-Repo: https://github.com/servo/servo Source-Revision: 4435e6f42a1b57a3e6a0cfbb1033525fef5db174
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index 2e307dcf6..5b5bc0010 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -53,9 +53,6 @@ git = "https://github.com/servo/skia" [dependencies.script_traits] path = "../script_traits" -[dependencies.string_cache] -git = "https://github.com/servo/string-cache" - [depe...
6
43
68
7ae58baadd06a04ed052391f72bb1667453a92a2
Simon Sapin
2015-06-15T21:08:43
servo: Merge #6395 - Use cgl and gleam from crates.io (from SimonSapin:crates.io-cgl-gleam); r=metajack r? @metajack Source-Repo: https://github.com/servo/servo Source-Revision: 5d89235c5696a65bcf93a5da5244093294eb4fbe
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index 1d614316a..2cf2771cb 100644 --- a/canvas/Cargo.toml +++ b/canvas/Cargo.toml @@ -16,8 +16,6 @@ git = "https://github.com/servo/rust-geom" [dependencies.layers] git = "https://github.com/servo/rust-layers" -[dependencies.gleam] -git = "https://github.com/servo/...
3
20
23
204dfe808909a6008bf83edb1a72a982d2f0802b
Manish Goregaokar
2015-06-15T16:33:14
servo: Merge #6377 - Upgrade to rustc 1.2.0-nightly (6e7fcc44a 2015-06-13) (from servo:rustup_20140614); r=SimonSapin See #6376 r? @Ms2ger Snaps don't exist yet, putting up the @larsbergstrom signal. The snap need not exactly match this commit, anything in the vicinity, or just master, should work really. (yay stabi...
diff --git a/layout/animation.rs b/layout/animation.rs index a2a3e1c54..4e500a3d0 100644 --- a/layout/animation.rs +++ b/layout/animation.rs @@ -68,6 +68,7 @@ pub fn process_new_animations(rw_data: &mut LayoutTaskData, pipeline_id: Pipelin /// Recalculates style for an animation. This does *not* run with the DOM loc...
9
154
134
3cc5a701b03240f620e00314219ca308cbb2b89c
Simon Sapin
2015-06-15T15:23:22
servo: Merge #6388 - Remove usage of String::from_str, deprecated in #6377 (from SimonSapin:from_str); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 91cae119311064cab7f20ff898c1d885054907b5
diff --git a/script/dom/cssstyledeclaration.rs b/script/dom/cssstyledeclaration.rs index eb0e473ca..1e0b13b2e 100644 --- a/script/dom/cssstyledeclaration.rs +++ b/script/dom/cssstyledeclaration.rs @@ -211,7 +211,7 @@ impl<'a> CSSStyleDeclarationMethods for JSRef<'a, CSSStyleDeclaration> { } // Step ...
3
4
4
74baff286ac242b116667237ebec6da4c2e32bd2
Ms2ger
2015-06-14T09:55:56
servo: Merge #6325 - Use str::parse() rather than FromStr::from_str (from Ms2ger:from_str); r=nox The former appears to be preferred. Source-Repo: https://github.com/servo/servo Source-Revision: db2eb36e19581eee83247160bbb03e2a671d0479
diff --git a/layout/fragment.rs b/layout/fragment.rs index dddf6fa25..b6af941ec 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -34,7 +34,6 @@ use std::borrow::ToOwned; use std::cmp::{max, min}; use std::collections::LinkedList; use std::fmt; -use std::str::FromStr; use std::sync::mpsc::Sender; use std...
5
10
17
e9d82ddefdc98eafd5d94834befc899db87ae6e2
Ms2ger
2015-06-13T16:49:00
servo: Merge #6370 - Update the Cargo.locks (from Ms2ger:locks); r=mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: a9aa50683fec9ade7969e1ed29a9bc21d798f97e
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index c40d14920..03579044c 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -1041,7 +1041,6 @@ dependencies = [ "fnv 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "geom 0.1.0 (git+https://github.com/servo/rust-geom)", "gfx 0.0.1", - "gfx_tr...
1
0
1
050589d9dbb77406d265effc291cbe0b59836ac7
ecoal95
2015-06-13T08:31:33
servo: Merge #6356 - Add WebGL android support (from emilio:webgl-android); r=jdm This just bumps `offscreen_gl_context`, which added egl support recently. Source-Repo: https://github.com/servo/servo Source-Revision: b0a80de92bf946696fdc9c227439796b094bfde7
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 1ed78b6b0..c40d14920 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -248,7 +248,7 @@ dependencies = [ [[package]] name = "egl" version = "0.1.0" -source = "git+https://github.com/servo/rust-egl#c0159346b3adfdcf13f2cd86f5ee41750a72c078" +source = "git+ht...
1
4
2