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
d034edecc1dd34930f5c875ea9d76e49fbb08eb9
Simon Sapin
2015-04-22T16:13:25
servo: Merge #5794 - `vertical-align` can take negative lengths and percentages (from SimonSapin:negative-vertical-align); r=Manishearth http://dev.w3.org/csswg/css2/visudet.html#propdef-vertical-align Source-Repo: https://github.com/servo/servo Source-Revision: 8efd70b01b0ff9b42722e6b9d88940f6944ebba2
diff --git a/style/properties.mako.rs b/style/properties.mako.rs index a1acc73ae..f41f2feaa 100644 --- a/style/properties.mako.rs +++ b/style/properties.mako.rs @@ -608,7 +608,7 @@ pub mod longhands { /// baseline | sub | super | top | text-top | middle | bottom | text-bottom /// | <percentage> | <len...
1
1
1
fcffb8bd539a4c144ecf72c92eeb0a7d327ec0a7
Ms2ger
2015-04-22T12:08:41
servo: Merge #5790 - Store a Runtime object in ScriptTask (from Ms2ger:new_rt_and_cx); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 886805d76c206214047c475c6f8947c8c38c40b7
diff --git a/script/dom/bindings/trace.rs b/script/dom/bindings/trace.rs index 3d32abb61..10e13c90a 100644 --- a/script/dom/bindings/trace.rs +++ b/script/dom/bindings/trace.rs @@ -45,7 +45,7 @@ use hyper::header::Headers; use hyper::method::Method; use js::jsapi::{JSObject, JSTracer, JS_CallTracer, JSGCTraceKind}; ...
3
18
22
cb466d7ff8296b1e74ec51fa9645a915f54c0bec
Adenilson Cavalcanti
2015-04-22T00:01:38
servo: Merge #5783 - Using FF broken image icon (from Adenilson:ffBrokenImage01); r=mbrubeck Got it from: https://mxr.mozilla.org/mozilla-central/source/layout/generic/broken-image.png Source-Repo: https://github.com/servo/servo Source-Revision: 533949150b7139ddbd22e1df3585fa959d376001
diff --git a/net/image_cache_task.rs b/net/image_cache_task.rs index 0eeff0820..b231f69ec 100644 --- a/net/image_cache_task.rs +++ b/net/image_cache_task.rs @@ -129,7 +129,6 @@ impl ImageCache { // Used to preload the default placeholder. fn init(&mut self) { let mut placeholder_url = resources_dir_p...
1
0
1
1e821f9cdfc59efa72d9b6def19e94ec6fe244d7
Avi Weinstock
2015-04-21T19:41:32
servo: Merge #5547 - X11 clipboard support (from aweinstock314:x11-clipboard); r=jdm Manual re-opening of #5479 (since it seems that GitHub disables re-opening with the same number after a rebase). Source-Repo: https://github.com/servo/servo Source-Revision: 9974ebb2f969d2de8959fe74844b7410a5acd54e
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index d9fc51499..37035dec2 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -58,6 +58,9 @@ git = "https://github.com/servo/rust-core-text" [dependencies.gleam] git = "https://github.com/servo/gleam" +[dependencies.clipboard] +git = "htt...
8
66
5
d9e42e4bd0ee6760120017115661efc4533b415d
Simon Sapin
2015-04-21T19:06:22
servo: Merge #5776 - Split the unit tests crate (from servo:split-unit-tests); r=mbrubeck Closes #5707. (Includes a rebase of it.) Fixes #5688. r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: f795440ee3be976d9819b011d4add7ceee3ade1e
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 21b195566..a984dcf45 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -8,18 +8,22 @@ dependencies = [ "devtools 0.0.1", "devtools_traits 0.0.1", "gfx 0.0.1", + "gfx_tests 0.0.1", "glutin_app 0.0.1", "layout 0.0.1", "msg 0.0.1", "net 0.0.1", + "...
2
68
24
73f74f1b8c38129da454ef33e226641409ef6ada
Maciej Skrzypkowski
2015-04-21T15:23:03
servo: Merge #5594 - Refactoring, added conversion to lowercase for get_attribute_by_name method. (fixes #5561) (from mskrzypkows:get_attribute_by_name); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: a3dafe49999d24e12b2f6b5cc74b468e58b7384a
diff --git a/script/dom/element.rs b/script/dom/element.rs index 88366f591..f47651629 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -435,7 +435,6 @@ impl<'a> ElementHelpers<'a> for JSRef<'a, Element> { &self.extended_deref().local_name } - // https://dom.spec.whatwg.org/#concept-e...
2
6
8
c225f0aead1cb2303490182aba6c93129dabbd95
Dhananjay Nakrani
2015-04-21T13:05:48
servo: Merge #5758 - Move actor_workers HashMap outside handle_new_global(). [Issue#5735] (from dhananjay92:Issue#5735); r=jdm Solves #5735. Source-Repo: https://github.com/servo/servo Source-Revision: fe61cdc95da968c21bc15d01cdb16e470f67c492
diff --git a/devtools/lib.rs b/devtools/lib.rs index 90e971872..e2d06a766 100644 --- a/devtools/lib.rs +++ b/devtools/lib.rs @@ -114,6 +114,8 @@ fn run_server(sender: Sender<DevtoolsControlMsg>, let mut actor_pipelines: HashMap<PipelineId, String> = HashMap::new(); + let mut actor_workers: HashMap<(Pipeline...
1
4
3
3cd6ff91476cc5d10801ef4085cb57bd4a53c148
Adenilson Cavalcanti
2015-04-20T20:01:44
servo: Merge #5759 - Skip computing fragment position and return early if visibility property is not set (from Adenilson:visibleReturn01); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 23945f2ea865710751e9c822b367598eddd86e1f
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index a8f4d8e8b..e92d04112 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -790,6 +790,10 @@ impl FragmentDisplayListBuilding for Fragment { relative_containing_block_mode: Writing...
1
4
4
09a14f0ee13668a1d86e6112d7c9f0e932261c64
Ms2ger
2015-04-20T18:17:43
servo: Merge #5752 - Make ScriptTask::js_context immutable (from Ms2ger:cx-immutable); r=jdm Since we drop the ScriptTask almost immediately after clearing the field, there's little reason to do it manually. Source-Repo: https://github.com/servo/servo Source-Revision: ccc77caa79344a45003f1efb7184cec5b882edae
diff --git a/script/script_task.rs b/script/script_task.rs index c9c51eaeb..92a5dccb7 100644 --- a/script/script_task.rs +++ b/script/script_task.rs @@ -311,7 +311,7 @@ pub struct ScriptTask { /// The JavaScript runtime. js_runtime: js::rust::rt, /// The JSContext. - js_context: DOMRefCell<Option<Rc<C...
1
4
11
d4f74e469d7779eee76954d725371d085d091881
Ms2ger
2015-04-20T12:36:06
servo: Merge #5750 - Parse attributes according to the specification in AttrValue::from_u32 (from Ms2ger:from_u32); r=jdm This exposes another bug: "-0" failed to parse with str.parse(), and is now successfully parsed into 0. However, input.size and textarea.{rows, cols} are supposed to be "limited to only non-negativ...
diff --git a/script/dom/attr.rs b/script/dom/attr.rs index cdc472d6e..55ad525bb 100644 --- a/script/dom/attr.rs +++ b/script/dom/attr.rs @@ -16,7 +16,7 @@ use dom::window::Window; use dom::virtualmethods::vtable_for; use devtools_traits::AttrInfo; -use util::str::{DOMString, split_html_space_chars}; +use util::str:...
1
2
3
a711dc3d2716f86d55d3ce3710603a714aab54cd
Glenn Watson
2015-04-19T23:13:59
servo: Merge #5559 - Support focus management and keyboard events for iframes (from glennw:iframe-focus); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 8b8daa24b8d25c531ea74a70b4b6e25cb3d7d58c
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 3d098fbe0..0520fa485 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -87,6 +87,9 @@ pub struct Constellation<LTF, STF> { /// The next free ID to assign to a frame. next_frame_id: FrameId, + /// ...
6
141
39
684bbe17f3bcd8eea8b438992d46a02b970e06d9
Dhananjay Nakrani
2015-04-19T22:00:56
servo: Merge #5744 - Change parse_progress() take JSRef by value. [Issue#5738] (from dhananjay92:Issue#5738); r=Manishearth *This PR solves Issue #5738* Source-Repo: https://github.com/servo/servo Source-Revision: 4474321829d0a1ead7a5ba30fbc9225cd1131319
diff --git a/script/parse/html.rs b/script/parse/html.rs index 5fb991745..1424c7218 100644 --- a/script/parse/html.rs +++ b/script/parse/html.rs @@ -275,7 +275,7 @@ pub fn parse_html(document: JSRef<Document>, task_state::enter(IN_HTML_PARSER); } - fn parse_progress(parser: &JSRef<ServoHTMLParser>, u...
1
3
3
f74ada1b1dbf5dec3211322f2daed19a4b49f670
Marcus Klaas
2015-04-19T15:10:57
servo: Merge #5742 - Replace usage of ResponseSenders by LoadConsumer (from marcusklaas:issue-5718); r=jdm This closes issue https://github.com/servo/servo/issues/5718. Source-Repo: https://github.com/servo/servo Source-Revision: f164cc253eb876d82ab7c52268751db250ef8f8f
diff --git a/net/about_loader.rs b/net/about_loader.rs index e12fc3283..11533c353 100644 --- a/net/about_loader.rs +++ b/net/about_loader.rs @@ -2,7 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -use net_traits::{LoadDat...
6
23
38
3392aac06cad9f7fa78c66a2b7cc3fcbb231b726
Ms2ger
2015-04-19T14:37:29
servo: Merge #5741 - Use get_attr_for_layout more (from Ms2ger:attr-for-layout); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: e5ec55f0d8d4ec17aab3682e6d3048c88c6f458e
diff --git a/script/dom/element.rs b/script/dom/element.rs index 24eda14ca..88366f591 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -171,14 +171,14 @@ pub trait RawLayoutElementHelpers { #[inline] #[allow(unsafe_code)] -unsafe fn get_attr_for_layout<'a>(elem: &'a Element, namespace: &Namespace, ...
1
10
29
e079edb22321476750b26dadd6b40bcf18f253c1
Bogdan Cuza
2015-04-19T14:05:23
servo: Merge #5567 - Make mouse_over_targets a RootedVec (from boghison:document_rootedvec); r=jdm Fixes #5539 Source-Repo: https://github.com/servo/servo Source-Revision: 331708f0f6d4bff8cec608e963fb24f79cf1ffca
diff --git a/script/dom/document.rs b/script/dom/document.rs index 41a5753f4..3fc822151 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -231,7 +231,7 @@ pub trait DocumentHelpers<'a> { fn handle_mouse_move_event(self, js_runtime: *mut JSRuntime, ...
2
17
13
9575cd55cbd8e91f517d3ea28211b2c45d2b90d0
Corey Farwell
2015-04-18T10:44:50
servo: Merge #5739 - Add links to the spec for components/style (from frewsxcv:style-docs); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 40ee41ca92206768b53cb5768c0b38fd7ba439dc
diff --git a/style/media_queries.rs b/style/media_queries.rs index ce69b0b07..2f649e1dd 100644 --- a/style/media_queries.rs +++ b/style/media_queries.rs @@ -29,7 +29,7 @@ impl Range<specified::Length> { match width { &specified::Length::Absolute(value) => value, &specified...
2
13
1
7cc26f8c71c58fc708ef04c73e845f45f0bba21b
Adenilson Cavalcanti
2015-04-17T20:33:06
servo: Merge #5728 - Allow dumping the optimized display list (DL) (from Adenilson:optimDL01); r=metajack This DL is created at paint time, per tile. To dump, pass -Z dump-display-list-optimized at startup. Source-Repo: https://github.com/servo/servo Source-Revision: ca8c0f353c2a13f6dbf7c4597a742d684c84c0d9
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index c31c7b344..1a12ec4a3 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -34,6 +34,7 @@ use libc::uintptr_t; use paint_task::PaintLayer; use msg::compositor_msg::LayerId; use net_traits::image::base::Image; +use util::opts; use u...
2
13
1
c25956d20fec23b9d223b2abf952b70978ef45f6
Marcus Klaas
2015-04-17T12:53:06
servo: Merge #5733 - Remove unnecessary clone in Document constructor (from marcusklaas:issue-5719); r=Manishearth This closes issue https://github.com/servo/servo/issues/5719. Source-Repo: https://github.com/servo/servo Source-Revision: c3ed0fd57377c617ef877cd685d3248ce37d1710
diff --git a/script/dom/document.rs b/script/dom/document.rs index bab20db68..efba13bd3 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -794,7 +794,7 @@ impl Document { implementation: Default::default(), location: Default::default(), content_type: match conten...
1
1
1
a8c7fca88e63e2bec012706caf674c401b32e065
Ms2ger
2015-04-16T19:15:16
servo: Merge #5717 - Fix URLSearchParams formatting (from Ms2ger:usp); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: e26219828bfd71c5dfce411f93f2ea5dbb131d7a
diff --git a/script/dom/urlsearchparams.rs b/script/dom/urlsearchparams.rs index 0c234cb26..1e418c4b6 100644 --- a/script/dom/urlsearchparams.rs +++ b/script/dom/urlsearchparams.rs @@ -140,7 +140,7 @@ impl URLSearchParamsHelpers for URLSearchParams { // Encode everything else using 'percented-enc...
1
1
1
4920ed784da2ef627334c43b1c336ee194697d12
Joseph Seaton
2015-04-16T18:42:16
servo: Merge #5704 - Make many CSS properties animatable (from jseaton:jseaton/animation-props); r=pcwalton Contributes towards servo/servo#5494 - includes all properties listed at http://dev.w3.org/csswg/css-transitions/#animatable-css . Unforunately the most obvious way to support text-shadow meant making a few str...
diff --git a/layout/animation.rs b/layout/animation.rs index 571228afc..258ac7d0a 100644 --- a/layout/animation.rs +++ b/layout/animation.rs @@ -93,7 +93,7 @@ pub fn tick_all_animations(layout_task: &LayoutTask, rw_data: &mut LayoutTaskDat let running_animations = mem::replace(&mut rw_data.running_animations, Vec:...
5
675
67
99f6bd420ab00456f3f588b61b4fc6bb2bd251ab
Md. Enzam Hossain
2015-04-16T18:07:20
servo: Merge #5650 - Implement node::LookupPrefix and add test (from ienzam:issue/1826); r=jdm Tracking issue #1826 - implemented one of the three methods. This is follow up of #5402. Rebased and squashed and made the method iterative. Source-Repo: https://github.com/servo/servo Source-Revision: e3756f9e3fe8c042f5e6...
diff --git a/script/dom/element.rs b/script/dom/element.rs index e3abbc5ee..f4f70020c 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -440,6 +440,7 @@ pub trait ElementHelpers<'a> { fn get_important_inline_style_declaration(self, property: &Atom) -> Option<PropertyDeclaration>; fn serialize(...
2
49
4
11403da0da169f8c2378c931a66df013f6b2e5c5
James Graham
2015-04-16T17:35:25
servo: Merge #5610 - Add enough Webdriver support to enable Get() (from jgraham:jgraham/webdriver-get); r=jdm This is incomplete in several ways: * It assumes that there's only one constellation (i.e. top level browsing context), ever. * The session support is very basic indeed (no capabilities) * Passing channels ov...
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index ff8082bcf..d9fc51499 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -31,6 +31,9 @@ path = "../net_traits" [dependencies.util] path = "../util" +[dependencies.webdriver_server] +path = "../webdriver_server" + [dependencies.devto...
8
148
15
490b6bf6621847648135987aabbc8bf00afa4560
Ms2ger
2015-04-16T13:39:41
servo: Merge #5708 - Remove an unused import (from Ms2ger:warnings); r=saneyuki Source-Repo: https://github.com/servo/servo Source-Revision: 96b20bc2d33092c8380f8bd4ea0e1220fd6f4e5a
diff --git a/style/properties.mako.rs b/style/properties.mako.rs index f51dced7e..f6bf227ac 100644 --- a/style/properties.mako.rs +++ b/style/properties.mako.rs @@ -2699,7 +2699,7 @@ pub mod longhands { use values::computed::{Context, ToComputedValue}; use values::specified::{Angle, Length}; ...
1
1
1
e9636dd769b9b58d9fde87bede0f587c9ef6cc12
Ms2ger
2015-04-16T10:41:56
servo: Merge #5710 - Retire content tests (from Ms2ger:content); r=saneyuki Source-Repo: https://github.com/servo/servo Source-Revision: 53d2432c90ab9ef171dfbef8e22ed3f58fcef8f0
diff --git a/servo/Cargo.toml b/servo/Cargo.toml index 045b54da2..f8d3fa3aa 100644 --- a/servo/Cargo.toml +++ b/servo/Cargo.toml @@ -27,11 +27,6 @@ harness = false [dependencies.png] git = "https://github.com/servo/rust-png" -[[test]] -name = "contenttest" -path = "../../tests/contenttest.rs" -harness = false - [f...
1
0
5
0b3c71e146f1801cde0ca3658573b873afae95f3
Patrick Walton
2015-04-16T02:04:59
servo: Merge #5706 - layout: Clip the immediate fragments of block flows that establish stacking contexts properly (from pcwalton:absolute-clipping-of-own-contents); r=glennw r? @glennw Source-Repo: https://github.com/servo/servo Source-Revision: f7bfea58798a07d993ba7bc7d9c76f62be19ea4f
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index b5b935c88..c31c7b344 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -170,7 +170,7 @@ impl DisplayList { let doit = |items: &Vec<DisplayItem>| { for item in items.iter() { match *item { - ...
2
12
10
f5621a0f6c2e87422ca6a56798628e3cce40bf42
Adenilson Cavalcanti
2015-04-15T23:56:49
servo: Merge #5546 - Implementing Blur filter (from Adenilson:blurFilter01); r=pcwalton See discussion on #5190 and #5496. Source-Repo: https://github.com/servo/servo Source-Revision: 1fd6a48cca1ff951e60c9345e988f5489cb56f61
diff --git a/gfx/filters.rs b/gfx/filters.rs index 948f2cdfc..cfabcf203 100644 --- a/gfx/filters.rs +++ b/gfx/filters.rs @@ -8,15 +8,18 @@ use azure::AzFloat; use azure::azure_hl::{ColorMatrixAttribute, ColorMatrixInput, CompositeInput, DrawTarget}; use azure::azure_hl::{FilterNode, FilterType, LinearTransferAttribut...
3
175
69
43bf85325955d92b1ef21d16453f68cff9aa1445
Mátyás Mustoha
2015-04-15T15:44:42
servo: Merge #5701 - Add specification links to canvas line cap and line join (from mmatyas:canvas_linecapjoin_url); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 045831748e08f0b82ca84bd7d93844cb1c7eab60
diff --git a/script/dom/canvasrenderingcontext2d.rs b/script/dom/canvasrenderingcontext2d.rs index 7ac2fac20..c88c59a9d 100644 --- a/script/dom/canvasrenderingcontext2d.rs +++ b/script/dom/canvasrenderingcontext2d.rs @@ -859,6 +859,7 @@ impl<'a> CanvasRenderingContext2DMethods for JSRef<'a, CanvasRenderingContext2D> ...
1
4
0
3dd04bcd14e34a369bd5f506217071e794177972
Guro Bokum
2015-04-15T14:46:46
servo: Merge #5699 - Send high resolution millisecond timestamps in timeline markers #5665 (from JIoJIaJIu:timeline); r=jdm [Task](https://github.com/servo/servo/issues/5665) Source-Repo: https://github.com/servo/servo Source-Revision: cd16d1c3356d4bbc9277c2c843da8da002f27f3c
diff --git a/devtools/actor.rs b/devtools/actor.rs index 125080328..1fdd2af5c 100644 --- a/devtools/actor.rs +++ b/devtools/actor.rs @@ -4,6 +4,7 @@ /// General actor system infrastructure. +use rustc_serialize::json; use std::any::{Any, TypeId}; use std::collections::HashMap; use std::cell::{Cell, RefCell}; @@...
3
54
20
b0a2029f1947d69588692a17e3b2c1c665dbaf84
Corey Farwell
2015-04-14T22:16:55
servo: Merge #5693 - Add/update comments with links to spec (from frewsxcv:spec-links); r=jdm Extracted out of #5649 * add more hyperlinks to associated specification for structs/methods * follow redirects and update links * replace broken links * removal of WHATWG multipage page name since the page name is not gua...
diff --git a/layout/wrapper.rs b/layout/wrapper.rs index 324ac1214..e528553bb 100644 --- a/layout/wrapper.rs +++ b/layout/wrapper.rs @@ -560,8 +560,7 @@ impl<'le> TElement<'le> for LayoutElement<'le> { // FIXME: This is HTML only. let node: &Node = NodeCast::from_actual(self.element); match n...
19
112
35
230f65e2774daad76b53b6a4a6a0b64fa4f7e49f
Bogdan Cuza
2015-04-14T20:11:20
servo: Merge #5544 - Make Metadata use ContentType (from boghison:master); r=jdm Fixes #5538 Source-Repo: https://github.com/servo/servo Source-Revision: 7f422e2076e7ebc9949e9fb2ffc3f09c653130c0
diff --git a/net/about_loader.rs b/net/about_loader.rs index 3fd1a09c3..cd7d40671 100644 --- a/net/about_loader.rs +++ b/net/about_loader.rs @@ -9,7 +9,9 @@ use resource_task::start_sending; use file_loader; use url::Url; +use hyper::header::ContentType; use hyper::http::RawStatus; +use hyper::mime::{Mime, TopLeve...
5
28
18
c0e1887aeb9e8b308379d0c13e2f20a5a36d41c1
Ms2ger
2015-04-14T17:22:38
servo: Merge #5689 - Remove unused feature gate (from Ms2ger:warnings); r=larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: e597fd0c007372840e256056f8790264096681e3
diff --git a/servo/lib.rs b/servo/lib.rs index 107f5e14c..7b4423f60 100644 --- a/servo/lib.rs +++ b/servo/lib.rs @@ -16,7 +16,7 @@ // // The `Browser` is fed events from a generic type that implements the // `WindowMethods` trait. -#![feature(libc, rustc_private, thread_local)] +#![feature(libc, thread_local)] #![c...
1
1
1
9b06e2b6f801f88ee0c0aa0f0bfa8f1f2c9ba902
Brian Anderson
2015-04-14T15:56:01
servo: Merge #5489 - Rebase and rustup of brson's cleanup work (from larsbergstrom:brson_cleanup); r=metajack,ms2ger,jdm,manish All of the commits by brson have been reviewed. Just the android fixups and Rustup one (which also cleans up some of the duplication due to a complete rewrite of code that had been moved in t...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index f53a156d5..49f2dc658 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -6,6 +6,7 @@ dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "compositing 0.0.1", "devtools 0.0.1", + "devtools_traits 0.0.1", "gfx 0.0.1...
4
243
163
7f0d8c987ed7ec7090329102581f39ce668ff8f1
Aneesh Agrawal
2015-04-14T14:44:21
servo: Merge #5659 - Add RangeError and use it in the constructors for TextEncoder and TextDecoder (from aneeshusa:add-range-errors-use-for-textencoder-textdecoder); r=jdm Fixes #5620, and adds a few extra test cases. Currently waiting on a few upstream PRs in rust-encoding to land. Source-Repo: https://github.com/s...
diff --git a/script/dom/bindings/error.rs b/script/dom/bindings/error.rs index 426bff64d..181d02f03 100644 --- a/script/dom/bindings/error.rs +++ b/script/dom/bindings/error.rs @@ -12,7 +12,7 @@ use util::str::DOMString; use js::jsapi::{JSContext, JSBool, JSObject}; use js::jsapi::{JS_IsExceptionPending, JS_SetPend...
3
60
18
dc165cc96bd5900356af805a56e39d511b7fb482
Ms2ger
2015-04-14T11:09:13
servo: Merge #5682 - Mention #5681 in a TODO comment (from Ms2ger:mention-5681); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: e2b43bd3a9136cb90b8e64097e6098db01fca47f
diff --git a/devtools/actors/framerate.rs b/devtools/actors/framerate.rs index 55b6755fd..0cb824863 100644 --- a/devtools/actors/framerate.rs +++ b/devtools/actors/framerate.rs @@ -48,6 +48,7 @@ impl FramerateActor { } // callback on request animation frame + #[allow(dead_code)] pub fn on_refresh_dr...
1
2
1
643708eab5e9d7362ced2cff0569c48cd07a18f6
Anthony Ramine
2015-04-14T09:56:08
servo: Merge #5674 - Remove unnecessary uses of get_unsound_ref_forever() (from nox:get_unsound_ref_forever-misc); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 2dfa28f18670dec249d00978a61f1119afa3b839
diff --git a/script/dom/node.rs b/script/dom/node.rs index 5d0aad8c0..b3fed3874 100644 --- a/script/dom/node.rs +++ b/script/dom/node.rs @@ -826,19 +826,16 @@ impl<'a> NodeHelpers for JSRef<'a, Node> { unsafe fn query_selector_iter(self, selectors: DOMString) -> Fallible<QuerySel...
1
15
15
c1c2877dfab6d3850d371fa529db27c6458580a1
Ms2ger
2015-04-14T08:52:08
servo: Merge #5680 - Update some URLs (from Ms2ger:urls); r=Manishearth The HTML spec's division into pages is not stable, so it is safer to use the URL without a specific page (which will redirect). Source-Repo: https://github.com/servo/servo Source-Revision: 894b19526f1903f398c7817567b7d1b1e34998ed
diff --git a/script/dom/activation.rs b/script/dom/activation.rs index c95969729..a64355903 100644 --- a/script/dom/activation.rs +++ b/script/dom/activation.rs @@ -29,7 +29,7 @@ pub trait Activatable : Copy { // https://html.spec.whatwg.org/multipage/interaction.html#run-post-click-activation-steps fn activa...
19
146
146
c68abe6b46316ea0ba4125d8041dfe8a7eae962c
Aneesh Agrawal
2015-04-14T06:57:07
servo: Merge #5642 - Switch Arc<Box<Image>> to Arc<Image> for perf boost (from aneeshusa:arc-box-image-to-arc-image); r=Ms2ger Image used to be a trait, but no longer is, so boxing it is no longer necessary. Fixes #5639. Source-Repo: https://github.com/servo/servo Source-Revision: b7f59a36461e6c9eb08b8e48760168d3cb26...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 85ca1549a..b5b935c88 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -833,7 +833,7 @@ pub enum TextOrientation { #[derive(Clone)] pub struct ImageDisplayItem { pub base: BaseDisplayItem, - pub image: Arc<Box<Image>>, + ...
7
13
13
aac0de73207c0dd66a5f6ec665127c47ffbcdb48
Shing Lyu
2015-04-14T05:10:08
servo: Merge #5593 - 4873 - Support the image map processing for <img ismap/> inside an <a/> (from shinglyu:ismap); r=jdm This implements issue 4873 Source-Repo: https://github.com/servo/servo Source-Revision: 4fac8b6810d9d748fffc025cfd1bb1d2b6c5655d
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index 39ac8956c..c31fbb0ba 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -10,6 +10,7 @@ use animation; use construct::ConstructionResult; use context::{SharedLayoutContext, SharedLayoutContextWrapper}; +use css::node_style::StyledNode; u...
6
48
20
f5142cc5880953179ebadeb196a8bdfde622d536
Chris Paris
2015-04-13T23:27:46
servo: Merge #5675 - Use NodeFilterConstants from NodeFilterBinding (from ChrisParis:treewalker-nodefilter); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 55de52d76ad0c864b7875c561df5c5f3867b2d73
diff --git a/script/dom/treewalker.rs b/script/dom/treewalker.rs index 1957999bc..d25dba20d 100644 --- a/script/dom/treewalker.rs +++ b/script/dom/treewalker.rs @@ -7,10 +7,7 @@ use dom::bindings::codegen::Bindings::TreeWalkerBinding; use dom::bindings::codegen::Bindings::TreeWalkerBinding::TreeWalkerMethods; use dom...
1
1
25
9cd37e3bea1326dfe21f6be0de9812ce51dad5f7
Adenilson Cavalcanti
2015-04-13T21:47:09
servo: Merge #5673 - Squashing a few compiler warnings (from Adenilson:squashWarnings); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 92991f807021fa99b844f03a6458f97fe86bf5c6
diff --git a/devtools/actors/timeline.rs b/devtools/actors/timeline.rs index 62f05c2fa..94ab37ce3 100644 --- a/devtools/actors/timeline.rs +++ b/devtools/actors/timeline.rs @@ -11,7 +11,7 @@ use std::net::TcpStream; use std::old_io::timer::sleep; use std::sync::{Arc, Mutex}; use std::time::duration::Duration; -use s...
4
8
7
a56e8c00b3d959182fbc5d5e739151c9b37f7d62
Edward Cho
2015-04-13T21:11:10
servo: Merge #5671 - move mime classifier unit tests into unit test crate (from zerokarmaleft:move_mime_classifier_tests); r=SimonSapin Closes #5667. Source-Repo: https://github.com/servo/servo Source-Revision: f67749fc7d9eab13086fbea32b684f3a8eff6688
diff --git a/net/lib.rs b/net/lib.rs index d4e692327..8de25245a 100644 --- a/net/lib.rs +++ b/net/lib.rs @@ -45,7 +45,7 @@ pub mod image_cache_task; pub mod pub_domains; pub mod resource_task; pub mod storage_task; -mod mime_classifier; +pub mod mime_classifier; /// An implementation of the [Fetch spec](http://fe...
2
4
438
03c8bb65003bd0bc1aa0738f7a2c5c87a44e96b7
Guro Bokum
2015-04-13T17:44:49
servo: Merge #5636 - Firefox timeline integration #4957 (from JIoJIaJIu:timeline); r=jdm Available markers only: Reflow DOMEvent Also need to implement: Style marker Paint marker Javascript marker frames reply, depends on getting javascript stack I decided to make pull request before implemented another markers for ...
diff --git a/devtools/actor.rs b/devtools/actor.rs index 2ea8e75c0..125080328 100644 --- a/devtools/actor.rs +++ b/devtools/actor.rs @@ -10,6 +10,7 @@ use std::cell::{Cell, RefCell}; use std::mem::{replace, transmute}; use std::net::TcpStream; use std::raw::TraitObject; +use std::sync::{Arc, Mutex}; use rustc_seria...
15
761
14
5171e39536636ec6865fd93d5d9bb5a691d76816
Anthony Ramine
2015-04-13T09:52:32
servo: Merge #5645 - Use a simple Temporary value in TreeIterator (from nox:treeiterator-temporary); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 1e45d025b381390f346e8f24db615cb698033844
diff --git a/script/devtools.rs b/script/devtools.rs index 565889416..8b9bb84e8 100644 --- a/script/devtools.rs +++ b/script/devtools.rs @@ -69,8 +69,8 @@ fn find_node_by_unique_id(page: &Rc<Page>, pipeline: PipelineId, node_id: String let node: JSRef<Node> = NodeCast::from_ref(document.r()); for candidate ...
10
172
147
da711e096ab5cd1b17fe36110d0b33d1c54c01e2
josiahdaniels
2015-04-13T05:03:00
servo: Merge #5657 - Use Page::window_for_script_deallocation in ScriptMemoryFailsafe (from josiahdaniels:issue5654); r=jdm Also: Rename window_for_script_dealloation to window_for_script_deallocation #5654 Source-Repo: https://github.com/servo/servo Source-Revision: 9d027bab0a9601437842acb738b326c7e5547844
diff --git a/script/page.rs b/script/page.rs index cea2ddefc..0a2262110 100644 --- a/script/page.rs +++ b/script/page.rs @@ -76,7 +76,7 @@ impl Page { Temporary::new(self.frame.borrow().as_ref().unwrap().window.clone()) } - pub fn window_for_script_dealloation(&self) -> Unrooted<Window> { + pub fn...
2
3
3
87536b6186812197108eb2fc04dba24c3cc2aa48
Ms2ger
2015-04-12T18:45:28
servo: Merge #5647 - Use if let remove_inline_style_property (from Ms2ger:remove_inline_style_property); r=Manishearth It makes little sense to use map() in a case where we don't care about the return value. Source-Repo: https://github.com/servo/servo Source-Revision: d2522ea8bf36c39f3c978e7d92a9f09a5c0abd72
diff --git a/script/dom/element.rs b/script/dom/element.rs index 4625795b6..523caf59a 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -507,7 +507,7 @@ impl<'a> ElementHelpers<'a> for JSRef<'a, Element> { fn remove_inline_style_property(self, property: DOMString) { let mut inline_declar...
1
2
2
917209fa7fca63c2388459763d58fa6c6ac69158
Jag Talon
2015-04-11T23:13:16
servo: Merge #5576 - net/storage_task.rs: Fix remove_item (from jagtalon:jag/slashdot-storage); r=jdm Use `and_then` and remove `unwrap` instead of using a `map` as described in https://github.com/servo/servo/issues/5548#issuecomment-90254644. Fixes #5548 Source-Repo: https://github.com/servo/servo Source-Revision: ...
diff --git a/net/storage_task.rs b/net/storage_task.rs index e6853aa75..4d24fad20 100644 --- a/net/storage_task.rs +++ b/net/storage_task.rs @@ -133,9 +133,9 @@ impl StorageManager { fn remove_item(&mut self, sender: Sender<Option<DOMString>>, url: Url, storage_type: StorageType, name: DOMString) { let or...
1
2
2
b5c0e143c44e6d8b2ec77f1fb307ca528cdbdb9b
Patrick Walton
2015-04-11T16:02:32
servo: Merge #5634 - Improve scrolling performance (from pcwalton:fix-scrolling-perf); r=metajack This goes hand in hand with servo/glutin#18 to get our scrolling performance back on Mac. r? @glennw Source-Repo: https://github.com/servo/servo Source-Revision: f017a4459c4d1067dec74ce1bf00cc6ce0612859
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 387a98e35..7ddfd045b 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -82,6 +82,8 @@ pub struct IOCompositor<Window: WindowMethods> { /// The device pixel ratio for this window. hidpi_factor: ScaleFactor<ScreenPx...
3
84
45
98a81b17cb72d2e85685d2ff64e2625dde39de64
James Gilbertson
2015-04-11T00:17:49
servo: Merge #5553 - Use iterators for iterating through CSS rules (from luniv:css-rule-iterators); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 22e570a06e92bbc449eb01058e243443b536f467
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index 2bfc55fda..39ac8956c 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -66,7 +66,7 @@ use style::computed_values::{filter, mix_blend_mode}; use style::media_queries::{MediaType, MediaQueryList, Device}; use style::node::TNode; use style...
4
176
81
f2dd83f53103be6ceaaaecb06b329aeb97e142b4
Patrick Walton
2015-04-10T22:44:01
servo: Merge #5641 - layout: Include padding in the content block-size when computing the block-size value when `height: auto` is specified for absolutely-positioned elements (from pcwalton:absolute-auto-height); r=mbrubeck Improves "Edit links" on the Wikipedia sidebar. r? @mbrubeck Source-Repo: https://github.com/...
diff --git a/layout/block.rs b/layout/block.rs index 580a81c2a..5dc867e45 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -97,7 +97,11 @@ struct BSizeConstraintSolution { } impl BSizeConstraintSolution { - fn new(block_start: Au, block_end: Au, block_size: Au, margin_block_start: Au, margin_block_end: Au) ...
1
145
85
d9d4f5a5bbd08191ef6b25ac4d65b9954761d664
Matt Brubeck
2015-04-10T17:25:42
servo: Merge #5592 - Don't allow disabled fields to be focused (from mbrubeck:focusable); r=jdm This begins implementing parts of the [focusing steps](https://html.spec.whatwg.org/multipage/interaction.html#focusing-steps) algorithm. r? @jdm or @Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: a8b0...
diff --git a/script/dom/document.rs b/script/dom/document.rs index ca4182164..57cee4188 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -36,7 +36,7 @@ use dom::documentfragment::DocumentFragment; use dom::documenttype::DocumentType; use dom::domimplementation::DOMImplementation; use dom::element:...
2
51
2
4997d48c12eb863cb87320bdaef7be9669e9de24
Ms2ger
2015-04-10T13:44:38
servo: Merge #5632 - Create a Runtime struct (from Ms2ger:runtime); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 35fb5166624faa13d8a7090ce3f2456726547e11
diff --git a/script/dom/bindings/trace.rs b/script/dom/bindings/trace.rs index f77b42648..4b5dffc18 100644 --- a/script/dom/bindings/trace.rs +++ b/script/dom/bindings/trace.rs @@ -428,7 +428,7 @@ impl<T> DerefMut for RootedVec<T> { /// SM Callback that traces the rooted collections -pub unsafe extern fn trace_col...
3
12
36
4847d8c98c03ab3097762fa98417c93fe0584788
Ms2ger
2015-04-10T13:14:16
servo: Merge #5631 - Avoid virtual calls when loading files (from Ms2ger:virtual-file); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 9677eb292dacd26ea21ab12441b88d538d719814
diff --git a/net/file_loader.rs b/net/file_loader.rs index 49a451d2a..64539c294 100644 --- a/net/file_loader.rs +++ b/net/file_loader.rs @@ -8,8 +8,8 @@ use mime_classifier::MIMEClassifier; use resource_task::{start_sending, start_sending_sniffed}; use std::borrow::ToOwned; -use std::io; use std::fs::File; +use st...
1
3
3
b348ddd94e321cb2547952f1f6a35fb8eb30f6dc
Aneesh Agrawal
2015-04-10T12:41:54
servo: Merge #5558 - Remove compositor dependency on net crate (from aneeshusa:remove-compositor-dependency-on-net); r=jdm Move the ImageCacheTaskClient trait and impl to net_traits. Fixes #5551. Source-Repo: https://github.com/servo/servo Source-Revision: 6903955b9835b7cfdff6378e4a547cdad1589443
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 7485f21e5..9f0e98e2e 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -20,9 +20,8 @@ use msg::constellation_msg::{IFrameSandboxState, MozBrowserEvent, NavigationDire use msg::constellation_msg::{Key, KeyState,...
3
13
14
a3293b1e9546c1a142ce8d8436558f9cb2aa492a
Corey Farwell
2015-04-10T10:44:35
servo: Merge #5621 - Spec links for script::dom::element & script::dom::event (from frewsxcv:more-spec); r=jdm None Source-Repo: https://github.com/servo/servo Source-Revision: ec417a84b14c78e9ada08d7d489344a69f0eb09d
diff --git a/script/dom/element.rs b/script/dom/element.rs index 418dd1241..405ed80b9 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -934,6 +934,7 @@ impl<'a> ElementMethods for JSRef<'a, Element> { } } + // https://dom.spec.whatwg.org/#dom-element-localname fn LocalName(self)...
2
21
1
a85a1d7945a4214028b98875a868c231d77ae4f3
Peter
2015-04-10T09:10:02
servo: Merge #5622 - Renaming NodeChildren iterator to NodeSiblingIterator (from pgonda:NodeChildrenIterator-to-NodeSiblingIterator); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: c9a413cb6e44a51d135f2b960cc6181706218929
diff --git a/script/dom/node.rs b/script/dom/node.rs index d624af38a..d328af221 100644 --- a/script/dom/node.rs +++ b/script/dom/node.rs @@ -410,11 +410,11 @@ impl<'a> Iterator for QuerySelectorIterator<'a> { pub trait NodeHelpers<'a> { fn ancestors(self) -> AncestorIterator; fn inclusive_ancestors(self) -> ...
1
20
20
17a1c5a8444e959851e48bfeb677e0e26e074e52
Ms2ger
2015-04-10T08:38:08
servo: Merge #5630 - Fix typo in the substringData implementation (from Ms2ger:substringData); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: ebf5a70b51a90724422e341cd5fdb8733b4f38d0
diff --git a/script/dom/characterdata.rs b/script/dom/characterdata.rs index 172fda96f..92f3283c7 100644 --- a/script/dom/characterdata.rs +++ b/script/dom/characterdata.rs @@ -73,7 +73,7 @@ impl<'a> CharacterDataMethods for JSRef<'a, CharacterData> { let data = self.data.borrow(); // Step 1. ...
1
1
1
de292b885d80c511679fb7f680fb09464bed42b1
Peter
2015-04-10T08:06:11
servo: Merge #5608 - Adding cmdling argument for disabling style share cache, fix #5581 (from pgonda:cmdline-disable-style-sharing); r=Ms2ger Let me know if I should fix anything, or how I could implement a test if needed. I looked at some testing in servo/ports/command_line.rs but it did not seem to apply. Thanks!...
diff --git a/layout/css/matching.rs b/layout/css/matching.rs index 1c977c808..2331afc65 100644 --- a/layout/css/matching.rs +++ b/layout/css/matching.rs @@ -32,6 +32,7 @@ use style::properties::{ComputedValues, cascade}; use style::selector_matching::{Stylist, DeclarationBlock}; use util::arc_ptr_eq; use util::cache...
2
11
0
691ee7b8d7405eeee068ea517ceab4ef4927221b
Glenn Watson
2015-04-10T02:01:06
servo: Merge #5629 - Remove unneeded assert (code below handles it) and a warning. Fixes #5230 (from glennw:glyph-count); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: db4609d722039e9477848c5e53e45ff214cb84c4
diff --git a/gfx/text/shaping/harfbuzz.rs b/gfx/text/shaping/harfbuzz.rs index 5a8a52cc1..4f473b961 100644 --- a/gfx/text/shaping/harfbuzz.rs +++ b/gfx/text/shaping/harfbuzz.rs @@ -278,8 +278,6 @@ impl Shaper { // so, we must be careful to increment this when saving glyph entries. let mut char_idx = C...
2
0
3
14d95707f4b511907d806fbf2edd2cdd1ea3f055
Thomas Jespersen
2015-04-10T01:28:31
servo: Merge #5572 - Only send unused buffers messages if there are actually any buffers (from laumann:remove-unnecessary-buffer-sends); r=glennw Some debugging reveals that the send_back_unused_buffers() quite often sends empty vectors back to the paint task. This still incurs a communication overhead though. Instead...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 572ecfdb5..387a98e35 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -718,12 +718,9 @@ impl<Window: WindowMethods> IOCompositor<Window> { layer_id: LayerId, ne...
3
11
13
a32d093c91bda6bdf907ebb7dcfb49473855a07b
Anthony Ramine
2015-04-10T00:55:36
servo: Merge #5627 - Cleanup ProcessingInstruction (from nox:cleanup-processinginstruction); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: c1b7c0c74a2f224a9c8cbf427e10b9591a693d84
diff --git a/script/dom/node.rs b/script/dom/node.rs index 89ec44718..d624af38a 100644 --- a/script/dom/node.rs +++ b/script/dom/node.rs @@ -38,7 +38,7 @@ use dom::element::ElementHelpers; use dom::eventtarget::{EventTarget, EventTargetTypeId}; use dom::htmlelement::HTMLElementTypeId; use dom::nodelist::NodeList; -u...
3
12
4
d4f7db889304804856b0d00818d8809f3b23fcc4
Patrick Walton
2015-04-09T22:20:23
servo: Merge #5623 - layout: Lay out nested inline elements with different `vertical-align` values properly in simple cases (from pcwalton:nested-inline-vertical-align); r=glennw This allows things like `<sup><span>Foo</span></sup>` to work and improves Wikipedia. r? @glennw Source-Repo: https://github.com/servo/ser...
diff --git a/layout/construct.rs b/layout/construct.rs index 6f8ef66ed..5ebdc225a 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -651,7 +651,7 @@ impl<'a> FlowConstructor<'a> { /// `InlineFragmentsConstructionResult` if this node consisted entirely of ignorable /// whitespace. fn build_fra...
4
186
98
7c1b4e8189b027976ddbb6beac90823778797e58
Patrick Walton
2015-04-09T21:47:03
servo: Merge #5588 - layout: During inline layout, make `place_between_floats` use the same line height computation logic as final block size assignment (from pcwalton:line-height-float-placement-redux); r=glennw Basically, the easiest way to describe the effect of this change is "float placement takes line height int...
diff --git a/layout/floats.rs b/layout/floats.rs index 736b311bd..0d0ea9e06 100644 --- a/layout/floats.rs +++ b/layout/floats.rs @@ -333,7 +333,9 @@ impl Floats { let maybe_location = self.available_rect(float_b, info.size.block, ...
3
76
51
2fd04a138dbafa66e75f68aa2d8351ee4e880af2
Mátyás Mustoha
2015-04-09T13:36:45
servo: Merge #5612 - Canvas: moved Rect validation to a common function (from mmatyas:canvas_rectvalidation); r=jdm These functions have the same input validation, and they also missed the width/height check. Source-Repo: https://github.com/servo/servo Source-Revision: 34251902225cd9538695f850e1e946aba712bc9b
diff --git a/script/dom/canvasrenderingcontext2d.rs b/script/dom/canvasrenderingcontext2d.rs index 8213e7afc..9c7c7a58f 100644 --- a/script/dom/canvasrenderingcontext2d.rs +++ b/script/dom/canvasrenderingcontext2d.rs @@ -258,6 +258,18 @@ impl CanvasRenderingContext2D { _ => panic!("Image Cache: Unknown Resu...
1
18
18
8bfdca93e334ffed9c47b3df6b1ee0d5099d4650
Ms2ger
2015-04-09T02:07:18
servo: Merge #5606 - Adjust the assertions in throw_dom_exception (from Ms2ger:errors); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 1c0955739853b7d17f30e158206720d6b4979c9f
diff --git a/script/dom/bindings/error.rs b/script/dom/bindings/error.rs index feba3941b..426bff64d 100644 --- a/script/dom/bindings/error.rs +++ b/script/dom/bindings/error.rs @@ -71,10 +71,9 @@ pub type Fallible<T> = Result<T, Error>; /// return `()`. pub type ErrorResult = Fallible<()>; -/// Set a pending DOM ex...
1
8
3
4ebdafa9b385b4a9bc1d2752f75ac6f9f8d17046
Ms2ger
2015-04-09T01:33:17
servo: Merge #5604 - Remove recently introduced int/uint use in gfx (from Ms2ger:int); r=mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: acadb2b0c56d3a89174a4b0834142762f3ab6ca8
diff --git a/gfx/platform/freetype/font.rs b/gfx/platform/freetype/font.rs index 181c3569b..60587acb2 100644 --- a/gfx/platform/freetype/font.rs +++ b/gfx/platform/freetype/font.rs @@ -76,8 +76,7 @@ impl FontHandleMethods for FontHandle { let ft_ctx: FT_Library = fctx.ctx.ctx; if ft_ctx.is_null() { re...
2
5
6
efbf6160b83e46c86cf67fee43799d22f6b0c5d6
Mátyás Mustoha
2015-04-09T00:28:28
servo: Merge #5595 - Fix int-related warnings in net/mime_classifier (from mmatyas:net_intfix); r=Ms2ger Also replaced `for` ranges with `a..b` notation. Source-Repo: https://github.com/servo/servo Source-Revision: fe5047e55af384cf08bcb00d5cfe8097ae271833
diff --git a/net/mime_classifier.rs b/net/mime_classifier.rs index 773436d92..6501abdb6 100644 --- a/net/mime_classifier.rs +++ b/net/mime_classifier.rs @@ -111,7 +111,7 @@ impl MIMEClassifier { self.binary_or_plaintext.classify(data) } fn is_xml(tp: &str, sub_tp: &str) -> bool { - let suffix ...
1
11
11
d021c7626eeb15e2d6a4d402248693e1f20cd028
Patrick Walton
2015-04-08T23:04:14
servo: Merge #5583 - layout: Don't take collapsible top margin into account when determining the float ceiling (from pcwalton:float-ceiling-top-margin-redux); r=mbrubeck As the float ceiling is relative to the border box, not the margin box, of the parent flow, top margin must not be included. This exposed a pre-exis...
diff --git a/layout/block.rs b/layout/block.rs index 4b187082d..580a81c2a 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -1994,7 +1994,8 @@ pub struct ISizeConstraintSolution { } impl ISizeConstraintSolution { - pub fn new(inline_size: Au, margin_inline_start: Au, margin_inline_end: Au) -> ISizeConstraint...
2
16
6
53b3b95bf2b40d9ab0b448c70746eb3063a5f969
Anthony Ramine
2015-04-08T21:16:53
servo: Merge #5578 - Use a Temporary iterator in Node::collect_text_contents() (from nox:collect_text_contents-unsound); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 656617a91c906d7ec438543c757d8b8d1c7326aa
diff --git a/script/dom/htmlscriptelement.rs b/script/dom/htmlscriptelement.rs index 7b4f7a8ae..49cf5f257 100644 --- a/script/dom/htmlscriptelement.rs +++ b/script/dom/htmlscriptelement.rs @@ -524,8 +524,7 @@ impl<'a> HTMLScriptElementMethods for JSRef<'a, HTMLScriptElement> { // http://www.whatwg.org/html/#dom-...
2
6
5
1954ff9f608c3d88b2f1bd79ae7fd7cb375f949c
Matt Brubeck
2015-04-08T15:36:33
servo: Merge #5589 - Set dirty flag on hover or focus change (from mbrubeck:dirty); r=pcwalton This fixes a bug where styles are not recalculated immediately when an element's hover or focus state changes. I'm not sure how to write an automated test for this. r? @glennw or @pcwalton Source-Repo: https://github.com/...
diff --git a/script/dom/node.rs b/script/dom/node.rs index 95374e4f3..14823d462 100644 --- a/script/dom/node.rs +++ b/script/dom/node.rs @@ -623,7 +623,8 @@ impl<'a> NodeHelpers<'a> for JSRef<'a, Node> { } fn set_hover_state(self, state: bool) { - self.set_flag(IN_HOVER_STATE, state) + self.se...
1
4
2
25c2056083e61c89f924ccd6f219e64df9cbebeb
Patrick Walton
2015-04-08T09:48:30
servo: Merge #5587 - layout: Position and size list images properly in the block direction (from pcwalton:list-style-image-sizing-redux); r=glennw Improves Wikipedia. r? @glennw Source-Repo: https://github.com/servo/servo Source-Revision: 267badae69d476bbac63a687bb8fb63bf336aec2
diff --git a/layout/list_item.rs b/layout/list_item.rs index cb78f4439..cec7b02f0 100644 --- a/layout/list_item.rs +++ b/layout/list_item.rs @@ -15,6 +15,8 @@ use flow::{Flow, FlowClass}; use fragment::{CoordinateSystem, Fragment, FragmentBorderBoxIterator, GeneratedContentInfo}; use generated_content; use increment...
1
28
18
dd3ffc6254af8af1f1726a4894cff4109b626340
Patrick Walton
2015-04-08T08:57:36
servo: Merge #5584 - layout: Remove the bogus `assign_block_size_for_inorder_child_if_necessary` logic from table wrapper flows (from pcwalton:fix-a-float-redux); r=glennw As far as I can tell, this is a cut-and-paste of old buggy code from block flows. Delegating to the correct block flow code fixes the sidebar float...
diff --git a/layout/block.rs b/layout/block.rs index 24eac4f48..4b187082d 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -1417,6 +1417,8 @@ impl BlockFlow { match style.get_box().display { display::T::table_cell | display::T::table_caption | + display::T::table_row_g...
2
13
16
193a5bac3aac43dd96f86833001db0488bf08142
Josh Matthews
2015-04-08T08:06:09
servo: Merge #5571 - Remove int_uint feature from gfx (from jdm:gfx_uint); r=Ms2ger r? @Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 83d9ab3ba5c6a725632a954cf2b9f65832f89832
diff --git a/gfx/buffer_map.rs b/gfx/buffer_map.rs index c16ae23eb..01070851d 100644 --- a/gfx/buffer_map.rs +++ b/gfx/buffer_map.rs @@ -17,17 +17,17 @@ pub struct BufferMap { /// A HashMap that stores the Buffers. map: HashMap<BufferKey, BufferValue>, /// The current amount of memory stored by the Buffe...
13
103
97
ec2894669b1044cb39c890501f1b0747bf43a1a1
Josh Matthews
2015-04-08T06:47:56
servo: Merge #5568 - Remove int_uint from net (from jdm:net_uint); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: cad27a9d25390cda965c591f180a46061a2c19e9
diff --git a/net/fetch/cors_cache.rs b/net/fetch/cors_cache.rs index 5a36026fd..32d2615c7 100644 --- a/net/fetch/cors_cache.rs +++ b/net/fetch/cors_cache.rs @@ -46,14 +46,14 @@ impl HeaderOrMethod { pub struct CORSCacheEntry { pub origin: Url, pub url: Url, - pub max_age: uint, + pub max_age: u32, ...
8
19
20
3933745c80ee9998920c5363cd162fbb8e78796d
Aneesh Agrawal
2015-04-08T04:04:12
servo: Merge #5550 - Don't consume self when calling root on a Temporary<T> (from aneeshusa:fix-issue-5540); r=jdm Fixes issue #5540. As far as I can tell this is all that's necessary, but I'm new to Rust, so let me know if I missed something! Source-Repo: https://github.com/servo/servo Source-Revision: 2089c1f285ae...
diff --git a/script/dom/bindings/js.rs b/script/dom/bindings/js.rs index 62848346f..6b3ce4a55 100644 --- a/script/dom/bindings/js.rs +++ b/script/dom/bindings/js.rs @@ -174,7 +174,7 @@ impl<T: Reflectable> Temporary<T> { } /// Create a stack-bounded root for this value. - pub fn root(self) -> Root<T> { +...
1
1
1
d45dc35f05ba93ee16317b1dc28031c7e4922efe
Jag Talon
2015-04-08T03:08:33
servo: Merge #5527 - opts.rs: don't accept multiple URLs. Fixes #5520 (from jagtalon:jag/multiple-urls); r=mbrubeck Switched from opts.urls from being of type Vec to type String and changing the name to `url` as well. Changed the other files that are using opts.urls accordingly. Source-Repo: https://github.com/servo/...
diff --git a/servo/lib.rs b/servo/lib.rs index 7990de397..8109f23e3 100644 --- a/servo/lib.rs +++ b/servo/lib.rs @@ -119,23 +119,20 @@ impl Browser { // Send the URL command to the constellation. let cwd = env::current_dir().unwrap(); - for url in opts.urls.iter() { - let url = ma...
2
17
21
cd084ee075712e81688ecfa9d6d56d7d93ee1511
Jag Talon
2015-04-07T16:56:50
servo: Merge #5543 - RootCollection: Start using RootedVec instead of SmallVec32 (from jagtalon:jag/slashdot); r=jdm Partially fixes #5504. Props to @ehegnes and @jdm for the help! Source-Repo: https://github.com/servo/servo Source-Revision: 184d214e260213bafc5801af33f3031289da9361
diff --git a/script/dom/bindings/js.rs b/script/dom/bindings/js.rs index 357a3282f..62848346f 100644 --- a/script/dom/bindings/js.rs +++ b/script/dom/bindings/js.rs @@ -50,6 +50,7 @@ //! `Option<Root<T>>` easy use dom::bindings::trace::JSTraceable; +use dom::bindings::trace::RootedVec; use dom::bindings::utils::...
2
20
7
46dfcb5f449af06b06adeae48a71a407ac5ffd13
Josh Matthews
2015-04-07T13:20:36
servo: Merge #5536 - Remove int/uint from devtools/devtools_traits (from jdm:devtools_uint); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 48ee05620d4a063f6b7c3668e1aec38c68999aae
diff --git a/devtools/actors/console.rs b/devtools/actors/console.rs index a529af8be..4939cfa47 100644 --- a/devtools/actors/console.rs +++ b/devtools/actors/console.rs @@ -47,10 +47,10 @@ struct PageErrorMessage { errorMessage: String, sourceName: String, lineText: String, - lineNumber: uint, - co...
7
28
29
4698e74d959eaa1ccdd10d39778c5c21c29e2763
Patrick Walton
2015-04-07T09:51:13
servo: Merge #5552 - layout: Correctly take the inline size of cleared floats into account when estimating the inline size of block formatting contexts (from pcwalton:block-formatting-context-cleared-floats); r=glennw The speculated inline-size of the preceding floats was forced to zero at the wrong time if the float ...
diff --git a/layout/block.rs b/layout/block.rs index 980bf6b52..24eac4f48 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -1313,6 +1313,17 @@ impl BlockFlow { kid_base.fixed_static_i_offset = fixed_static_i_offset; } + // Determine float impaction, and update the inline ...
1
11
10
a66002c893f4a343bfd9e661b8a937d96c7599e8
Corey Farwell
2015-04-07T08:33:11
servo: Merge #5526 - Utilize Option::expect (from frewsxcv:expect); r=jdm None Source-Repo: https://github.com/servo/servo Source-Revision: 7f773d73c4478b7e284f0ba6a325b2f8c9be4e5b
diff --git a/script/dom/bindings/cell.rs b/script/dom/bindings/cell.rs index f2a1504f8..b64d80cef 100644 --- a/script/dom/bindings/cell.rs +++ b/script/dom/bindings/cell.rs @@ -125,10 +125,7 @@ impl<T> DOMRefCell<T> { /// /// Panics if the value is currently mutably borrowed. pub fn borrow<'a>(&'a self) ...
1
2
8
3f71bf23dcd637d8c0693168395cdbc9b898ce14
Utkarsh Kukreti
2015-04-07T06:57:08
servo: Merge #5523 - Use quasiquotes for attributes in `plugins` crate (from servo:use-quasiquote-for-attributes); r=jdm Fixes #5157. Source-Repo: https://github.com/servo/servo Source-Revision: d38fca6ed629dc52d030e3ba0d8eb18a39e35a0c
diff --git a/plugins/jstraceable.rs b/plugins/jstraceable.rs index cf0089c7f..9384ed203 100644 --- a/plugins/jstraceable.rs +++ b/plugins/jstraceable.rs @@ -7,27 +7,20 @@ use syntax::codemap::Span; use syntax::ptr::P; use syntax::ast::{Item, MetaItem, Expr}; use syntax::ast; -use syntax::attr; use syntax::ext::buil...
1
10
19
28f9b2442c7468dd605916c0f3dbf982fb6d92ea
Josh Matthews
2015-04-07T03:09:44
servo: Merge #5415 - Get the barest bones of webdriver integration ready for keeners (from jdm:webdriver); r=jdm Requires https://github.com/jgraham/webdriver-rust/pull/6. Source-Repo: https://github.com/servo/servo Source-Revision: 1f57c6d74acd50077eb015bdebffd2adac1e552e
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 3a3e60e76..acf5eb433 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -18,6 +18,7 @@ dependencies = [ "time 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", "url 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0...
6
91
0
7cf1a892ce16e36bd78041cb883c3ebca1c8715f
Eric Hegnes
2015-04-06T20:16:39
servo: Merge #5529 - Consistently name enum members in `dom::bindings::error::Error` (from ehegnes:issue-5521); r=jdm Fixes #5521 Source-Repo: https://github.com/servo/servo Source-Revision: 3c5c2f416b6a0584758ac98c3d984288cad80aba
diff --git a/script/dom/bindings/error.rs b/script/dom/bindings/error.rs index c62216d46..4908fa3b0 100644 --- a/script/dom/bindings/error.rs +++ b/script/dom/bindings/error.rs @@ -39,7 +39,7 @@ pub enum Error { /// SyntaxError DOMException Syntax, /// NamespaceError DOMException - NamespaceError, + ...
6
27
26
8173f2215e0d814285495312d80f29fcd7cf0335
Ms2ger
2015-04-06T18:17:40
servo: Merge #5535 - Stop using int/uint in net_traits (from Ms2ger:int-net); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: c070ad61963963de2e0d2b35aedb1e187bbb7d4b
diff --git a/layout/fragment.rs b/layout/fragment.rs index 14265aed4..4c3d3bdc4 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -327,15 +327,21 @@ impl ImageFragmentInfo { /// Returns the original inline-size of the image. pub fn image_inline_size(&mut self) -> Au { let size = self.image....
5
17
13
a06c60ac034a0c71a0322cedbf2eb24fa7658738
Anthony Ramine
2015-04-06T17:36:09
servo: Merge #5503 - Cleanup attribute handlers (from nox:cleanup-attributes); r=Manishearth This makes all tests in attributes.html pass. Source-Repo: https://github.com/servo/servo Source-Revision: 8d1a6c45f656de67115e72cc927f81c2d72e03a2
diff --git a/script/dom/attr.rs b/script/dom/attr.rs index 3c174a993..cdc472d6e 100644 --- a/script/dom/attr.rs +++ b/script/dom/attr.rs @@ -250,15 +250,15 @@ impl<'a> AttrHelpers<'a> for JSRef<'a, Attr> { /// Sets the owner element. Should be called after the attribute is added /// or removed from its older ...
13
138
105
1c74a73d395c7f1cbecb81e5adfe05348e538f0a
Ms2ger
2015-04-06T14:09:52
servo: Merge #5531 - Stop using int and uint in style (from Ms2ger:int); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 92b6a0b8e006fbf03a7ef9b4ea7d458328b2fbb8
diff --git a/style/legacy.rs b/style/legacy.rs index d8c1d6274..414ed6505 100644 --- a/style/legacy.rs +++ b/style/legacy.rs @@ -147,7 +147,7 @@ impl PresentationalHintSynthesis for Stylist { UnsignedIntegerAttribute::CellSpacing) { None => {} Some(leng...
4
9
10
2eec18d17cb5b7bce3222b36677f13a4801c9451
thiagopnts
2015-04-06T13:18:50
servo: Merge #5518 - Add devtools_chan method to GlobalRef (from thiagopnts:devtools-chan-helper); r=jdm The notification for new globals now works for nested workers too (refs #5309) Source-Repo: https://github.com/servo/servo Source-Revision: a277036dd9b461c434261b4ba5e88bc228c8a0dd
diff --git a/script/dom/bindings/global.rs b/script/dom/bindings/global.rs index ec5d87f63..316c51a67 100644 --- a/script/dom/bindings/global.rs +++ b/script/dom/bindings/global.rs @@ -13,8 +13,9 @@ use dom::bindings::utils::{Reflectable, Reflector}; use dom::workerglobalscope::{WorkerGlobalScope, WorkerGlobalScopeHel...
4
73
23
43bfd971e37390187ca05ca407a22e9693cf88f5
Anthony Ramine
2015-04-05T11:54:53
servo: Merge #5524 - Make attributes lose their owner when removed (from servo:attributes-ownerElement); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: f22d920b4dd97fff6e2c8666d2062f3ca2b0b2e6
diff --git a/script/dom/attr.rs b/script/dom/attr.rs index a2b8ac77a..3c174a993 100644 --- a/script/dom/attr.rs +++ b/script/dom/attr.rs @@ -6,8 +6,9 @@ use dom::bindings::cell::DOMRefCell; use dom::bindings::codegen::Bindings::AttrBinding::{self, AttrMethods}; use dom::bindings::codegen::InheritTypes::NodeCast; use...
2
34
8
a9f19482b4d088dabd5a093903e59dd18658d2ff
Muhammad Zaheer
2015-04-05T10:48:48
servo: Merge #5530 - Update the spec links in domexception.rs (fixes #5528) (from nmzaheer:updateSpecLinks); r=saneyuki I have update the spec links as given in the comments. Hope i've done it right Source-Repo: https://github.com/servo/servo Source-Revision: 425b2be04f89ec7576a1933c99383853c7519a49
diff --git a/script/dom/domexception.rs b/script/dom/domexception.rs index 53511d4d7..59f8c0a07 100644 --- a/script/dom/domexception.rs +++ b/script/dom/domexception.rs @@ -59,21 +59,21 @@ impl DOMException { } impl<'a> DOMExceptionMethods for JSRef<'a, DOMException> { - // http://dom.spec.whatwg.org/#dom-domexc...
1
4
4
ff6533a8c7c11ba61b4078f8f86c74b1581a964b
Matt Brubeck
2015-04-03T20:48:47
servo: Merge #5514 - Fix warnings when building tests (from mbrubeck:warnings); r=larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: 00145d8c4ea4f793d4608a0c1689cc7ec0fe1aa5
diff --git a/servo/lib.rs b/servo/lib.rs index 4871d9d14..051e61909 100644 --- a/servo/lib.rs +++ b/servo/lib.rs @@ -3,6 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #![feature(libc, rustc_private, thread_local)] +#![cfg_attr(not(test), feature(path))] #[macro_use] extern crate log; @@...
1
4
1
fb2029e9171ea4865fdffbc2c207993a63d5886c
Ms2ger
2015-04-03T15:48:42
servo: Merge #5502 - Remove the unsafe impl Send for ConstellationControlMsg (from Ms2ger:impl-send); r=jdm This impl made it possible to put raw pointers in ConstellationControlMsg and send them across threads without considering the consequences. This required making SmallVec1<T> Send if T is Send. Source-Repo: ht...
diff --git a/script_traits/lib.rs b/script_traits/lib.rs index 626819ebe..97131a8bb 100644 --- a/script_traits/lib.rs +++ b/script_traits/lib.rs @@ -76,9 +76,6 @@ pub enum ConstellationControlMsg { UpdateSubpageId(PipelineId, SubpageId, SubpageId), } -unsafe impl Send for ConstellationControlMsg { -} - /// The...
2
1
4
5bfbf36f843ab513ea5b0ffaf2349a3d42a2f4e1
Ms2ger
2015-04-03T14:24:41
servo: Merge #5501 - Add more documentation about the DOM bindings (from Ms2ger:docs); r=jdm Most of this documentation is based on <https://developer.mozilla.org/en-US/docs/Mozilla/WebIDL_bindings>. Source-Repo: https://github.com/servo/servo Source-Revision: 539c85f5ec1b05b29a099124c7d7b2664f67013e
diff --git a/script/dom/bindings/mod.rs b/script/dom/bindings/mod.rs index f2cfb6421..5fd9193a9 100644 --- a/script/dom/bindings/mod.rs +++ b/script/dom/bindings/mod.rs @@ -24,6 +24,113 @@ //! they call a Rust function in the generated glue code. This glue code does //! some sanity checks and [argument conversions](c...
2
109
0
de4e25f7decf03ecd2f5d3e517f64650db312ab7
Ms2ger
2015-04-03T11:29:12
servo: Merge #5492 - Introduce a MouseButton enum (from Ms2ger:MouseButton) Source-Repo: https://github.com/servo/servo Source-Revision: 02be76bd4855a226669e8fcd1a638ff53e8f83d5
diff --git a/compositing/compositor_layer.rs b/compositing/compositor_layer.rs index 33cec1761..20912b13f 100644 --- a/compositing/compositor_layer.rs +++ b/compositing/compositor_layer.rs @@ -49,7 +49,7 @@ pub struct CompositorData { impl CompositorData { pub fn new_layer(layer_properties: LayerProperties, ...
7
24
15
f7db72906345588e50afcd563d8da2ca24e04ff6
Bryan Bell
2015-04-03T10:18:42
servo: Merge #5470 - Show tabs in pre elements (from bjwbell:tab-in-pre); r=mbrubeck Display tab characters as 4 spaces for pre and other elements that don't compress whitespace. Fixes https://github.com/servo/servo/issues/4651 @pcwalton r? Source-Repo: https://github.com/servo/servo Source-Revision: 40fab8e362305a...
diff --git a/gfx/text/shaping/harfbuzz.rs b/gfx/text/shaping/harfbuzz.rs index eb1a6cfb8..f8ad5ef4a 100644 --- a/gfx/text/shaping/harfbuzz.rs +++ b/gfx/text/shaping/harfbuzz.rs @@ -521,6 +521,9 @@ impl Shaper { // We elect to only space the two required code points. if character == ' ' || character ==...
1
16
0
0cdd7c5b0e827ff91167f19e8b9f422e1c7f7095
Corey Farwell
2015-04-03T04:45:41
servo: Merge #5484 - Improvements, cleanup for script::dom::document (from frewsxcv:document-cleanup); r=Ms2ger * Add whatwg spec links for some Document methods * Wrap some lines that exceed 100 characters * Other misc cleanup/refactoring Source-Repo: https://github.com/servo/servo Source-Revision: c38d9ba6b9c71669a...
diff --git a/script/dom/document.rs b/script/dom/document.rs index 6069fef7e..e94ba0c0e 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -273,14 +273,11 @@ impl<'a> DocumentHelpers<'a> for JSRef<'a, Document> { fn set_quirks_mode(self, mode: QuirksMode) { self.quirks_mode.set(mode); -...
1
21
15
12fb2cce59d59b5860518ed4c5d5936934c9d5fe
aditya
2015-04-02T20:18:42
servo: Merge #5491 - Fix issue 5466 (from ChimeraCoder:fix-issue-5466); r=Manishearth @kenpratt and I moved the URL and IFrame fields from Reflow to LayoutTask, as described in #5466. This is my first attempt at Rust, so let me know how this is! Source-Repo: https://github.com/servo/servo Source-Revision: e4da29b28b...
diff --git a/compositing/pipeline.rs b/compositing/pipeline.rs index 21c5c9460..2bd4f7dd1 100644 --- a/compositing/pipeline.rs +++ b/compositing/pipeline.rs @@ -146,6 +146,7 @@ impl Pipeline { LayoutTaskFactory::create(None::<&mut LTF>, id, ...
5
25
28
62150387733e39fd92e75240ecb4c9be7cd75e18
Patrick Walton
2015-04-02T16:51:40
servo: Merge #5425 - script: Optimize JS rooting to not move the entire `Root` struct from the stack to the return out-pointer (from pcwalton:optimize-rooting); r=Ms2ger This was showing up very high in instruction-level profiling. r? @jdm Source-Repo: https://github.com/servo/servo Source-Revision: 85808c1cdd39a3af...
diff --git a/script/dom/bindings/js.rs b/script/dom/bindings/js.rs index 687bd59e6..357a3282f 100644 --- a/script/dom/bindings/js.rs +++ b/script/dom/bindings/js.rs @@ -626,12 +626,12 @@ impl RootCollection { } } - /// Track a stack-based root to ensure LIFO root ordering - fn root<'b, T: Reflecta...
1
12
9
39eef3d12f9e222395331d6deed1f2f7efbac7cf
Patrick Walton
2015-04-02T15:57:40
servo: Merge #5426 - script: Stop destroying all flows on every mouse-over event (from pcwalton:mouse-over-incremental-reflow); r=jdm r? @jdm Source-Repo: https://github.com/servo/servo Source-Revision: 5457ec60983481fb436114d548f0872e274e420f
diff --git a/script/dom/document.rs b/script/dom/document.rs index a8568eb04..6069fef7e 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -219,9 +219,13 @@ pub trait DocumentHelpers<'a> { fn handle_click_event(self, js_runtime: *mut JSRuntime, _button: uint, point: Point2D<f32>); fn dispatch...
2
17
13
973e30959939f0f3b4bfafbe014046cec9a07e83
Ms2ger
2015-04-02T14:06:41
servo: Merge #5486 - Stop using int/uint in layout (from Ms2ger:int); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: d999fb9db0d572f63165fa8aa2e24023903b6332
diff --git a/gfx/text/glyph.rs b/gfx/text/glyph.rs index c5f803ca6..8ecffcf14 100644 --- a/gfx/text/glyph.rs +++ b/gfx/text/glyph.rs @@ -522,7 +522,7 @@ int_range_index! { #[derive(RustcEncodable)] #[doc = "An index that refers to a character in a text run. This could \ point to the middle of a ...
15
55
55
c2d90891999f22869e2c9231463290352aa78611
Ms2ger
2015-04-02T11:15:38
servo: Merge #5456 - Rewrite NodeChildrenIterator to return Temporary (from Ms2ger:children); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 88bc64444c99fc47febf8e99c0e19c6ae3500990
diff --git a/script/devtools.rs b/script/devtools.rs index 6f6bef0a7..565889416 100644 --- a/script/devtools.rs +++ b/script/devtools.rs @@ -79,7 +79,10 @@ fn find_node_by_unique_id(page: &Rc<Page>, pipeline: PipelineId, node_id: String pub fn handle_get_children(page: &Rc<Page>, pipeline: PipelineId, node_id: Strin...
12
223
144
8bc3d14af7f26d5890fb6c8b127bb94786646db4
Matt McCoy
2015-04-02T04:15:37
servo: Merge #5299 - Add HTTP compression (from mattnenterprise:http_compression); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: dbd16932e67c63a778362f71be028132279d5e91
diff --git a/net/Cargo.toml b/net/Cargo.toml index 8f8c43b41..f98ec042b 100644 --- a/net/Cargo.toml +++ b/net/Cargo.toml @@ -31,3 +31,4 @@ cookie="*" regex = "0.1.14" regex_macros = "0.1.8" hyper = "0.3" +flate2 = "0.2.0" diff --git a/net/http_loader.rs b/net/http_loader.rs index 6bc5e9900..57e65a02b 100644 --- a/ne...
4
73
22