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
709c2e1a085a893f9c975642b643bcd22784d059
Josh Matthews
2015-08-13T18:41:48
servo: Merge #7132 - Document the use and meaning of the devtools control messages. Fixes … (from jdm:docenum); r=ms2ger …#6922. Source-Repo: https://github.com/servo/servo Source-Revision: f3b7c5cb4b0fab20db51b7560c3b3bb2d115be69
diff --git a/devtools/actors/framerate.rs b/devtools/actors/framerate.rs index 646234a7e..ebb6561a9 100644 --- a/devtools/actors/framerate.rs +++ b/devtools/actors/framerate.rs @@ -2,27 +2,24 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MP...
10
80
96
e5d3e196e5e70e4cb106381d781eb0f654f194c2
Patrick Walton
2015-08-13T17:45:20
servo: Merge #7181 - layout: Stop double-counting inline margins on `<input type=button>` and friends (from pcwalton:input-button-margins); r=mbrubeck Improves the Google home page. r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 94c8dcd575a5187e02ec043c686b1cdfa6b30ba6
diff --git a/layout/construct.rs b/layout/construct.rs index 5976045e7..0e57bd13d 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -673,11 +673,13 @@ impl<'a> FlowConstructor<'a> { fn build_flow_for_block_like(&mut self, flow: FlowRef, node: &ThreadSafeLayoutNode) -> Const...
2
23
5
eabb995d2f53b54ef918cbf80bbd84abda30ead7
Ms2ger
2015-08-13T13:14:22
servo: Merge #7189 - Deny unsafe code in compositing (from Ms2ger:unsafe-compositing); r=larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: 7f0e62b6fbc8ae03ac77750ee4568e66b794f108
diff --git a/compositing/lib.rs b/compositing/lib.rs index 1a10646fa..95eba39c8 100644 --- a/compositing/lib.rs +++ b/compositing/lib.rs @@ -7,6 +7,8 @@ #![feature(slice_bytes)] #![feature(vec_push_all)] +#![deny(unsafe_code)] + #[macro_use] extern crate log;
1
2
0
139fb99e774322003fdaf23aa170329635486854
Ms2ger
2015-08-13T08:55:10
servo: Merge #7187 - Use Iterator::any in collect_old_layers (from Ms2ger:use-any); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 9fda72d60fcc2db5c4af37b58621071305858018
diff --git a/compositing/compositor_layer.rs b/compositing/compositor_layer.rs index 380660be6..3b4ea12a9 100644 --- a/compositing/compositor_layer.rs +++ b/compositing/compositor_layer.rs @@ -302,9 +302,9 @@ impl CompositorLayer for Layer<CompositorData> { true } else { /...
1
2
2
38c27cb4de8a21aba78c21fcc50c90151fb72754
Glenn Watson
2015-08-13T07:53:44
servo: Merge #7186 - Enable item clipping on normal transform layers. Fixes rounded corners on layers with 2d transforms (from glennw:rounded-clip); r=pcwalton Needed for #6643. Source-Repo: https://github.com/servo/servo Source-Revision: c1cc2c1a27cb6887934ab5088cccdb33434a680b
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 323a9c037..bb2b6653b 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -1033,12 +1033,10 @@ impl<'a> Iterator for DisplayItemIterator<'a> { impl DisplayItem { /// Paints this display item into the given painting context. ...
1
4
6
fc67fa5391412d36556b3771e7906769eda16010
Glenn Watson
2015-08-13T04:56:01
servo: Merge #7183 - Add fix / hack for compositor repainting tiles on scroll layers that have stale clipping results (from glennw:scroll-clipping); r=pcwalton Needed for #6643. Fixes #7153. Source-Repo: https://github.com/servo/servo Source-Revision: 8f55af119033e7644d560ca607ad7a89916f53e6
diff --git a/layout/block.rs b/layout/block.rs index e044c04d3..fdfec58e7 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -1763,6 +1763,8 @@ impl Flow for BlockFlow { (overflow_x::T::auto, _) | (overflow_x::T::scroll, _) | (_, overflow_x::T::auto) | (_, overflow_x::T::scroll) => ...
1
2
0
88f6df377534e503c495396bad103238d11d3e8d
Corey Farwell
2015-08-13T04:13:16
servo: Merge #6867 - Utilize match guard; make methods more similar (from frewsxcv:match-guard-and-similar); r=jdm Make the structure for the `stretchiness` and `boldness` methods more similar Source-Repo: https://github.com/servo/servo Source-Revision: 55a9abdf358dd8f05b06849f0d39b4e8ca8f6ba3
diff --git a/gfx/platform/macos/font.rs b/gfx/platform/macos/font.rs index 6ef613572..dac669d22 100644 --- a/gfx/platform/macos/font.rs +++ b/gfx/platform/macos/font.rs @@ -94,24 +94,25 @@ impl FontHandleMethods for FontHandle { } fn boldness(&self) -> font_weight::T { - // -1.0 to 1.0 - let n...
1
16
15
97ac24bdd0b78d196d591047bd5b5ad82e8e1637
Glenn Watson
2015-08-13T00:15:40
servo: Merge #7182 - Ensure compositor layers are collected when removed from layout (from glennw:collect-old-layers); r=pcwalton Needed for #6643 and #7134. Source-Repo: https://github.com/servo/servo Source-Revision: 1542a879a544ca4d32256748b1819567a5c3b6fa
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index c7fc95d59..d70956e90 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -379,6 +379,7 @@ impl<Window: WindowMethods> IOCompositor<Window> { (Msg::InitializeLayersForPipeline(pipeline_id, epoch, properties), ...
2
57
0
afb8220fdd6cac793d17f83a4e8c39443e3d03fb
Ms2ger
2015-08-12T18:22:47
servo: Merge #7176 - Merge the fragment handling into handle_navigate (from Ms2ger:navigate-fragment); r=jdm This is handled in the 'navigate' algorithm in the specification. Source-Repo: https://github.com/servo/servo Source-Revision: e44ae6404fd25ed51a543141ca8f9cc2a3443817
diff --git a/script/dom/window.rs b/script/dom/window.rs index 3190e6081..f471d068f 100644 --- a/script/dom/window.rs +++ b/script/dom/window.rs @@ -887,14 +887,7 @@ impl<'a> WindowHelpers for &'a Window { /// Commence a new URL load which will either replace this window or scroll to a fragment. fn load_url...
2
14
27
f33fc5e090d0d075c2923d72e0958e8f23435e0a
Patrick Walton
2015-08-12T15:34:26
servo: Merge #7150 - layout: Take relative position offsets for inlines and inline-blocks into account only once (from pcwalton:position-relative-inline-block); r=mbrubeck There were two bugs here: (1) relative position applied to scanned/unscanned text fragments independently of the container element that applied tha...
diff --git a/layout/construct.rs b/layout/construct.rs index ce4417a5a..5976045e7 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -227,6 +227,20 @@ impl InlineFragmentsAccumulator { } } + fn from_inline_node_and_style(node: &ThreadSafeLayoutNode, style: Arc<ComputedValues>) + ...
3
68
74
2be810b7fa6582e3e92be63440e086b0c544a653
Ms2ger
2015-08-12T14:28:29
servo: Merge #7171 - Remove ScriptControlChan (from Ms2ger:ScriptControlChan); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 3ad49fc689ceb6067cd6dea1aa0d004321704b8e
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 5dfe85a43..c7fc95d59 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -39,7 +39,7 @@ use msg::constellation_msg::{PipelineId, WindowSizeData}; use png; use profile_traits::mem::{self, Reporter, ReporterRequest, ReportKin...
12
55
85
d830457ace5416b8796a81fdae3cbb3223883b69
Ms2ger
2015-08-12T13:29:47
servo: Merge #7170 - Avoid unwrap calls in handle_navigate_msg (from Ms2ger:unwrap-constellation); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 54300a9c73f7c8289604ab9a957419577e10c1ac
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 50e755eb0..ab5a69b42 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -798,20 +798,28 @@ impl<LTF: LayoutTaskFactory, STF: ScriptTaskFactory> Constellation<LTF, STF> { let next = match direction ...
1
18
10
6e952e45363cb58b7af9f293aa35649c30981234
Ms2ger
2015-08-12T12:48:07
servo: Merge #7167 - Disallow unsafe code in the devtools and devtools_traits crates (from Ms2ger:unsafe-devtools); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 2f0a9e7fce9b8d3ee5ddf0cc5431547462378ff0
diff --git a/devtools/actor.rs b/devtools/actor.rs index a2499ec46..b0cd26e24 100644 --- a/devtools/actor.rs +++ b/devtools/actor.rs @@ -44,6 +44,7 @@ impl Actor + Send { /// Returns some reference to the boxed value if it is of type `T`, or /// `None` if it isn't. #[inline] + #[allow(unsafe_code)] ...
3
5
0
e8e91d9d59c04cb52e4fc9684fbc7cbc227d59ad
Greg Guthe
2015-08-11T22:43:09
servo: Merge #7164 - Use one version of serde_macros (from g-k:one-serde-macros-0.5.1); r=mbrubeck Refs: https://github.com/servo/servo/issues/7130 Ran `./mach update-cargo -a` and only seeing version 0.5.1: ``` $ git grep serde_macros components/canvas_traits/Cargo.toml:serde_macros = "0.5" components/canvas_traits...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 141972c79..2e8a8a7bd 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -74,8 +74,8 @@ dependencies = [ "freetype 0.1.0 (git+https://github.com/servo/rust-freetype)", "freetype-sys 2.4.11 (git+https://github.com/servo/libfreetype2)", "libc 0.1.8 (registr...
1
46
54
d2f54bb4d9c2842a5ed53c2aa3fa5d5a68147efd
Patrick Walton
2015-08-11T18:57:02
servo: Merge #7024 - layout: Rewrite whitespace stripping (from pcwalton:whitespace-stripping); r=mbrubeck This patch makes Servo unconditionally strip whitespace before text run scanning (assuming that the `white-space` property allows it). Whitespace stripping during reflow is now only used for handling whitespace a...
diff --git a/gfx/text/util.rs b/gfx/text/util.rs index 1b78e42e7..855cb2d0d 100644 --- a/gfx/text/util.rs +++ b/gfx/text/util.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/. */ -#[derive(PartialEq, Eq, Copy, Clone)...
5
208
102
a69d1772ba9295fcf83b5a2d8e5d6ccaeefe8832
Patrick Walton
2015-08-11T18:22:14
servo: Merge #7137 - layout: Make absolutely-positioned elements with `z-index: auto` not stacking contexts (from pcwalton:absolute-stacking-contexts); r=glennw Improves many sites. Closes #7069. r? @glennw Source-Repo: https://github.com/servo/servo Source-Revision: 7ce47266acc7c23de537905746b274b4a75424fa
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 6f2ebed08..323a9c037 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -181,25 +181,31 @@ impl DisplayList { for item in items.iter() { match *item { DisplayItem::SolidColorClass(r...
3
52
22
e0e1b14c7452a3920d0a9979f3f455594f248fde
Matt Brubeck
2015-08-11T17:31:32
servo: Merge #7161 - Snap rectangles to nearest pixels consistently (from mbrubeck:underline); r=pcwalton Snapping the top-left and bottom-right corners separately can cause a rectangle to change size or even become empty when offset by a subpixel amount. Instead, this patch snaps the top-left corner, then snaps the ...
diff --git a/gfx/paint_context.rs b/gfx/paint_context.rs index 6fbdece15..9f6df9287 100644 --- a/gfx/paint_context.rs +++ b/gfx/paint_context.rs @@ -1171,16 +1171,10 @@ pub trait ToAzureRect { impl ToAzureRect for Rect<Au> { fn to_nearest_azure_rect(&self) -> Rect<AzFloat> { - let top_left = self.origin....
1
7
12
596c54c004568e75107b8b13f23b6ac3e25c6611
wilmoz
2015-08-11T07:34:47
servo: Merge #7140 - Remove Message suffix from NetworkEventMessage (from wilcus:master); r=jdm https://github.com/servo/servo/issues/7129 Source-Repo: https://github.com/servo/servo Source-Revision: 15a73614f4ae9f7b00a44aa66d899ab4a5254114
diff --git a/devtools/lib.rs b/devtools/lib.rs index 41dbb20eb..d9335943b 100644 --- a/devtools/lib.rs +++ b/devtools/lib.rs @@ -419,7 +419,7 @@ fn run_server(sender: Sender<DevtoolsControlMsg>, worker_id))) => handle_console_message(actors.clone(), id, worker_id, console_messa...
3
6
6
674e27632cd716754e1872d62773b15a2569db99
Patrick Walton
2015-08-11T04:29:40
servo: Merge #7090 - layout: Implement basic `overflow: scroll` functionality (from pcwalton:overflow-scroll); r=glennw Known issues: * Display list optimization can sometimes optimize out elements that should be shown. This affects the Enyo demo. * The `overflow: scroll` container doesn't clip the inner layer pro...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index cfa5f68a4..5dfe85a43 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -255,13 +255,13 @@ impl<Window: WindowMethods> IOCompositor<Window> { time_profiler_chan: time::ProfilerChan, mem_profiler_chan:...
10
277
111
41f0ce134229d0992012a0571276b551fcc5c0cf
Glenn Watson
2015-08-11T02:58:12
servo: Merge #7147 - Fix explicit height edge case with absolute / relative nested divs (from glennw:abs-explicit-height); r=pcwalton Needed for #6643. Source-Repo: https://github.com/servo/servo Source-Revision: c079c1cf6d30d6033d60e943df42fce2494790b9
diff --git a/layout/block.rs b/layout/block.rs index 00827a87b..c8f960dc7 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -1104,7 +1104,8 @@ impl BlockFlow { let screen_size = LogicalSize::from_physical(self.fragment.style.writing_mode, layout...
1
3
7
96eaf88cfebec967eb4c031a2d5467664b8f4eec
Glenn Watson
2015-08-11T02:23:42
servo: Merge #7141 - Update rust-layers to get 2d transform + clipping support (from glennw:2d-clipping-update); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 5af93e9ca3500a75f845614f17323d258ee72d71
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index b3830a111..cfa5f68a4 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -1238,10 +1238,10 @@ impl<Window: WindowMethods> IOCompositor<Window> { request.page_rect = request.page_rect / scale.get(); ...
4
8
8
81e86352cf9bf592203c407b76c45a50742fff8d
Lars Bergstrom
2015-08-11T00:18:27
servo: Merge #7143 - Add the Servo User Agent strings (from larsbergstrom:user_agent); r=mbrubeck Fixes #4331. I've tested this out on desktop and Android on "the usual" sites (reddit, cnn, github, wikipedia, etc.). r? @mbrubeck @metajack Source-Repo: https://github.com/servo/servo Source-Revision: 049cee1b5eaba598b...
diff --git a/util/opts.rs b/util/opts.rs index 252abf561..dec1dc3b1 100644 --- a/util/opts.rs +++ b/util/opts.rs @@ -229,6 +229,18 @@ static FORCE_CPU_PAINTING: bool = true; #[cfg(not(target_os="android"))] static FORCE_CPU_PAINTING: bool = false; +#[cfg(target_os="android")] +const DEFAULT_USER_AGENT: &'static str...
1
15
1
cb122a7e782f002ec7a368c2fbf93cb48cd3b2d4
Brandon Fairchild
2015-08-10T21:10:57
servo: Merge #7136 - Rename SendConsoleMessage to ConsoleAPI (from nerith:consoleapi); r=jdm Fixes #7131. Source-Repo: https://github.com/servo/servo Source-Revision: 41166fdb5bd16e96827118b9ab5543c65418c200
diff --git a/devtools/lib.rs b/devtools/lib.rs index a35d2eac4..41dbb20eb 100644 --- a/devtools/lib.rs +++ b/devtools/lib.rs @@ -413,7 +413,7 @@ fn run_server(sender: Sender<DevtoolsControlMsg>, ids, script_sender, pageinfo))) => handle_new_global(actors.clone(), ids, script_se...
3
3
3
06f93a16888df4b9042b1fdf2deca8b58d0271c7
Anthony Ramine
2015-08-10T20:05:02
servo: Merge #6778 - Optimise Node.childNodes (from nox:childnodes); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 2b9590c5a53f273c13c6fb36f95fbf593bbffd8b
diff --git a/layout/parallel.rs b/layout/parallel.rs index efe491658..ad0517b6d 100644 --- a/layout/parallel.rs +++ b/layout/parallel.rs @@ -123,8 +123,7 @@ pub trait ParallelPreorderDomTraversal : PreorderDomTraversal { // Perform the appropriate traversal. self.process(node); - ...
5
253
32
edb41591614991ff16a6123940ba1a07509439d1
Adrián Arroyo Calle
2015-08-10T13:04:26
servo: Merge #7125 - MIME classifier should use &[T] instead of &Vec<T> (from AdrianArroyoCalle:master); r=Ms2ger Closes #7109 Source-Repo: https://github.com/servo/servo Source-Revision: a91c366c06be4bf1765dc8be1c019146d5da3b48
diff --git a/net/mime_classifier.rs b/net/mime_classifier.rs index 7b9696dda..1c0381740 100644 --- a/net/mime_classifier.rs +++ b/net/mime_classifier.rs @@ -21,7 +21,7 @@ impl MIMEClassifier { no_sniff: bool, check_for_apache_bug: bool, supplied_type: &Opti...
1
14
14
c51ee36724ac48c5aac6088db609047e2a912acd
Ms2ger
2015-08-10T07:35:11
servo: Merge #7123 - Remove unused import (from Ms2ger:warnings); r=saneyuki Source-Repo: https://github.com/servo/servo Source-Revision: 53748129321d2c439590368895765f7c93aee8c7
diff --git a/devtools/lib.rs b/devtools/lib.rs index d36268901..a35d2eac4 100644 --- a/devtools/lib.rs +++ b/devtools/lib.rs @@ -40,7 +40,6 @@ use actors::console::ConsoleActor; use actors::network_event::{NetworkEventActor, EventActor, ResponseStartMsg}; use actors::framerate::FramerateActor; use actors::inspector:...
1
0
1
272ecb6c3ab53b09499e9d4ec1352e6285537f35
Harrison G
2015-08-10T00:27:53
servo: Merge #7101 - Allows object evaluation in devtools -- Closes #6724 (from HarryLovesCode:master); r=jdm The purpose of this is to fix how objects were previously evaluated in the developer tools. - Before this, evaluating an object such as the `window` would `panic!` - After this, evaluating an object such as t...
diff --git a/devtools/actors/console.rs b/devtools/actors/console.rs index 641dc9345..9eca96d62 100644 --- a/devtools/actors/console.rs +++ b/devtools/actors/console.rs @@ -8,6 +8,7 @@ //! inspection, JS evaluation, autocompletion) in Servo. use actor::{Actor, ActorRegistry}; +use actors::object::ObjectActor; use ...
5
71
11
0e6db46ad6edf1cce0209dbc3c6930eaa3d55415
Ms2ger
2015-08-09T18:10:08
servo: Merge #7114 - Introduce a follow_hyperlink function to implement the "follow a hyperlink" algorithm (from Ms2ger:follow-hyperlink); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: a74f3d1d9c09b40a81fa4410797e8c4920225c78
diff --git a/script/dom/htmlanchorelement.rs b/script/dom/htmlanchorelement.rs index 2774b74a6..b47d799c8 100644 --- a/script/dom/htmlanchorelement.rs +++ b/script/dom/htmlanchorelement.rs @@ -24,13 +24,14 @@ use dom::node::{Node, NodeHelpers, NodeTypeId, document_from_node, window_from_n use dom::virtualmethods::Virt...
1
36
18
6297c4224a0479f69580dc3486f4e98caa00ab11
David Zbarsky
2015-08-09T13:00:56
servo: Merge #7092 - Clean up and fix PutImageData (from dzbarsky:putimagedata); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 6a8bc8528498c0cbb2e50567d765a989cde2d115
diff --git a/canvas/canvas_paint_task.rs b/canvas/canvas_paint_task.rs index cfaa55542..f5c4e6c1f 100644 --- a/canvas/canvas_paint_task.rs +++ b/canvas/canvas_paint_task.rs @@ -55,55 +55,6 @@ impl<'a> CanvasPaintTask<'a> { image_data } - - /// dirty_rect: original dirty_rect provided by the putImageD...
3
96
108
256ba706deaffb7158cf7bc9699df78c65c61e87
David Zbarsky
2015-08-09T12:32:30
servo: Merge #6975 - Fix getImageData with sizes < 1 pixel (from dzbarsky:get-tiny); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: dbce4c5bd8ec005ba78ac8c2f8754bd137c87f25
diff --git a/canvas/canvas_paint_task.rs b/canvas/canvas_paint_task.rs index c2921561c..cfaa55542 100644 --- a/canvas/canvas_paint_task.rs +++ b/canvas/canvas_paint_task.rs @@ -29,8 +29,7 @@ impl<'a> CanvasPaintTask<'a> { /// It reads image data from the canvas /// canvas_size: The size of the canvas we're re...
3
27
29
70c2c2ed1ade0958b113540723554253815cad10
Adrián Arroyo Calle
2015-08-09T10:16:55
servo: Merge #7107 - Removed unused object_to_string method (from AdrianArroyoCalle:master); r=Ms2ger Closes #7100 Source-Repo: https://github.com/servo/servo Source-Revision: 28abc55d9b55ce8488cbcba9730a0b0ff5badcee
diff --git a/script/dom/bindings/proxyhandler.rs b/script/dom/bindings/proxyhandler.rs index a677cecdf..5ee6361d6 100644 --- a/script/dom/bindings/proxyhandler.rs +++ b/script/dom/bindings/proxyhandler.rs @@ -8,8 +8,8 @@ use dom::bindings::conversions::is_dom_proxy; use dom::bindings::utils::delete_property_by_id; ...
1
2
16
222ba78f20847dd31125daef284a70547731299c
Patrick Walton
2015-08-08T23:16:14
servo: Merge #7102 - layout: Allow list items to be absolute containing blocks (from pcwalton:li-absolute-containing-block); r=glennw Fixes overflowing highlight in the side menu on GitHub. r? @glennw Source-Repo: https://github.com/servo/servo Source-Revision: b00583bd4e7169a6b952633df718268904f2bd0c
diff --git a/layout/list_item.rs b/layout/list_item.rs index abf216483..c449406f4 100644 --- a/layout/list_item.rs +++ b/layout/list_item.rs @@ -24,7 +24,7 @@ use util::geometry::Au; use util::logical_geometry::LogicalSize; use util::opts; use style::properties::ComputedValues; -use style::computed_values::list_styl...
1
13
2
9e5f4b9a45e3aefe430a43c4c4870b0c2423f7b4
Patrick Walton
2015-08-08T16:55:00
servo: Merge #7099 - servo: Update `ipc-channel` to pick up `bincode` support (from pcwalton:bincode); r=jdm Large improvement in page load times, especially in debug builds. r? @jdm Source-Repo: https://github.com/servo/servo Source-Revision: d4d4d6dc013ee322282de7ec0effa54c8827a775
diff --git a/canvas_traits/Cargo.toml b/canvas_traits/Cargo.toml index bd0a53301..c08b64afc 100644 --- a/canvas_traits/Cargo.toml +++ b/canvas_traits/Cargo.toml @@ -23,7 +23,7 @@ git = "https://github.com/ecoal95/rust-offscreen-rendering-context" git = "https://github.com/pcwalton/ipc-channel" [dependencies.serde] ...
16
106
74
486a8b894aab862dbb7ac066d45fe0c2b498c612
Ms2ger
2015-08-08T12:53:32
servo: Merge #7046 - Implement a base_url getter and use it for style attributes (from Ms2ger:base-url); r=dzbarsky Source-Repo: https://github.com/servo/servo Source-Revision: 530d4547c945fbf120d546d6e9a31b8f3bacc78f
diff --git a/script/dom/document.rs b/script/dom/document.rs index 562719de4..616ca867a 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -23,6 +23,7 @@ use dom::bindings::codegen::InheritTypes::{HTMLAreaElementDerived, HTMLEmbedElem use dom::bindings::codegen::InheritTypes::{HTMLFormElementDerived, ...
4
120
5
baafdb584d8a0193a1f14a246c1cb44c056dcfa6
Ms2ger
2015-08-08T12:09:13
servo: Merge #7075 - Improve code around Window::load_url (from Ms2ger:load_url); r=dzbarsky Source-Repo: https://github.com/servo/servo Source-Revision: a0af7a1581ffaa6b40149affdd5519caa2be015f
diff --git a/script/dom/document.rs b/script/dom/document.rs index d60545e15..562719de4 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -242,7 +242,6 @@ pub trait DocumentHelpers<'a> { fn disarm_reflow_timeout(self); fn unregister_named_element(self, to_unregister: &Element, id: Atom); ...
4
20
17
936d56814fe7893769d460eb989ec8602d8edccc
Michael Tremel
2015-08-08T08:18:34
servo: Merge #7091 - Remove unneeded import (from mt2d2:unused_imports_devtools); r=SimonSapin This fixes #7087. Source-Repo: https://github.com/servo/servo Source-Revision: 23b81326cc2ac86ef93ff067ecbfa2bce482084f
diff --git a/devtools_traits/lib.rs b/devtools_traits/lib.rs index 0183f325c..16218f911 100644 --- a/devtools_traits/lib.rs +++ b/devtools_traits/lib.rs @@ -37,7 +37,6 @@ use ipc_channel::ipc::IpcSender; use time::Duration; use std::net::TcpStream; -use std::sync::mpsc::{Receiver, Sender}; // Information would b...
1
0
1
1294c0976c5032045e637ac5bd887587f145e93a
Patrick Walton
2015-08-08T07:01:54
servo: Merge #7056 - layout: Introduce infrastructure for tracking, backing up, and splitting at the last known good split point, and use it for `white-space: nowrap` (from pcwalton:whitespace-nowrap-overflows); r=mbrubeck Fixes overflowing tables on Wikipedia. This infrastructure should form the basis of our fix for...
diff --git a/layout/inline.rs b/layout/inline.rs index 52eb08794..b29347865 100644 --- a/layout/inline.rs +++ b/layout/inline.rs @@ -204,6 +204,9 @@ struct LineBreaker { pending_line: Line, /// The lines we've already committed. lines: Vec<Line>, + /// The index of the last known good line breaking op...
1
80
11
59711f790db63aa75a38eaa9bcd1a7656dc82fd9
Lars Bergstrom
2015-08-08T01:54:27
servo: Merge #7051 - Update submodules and don't call setrlimit on Android (from larsbergstrom:android_updates); r=mbrubeck r? @mbrubeck Fixes #6432. Source-Repo: https://github.com/servo/servo Source-Revision: c528039a5324ffccc620bb49ad30823a1afab013
diff --git a/script/lib.rs b/script/lib.rs index 8fc23dc78..81a1a62b1 100644 --- a/script/lib.rs +++ b/script/lib.rs @@ -95,7 +95,7 @@ mod devtools; mod horribly_inefficient_timers; mod webdriver_handlers; -#[cfg(any(target_os="linux", target_os="android"))] +#[cfg(target_os="linux")] #[allow(unsafe_code)] fn per...
2
3
3
77efa07eb9c0d8beb11628d94a4863d7a8e7ae0b
Harrison G
2015-08-07T23:14:48
servo: Merge #7073 - Fix requestAnimationFrame timestamps in queue (from HarryLovesCode:master); r=SimonSapin This resolves #7044 which involved callbacks in a queue not receiving the same timestamp despite the specification saying they should. An extra test was added to verify the correct behavior. Source-Repo: http...
diff --git a/script/dom/document.rs b/script/dom/document.rs index 0057ab0bc..d60545e15 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -957,9 +957,10 @@ impl<'a> DocumentHelpers<'a> for &'a Document { let window = window.r(); let performance = window.Performance(); let pe...
1
2
1
f390960225ddf691bd81db401174a08183a1d297
Connor Imes
2015-08-07T20:41:37
servo: Merge #7009 - Remove typedefs DevtoolsControlChan and DevtoolsControlPort (from connorimes:remove-confusing-typedefs); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: a5c7508fabb36f9f5bc14e84b5f481cf7036e5f7
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index c3d0c247b..50e755eb0 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -16,7 +16,7 @@ use canvas::webgl_paint_task::WebGLPaintTask; use canvas_traits::CanvasMsg; use compositor_task::CompositorProxy; use comp...
4
7
10
cf8406d3725aa582f2e76aad37fc0f85de48d154
Simon Sapin
2015-08-07T20:05:19
servo: Merge #7013 - Make the Ahem font available to test-css and test-wpt tests (from servo:user-stylesheets); r=mbrubeck Add support for user stylesheets, and provide one to tests with an `@font-face` rule for it. Fix #6195. Many previously-failing tests now pass, and a few previously-passing now fail. Among the ...
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index 575aee4a7..a22781798 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -297,6 +297,14 @@ impl<'a> DerefMut for RWGuard<'a> { } } +fn add_font_face_rules(stylesheet: &Stylesheet, device: &Device, font_cache_task: &FontCacheTask) { +...
6
88
44
0fe1026a41e3bfc454feaa5c606be2f14dcda547
Ms2ger
2015-08-07T19:05:39
servo: Merge #7062 - Update most dependencies (from servo:update-some); r=SimonSapin This excludes: * tenacious, as it has not yet been updated to the current rustc (Manishearth/rust-tenacious#6); * ipc-channel, as it doesn't build on linux upstream. Source-Repo: https://github.com/servo/servo Source-Revision: 49c...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 2804a772b..c0fe913d1 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -23,7 +23,7 @@ dependencies = [ "script 0.0.1", "script_tests 0.0.1", "style_tests 0.0.1", - "time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.32 (re...
1
162
145
02ac14a189b838e1b741acf716b630b5352b42b1
James Graham
2015-08-07T17:30:33
servo: Merge #6415 - Add DOMLoad message to constellation that is sent after the DOM Load event is dispatched (from jgraham:dom_load); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 361d94d23ebf2897a240763d28fbb77b3d831b34
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 28aba6346..c3d0c247b 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -423,6 +423,11 @@ impl<LTF: LayoutTaskFactory, STF: ScriptTaskFactory> Constellation<LTF, STF> { debug!("constellation got ...
3
28
2
1a1bc9f014e8d2ebff8e7197ca5499f9825b0674
Simon Sapin
2015-08-07T16:48:47
servo: Merge #6957 - Upgrade cssparser (from servo:cssparserup); r=larsbergstrom+dzbarsky Pick up the fix for https://github.com/servo/rust-cssparser/issues/76 `*.ini` files removal based on running `./mach test-css tests/wpt/css-tests/css21_dev/html4/*color*`, I didn’t run the whole test suite. r? @larsbergstrom S...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 166e1f8fd..2804a772b 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -96,7 +96,7 @@ version = "0.0.1" dependencies = [ "azure 0.1.0 (git+https://github.com/servo/rust-azure)", "canvas_traits 0.0.1", - "cssparser 0.3.4 (registry+https://github.com/rust-...
1
9
9
5c09fa9e6a86d038f430bb93f96501db46d3c382
Ms2ger
2015-08-07T15:40:50
servo: Merge #7000 - Remove some stray whitespace (from Ms2ger:space); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 29c12dfc56b9d2398fd2b4d26404a850b99d73dd
diff --git a/script/dom/workerglobalscope.rs b/script/dom/workerglobalscope.rs index 1338ca495..9a56676eb 100644 --- a/script/dom/workerglobalscope.rs +++ b/script/dom/workerglobalscope.rs @@ -136,7 +136,7 @@ impl WorkerGlobalScope { } pub fn resource_task<'a>(&'a self) -> &'a ResourceTask { - & se...
1
1
1
df98f1dae3f66d9a72088042c54500b5cbc98afc
Matt Brubeck
2015-08-07T14:55:24
servo: Merge #7041 - Allow list markers to contain multiple fragments (from mbrubeck:marker_fragments); r=pcwalton Fixes #6913. r? @pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 568bd92236e6eee0a3dfc077dccf74e4fdc79582
diff --git a/layout/construct.rs b/layout/construct.rs index b628a123f..7194281e6 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -1164,18 +1164,18 @@ impl<'a> FlowConstructor<'a> { fn build_flow_for_list_item(&mut self, node: &ThreadSafeLayoutNode, flotation: float::T) ...
3
21
20
cb20fdcbe48595df744f636570ecc0a2563008ab
Georg Brandl
2015-08-07T14:10:07
servo: Merge #7007 - Fix minor typo in lint docstring (from birkenfeld:patch-1); r=Ms2ger It checks for public, not private fields. Source-Repo: https://github.com/servo/servo Source-Revision: 96cb8261e648e2a9bda46263430665e2aedf2eae
diff --git a/plugins/lints/privatize.rs b/plugins/lints/privatize.rs index cc20b2864..3a96b1873 100644 --- a/plugins/lints/privatize.rs +++ b/plugins/lints/privatize.rs @@ -13,7 +13,7 @@ declare_lint!(PRIVATIZE, Deny, /// Lint for keeping DOM fields private /// /// This lint (disable with `-A privatize`/`#[allow(pri...
1
1
1
3217325f14b53fd75730c616d4dc7176ac707112
Michael Howell
2015-08-07T12:14:12
servo: Merge #7003 - GC pause reporting (from notriddle:master); r=Ms2ger Closes #6968. Source-Repo: https://github.com/servo/servo Source-Revision: b4e30da3dbf58c16703864f4bec4b0b0132084fa
diff --git a/script/script_task.rs b/script/script_task.rs index 9b57e9283..17c38a2de 100644 --- a/script/script_task.rs +++ b/script/script_task.rs @@ -78,6 +78,7 @@ use string_cache::Atom; use util::str::DOMString; use util::task::spawn_named_with_send_on_failure; use util::task_state; +use util::opts; use eucl...
2
58
1
1d1ebeebf695edb01418b52e7dbfb20e2edd23d9
Connor Imes
2015-08-07T07:55:20
servo: Merge #7053 - Move net_error_list from net to net_traits. Fixes #7050 (from connorimes:move-net-error-list); r=mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 44c4bb00c1cb8645ee2fc303848a5136108e594f
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index f00f282d1..fe8f44489 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -22,9 +22,6 @@ path = "../script_traits" [dependencies.msg] path = "../msg" -[dependencies.net] -path = "../net" - [dependencies.profile_traits] path = "../pr...
7
3
8
71668b6d11c32df16658a7d856e5d04fd475d22a
Patrick Walton
2015-08-07T06:40:54
servo: Merge #7043 - script: Make the legacy presentational attributes on `<td>` apply to `<th>` too (from pcwalton:th-width); r=Ms2ger Makes the Google SERPs not so narrow. r? @Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 17263a525b316d1d02b1cc3181ec9aef3b7001e6
diff --git a/script/dom/element.rs b/script/dom/element.rs index 8ebcfc3f3..34309eee2 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -26,7 +26,6 @@ use dom::bindings::codegen::InheritTypes::{HTMLTableElementDerived, HTMLTableCel use dom::bindings::codegen::InheritTypes::{HTMLTableRowElementDerived, ...
1
2
3
77480e8e794cbc23d36e15d039c5c18c42c9809c
Glenn Watson
2015-08-07T05:26:24
servo: Merge #7021 - Fix display list optimization on retina displays. Fixes #7018 (from glennw:fix-7018); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 50a30121bfbb842067b980815fbe6d6e385e996a
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index f303a3b96..20e375d16 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -438,7 +438,9 @@ impl StackingContext { inverse_transform.m21, inverse_transform.m22, ...
1
3
1
8352eabfd5d3c9e45010b5fcd4e840573646f6de
Patrick Walton
2015-08-07T04:11:04
servo: Merge #6977 - layout: Make sure anonymous table flows are statically positioned (from pcwalton:containing-block-link-crash); r=mbrubeck The failing `float-applies-to-*` CSS 2.1 tests never really should have been passing in the first place; they depend on floats inside fixed-layout tables working properly, whic...
diff --git a/layout/block.rs b/layout/block.rs index c703542b5..00827a87b 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -45,7 +45,6 @@ use layout_debug; use layout_task::DISPLAY_PORT_SIZE_FACTOR; use model::{IntrinsicISizes, MarginCollapseInfo}; use model::{MaybeAuto, CollapsibleMargins, specified, specified...
13
122
110
7acf71c6189b71ed2390ed05f5312be55f61b085
Glenn Watson
2015-08-07T01:46:19
servo: Merge #7017 - Update stb-image to get JPEG progressive support (from glennw:stb-update); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 78792cced2c4f1702a0bc2039bdebf07f8bcd901
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index d5564dcc9..6c02e2d8a 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -1332,7 +1332,7 @@ dependencies = [ [[package]] name = "stb_image" version = "0.1.0" -source = "git+https://github.com/servo/rust-stb-image#e3f7246caa694e863975ead98f4940d046108fd7" +so...
1
1
1
40c965517c4e6de29e644a3ac3ff9a9718f58c24
Patrick Walton
2015-08-07T00:28:13
servo: Merge #7011 - layout: Take inline margins into account when determining the intrinsic sizes of fragments (from pcwalton:inline-margin-intrinsic-size); r=mbrubeck Avoids a needless wrapped line in the repository name on GitHub. r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: da06c2dda...
diff --git a/layout/fragment.rs b/layout/fragment.rs index 3908da52f..d2b21b0a1 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -1340,8 +1340,10 @@ impl Fragment { let border_width = node.style.logical_border_width().inline_start_end(); let padding_inline_size = ...
2
18
1
072b09efb2882e3cf4c4f2465021eb564c24a3d6
Manish Goregaokar
2015-08-06T23:43:09
servo: Merge #7054 - Rollup of 3 pull requests (from Manishearth:rollup); r=Manishearth - Successful merges: #7028, #7034, #7039 - Failed merges: Source-Repo: https://github.com/servo/servo Source-Revision: 76b4bae6ee45317f2ca0aefbc48b89169d2450c8
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index e3ec5f2ed..f00f282d1 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -74,7 +74,6 @@ features = [ "serde_serialization" ] log = "0.3" num = "0.1.24" time = "0.1.17" -libc = "0.1" gleam = "0.1" euclid = "0.1" diff --git a/compos...
10
70
85
4388639ee4d5a49b57621560b79a2bdebf280acb
Matt Brubeck
2015-08-06T22:13:12
servo: Merge #7052 - Rollup of 2 pull requests (from mbrubeck:rollup); r=mbrubeck - Successful merges: #7014, #7015 - Failed merges: Source-Repo: https://github.com/servo/servo Source-Revision: b21584c862f8831dfb40e9cf0495bf04bc6ae1b5
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 17e8c8171..f303a3b96 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -824,7 +824,7 @@ pub struct TextDisplayItem { /// The text run. #[ignore_heap_size_of = "Because it is non-owning"] - pub text_run: Arc<Box<TextR...
6
15
17
961c0df9a88a0533378689f55d6bdf743e4ca320
Harrison G
2015-08-06T20:00:26
servo: Merge #7010 - Fixes #6879 (Improper connections to the devtools server) (from HarryLovesCode:master); r=jdm Modifies how we behave in the case that something attempts to communicate with the devtools server improperly. This includes... - Invalid encoding (Non `UTF8`) of the packet length / error parsing / none...
diff --git a/devtools/lib.rs b/devtools/lib.rs index f268934cc..c791a9c46 100644 --- a/devtools/lib.rs +++ b/devtools/lib.rs @@ -172,8 +172,8 @@ fn run_server(sender: Sender<DevtoolsControlMsg>, println!("error: EOF"); break 'outer } - Err(e) => ...
2
27
12
536f69bb58cca7e2ffccdc23d1a39df31e148f2d
Ms2ger
2015-08-06T18:46:31
servo: Merge #7027 - Lock stderr while printing the alert() message (from Ms2ger:lock-stderr); r=jdm 2a7f262b7df8761261a0fa618394f4e991733a5e was unsufficient for the case where the interleaved output was actually on stderr rather than stdout, such as output from the error macro. Source-Repo: https://github.com/servo...
diff --git a/script/dom/window.rs b/script/dom/window.rs index d31eb3d35..38100d87d 100644 --- a/script/dom/window.rs +++ b/script/dom/window.rs @@ -72,7 +72,7 @@ use std::cell::{Cell, Ref, RefMut, RefCell}; use std::collections::HashSet; use std::default::Default; use std::ffi::CString; -use std::io::{stdout, Write...
1
6
1
d87d48cd1faec35c59798a630ffe4fe0eb75fe6b
Patrick Walton
2015-08-06T17:55:58
servo: Merge #7008 - layout: Take negative margins of floats into account when placing them (from pcwalton:floated-negative-margins); r=mbrubeck Removes extraneous inline space on GitHub pull requests. r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: cf4b411832be5639adafc53055676f5beba3f923
diff --git a/layout/block.rs b/layout/block.rs index d1a333f2b..c703542b5 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -1058,10 +1058,17 @@ impl BlockFlow { }; let float_info: FloatedBlockInfo = (**self.float.as_ref().unwrap()).clone(); + + // Our `position` field accounts for positi...
1
11
4
79064465bfdf0fcbdda87b1615fe597b438d44c4
Ms2ger
2015-08-06T16:31:58
servo: Merge #7002 - Remove the unused WorkerGlobalScope::eventtarget method (from Ms2ger:eventtarget); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 0a8ea98183ec813e490096b20e2c04db425d7b0b
diff --git a/script/dom/workerglobalscope.rs b/script/dom/workerglobalscope.rs index eba4cc266..1338ca495 100644 --- a/script/dom/workerglobalscope.rs +++ b/script/dom/workerglobalscope.rs @@ -131,11 +131,6 @@ impl WorkerGlobalScope { self.constellation_chan.clone() } - #[inline] - pub fn eventtar...
1
0
5
77141051b2675375801fe950cabb9ac111b9e4dc
Matt Brubeck
2015-08-06T14:57:53
servo: Merge #6998 - Update to unicode-bidi 0.2.1 (from mbrubeck:upgrade); r=Manishearth Also includes some missing changes from #6416. Source-Repo: https://github.com/servo/servo Source-Revision: d2ba81ead2daa059a9ee889fe643d00c3d6fb8c8
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 7d655d91e..36224dd67 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -763,7 +763,7 @@ dependencies = [ "string_cache 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "string_cache_plugin 0.1.6 (registry+https://github.com/rust-lang/crate...
1
2
2
01ad3848ee4b77c043099cafad9e794ebe4b507b
farodin91
2015-08-06T12:13:56
servo: Merge #7001 - Remove Unnecessary Code in FileReader #6753 (from farodin91:filereader); r=Ms2ger @jdm r? Source-Repo: https://github.com/servo/servo Source-Revision: ddd2840eed6a9c119b188c7c3aa7258f25702697
diff --git a/script/dom/filereader.rs b/script/dom/filereader.rs index 76394a326..2e0cec633 100644 --- a/script/dom/filereader.rs +++ b/script/dom/filereader.rs @@ -423,11 +423,6 @@ fn perform_annotated_read_operation(gen_id: GenerationId, data: ReadMetaData, bl } }; - let blobtype = data.blobtype.cl...
1
1
6
322c90ea6508e094ea412f02f083efd319f59555
David Zbarsky
2015-08-06T10:34:20
servo: Merge #6970 - GetImageData should return un-premultiplied alpha values (from dzbarsky:getimagedata); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 4726f58d15a6bfed9614b7ceaaab7765a5c01d03
diff --git a/script/dom/canvasrenderingcontext2d.rs b/script/dom/canvasrenderingcontext2d.rs index 502f632ce..c9f8da05b 100644 --- a/script/dom/canvasrenderingcontext2d.rs +++ b/script/dom/canvasrenderingcontext2d.rs @@ -901,7 +901,18 @@ impl<'a> CanvasRenderingContext2DMethods for &'a CanvasRenderingContext2D { ...
1
12
1
fd04f6dc7b2fb1f5a170e6a6726f91c3d9de2b27
Nick Thompson
2015-08-06T09:29:16
servo: Merge #6836 - Extract layout query code into layout/query.rs (from nick-thompson:layout_refactor); r=Ms2ger Fix for #6787. I left the commits split up for ease of review, happy to squash when this gets accepted. Source-Repo: https://github.com/servo/servo Source-Revision: 172f046688c600c9f51f8db0380e399f6372fe...
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index a2dc0d8d6..fb5b6e5ef 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -20,6 +20,8 @@ use incremental::{LayoutDamageComputation, REFLOW, REFLOW_ENTIRE_DOCUMENT, REPAI use layout_debug; use opaque_node::OpaqueNodeMethods; use parallel::{...
3
320
294
7dbacd1611cb1ed7e403f20be9a664dcd9736c92
David Zbarsky
2015-08-06T06:24:02
servo: Merge #6985 - Refactor DrawImage implementations to avoid code duplication (from dzbarsky:drawimage_refactor); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 1b54e9c30c12b42d2a6eaf5b81b88a0f4e02ebb9
diff --git a/script/dom/canvasrenderingcontext2d.rs b/script/dom/canvasrenderingcontext2d.rs index 9cfa10a50..502f632ce 100644 --- a/script/dom/canvasrenderingcontext2d.rs +++ b/script/dom/canvasrenderingcontext2d.rs @@ -220,16 +220,62 @@ impl CanvasRenderingContext2D { // is copied on the rectangle (dx, dy, dh, d...
1
53
140
7531bc1b5417115973c4af2fdfd7848668c15e52
David Zbarsky
2015-08-06T04:57:20
servo: Merge #6989 - Respect the composition op when drawing images (from dzbarsky:compositing); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: b9dcd49778b8ff6d2aef0ac2420c3a30b80432c1
diff --git a/canvas/canvas_paint_task.rs b/canvas/canvas_paint_task.rs index b316b5bcd..c2921561c 100644 --- a/canvas/canvas_paint_task.rs +++ b/canvas/canvas_paint_task.rs @@ -381,11 +381,13 @@ impl<'a> CanvasPaintTask<'a> { self.draw_with_shadow(&rect, |new_draw_target: &DrawTarget| { ...
1
14
7
b2b7336670701cb2a0859ac3469db73c745b99a7
Ms2ger
2015-08-06T04:02:45
servo: Merge #6994 - Fix unused mutability warnings (from servo:warnings); r=Manishearth They were introduced in 35ba73112395fe97599b8661729b02cedea7609a. Source-Repo: https://github.com/servo/servo Source-Revision: be8798b73a28b1ce8301a7e21f3547a1d06cd59a
diff --git a/layout/generated_content.rs b/layout/generated_content.rs index 8bac6d0b9..a125c497d 100644 --- a/layout/generated_content.rs +++ b/layout/generated_content.rs @@ -530,7 +530,7 @@ pub fn static_representation(list_style_type: list_style_type::T) -> char { /// Pushes the string that represents the value ...
1
2
2
d6871a63a4cec314dde6b67095ab54e7ede89beb
Glenn Watson
2015-08-06T02:06:09
servo: Merge #6988 - No need for paint layer in stacking context to be an arc (from glennw:no-arc) Source-Repo: https://github.com/servo/servo Source-Revision: f570da28c29e2cd762fd7743f11b711c18055aac
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 5865b36a2..17e8c8171 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -227,7 +227,7 @@ pub struct StackingContext { /// The layer for this stacking context, if there is one. #[ignore_heap_size_of = "FIXME(njn): should ...
3
5
6
78d08841150bd029674b97dd76e88286c74ce82e
Glenn Watson
2015-08-05T18:50:36
servo: Merge #6983 - Support transforms for display list optimization. Prevents clipping in #6643 (from glennw:tf2); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 315c4f5ed7be91951b83b9bbec372bc4bf8f3507
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 621068824..5865b36a2 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -17,7 +17,7 @@ #![deny(unsafe_code)] use display_list::optimizer::DisplayListOptimizer; -use paint_context::{PaintContext, ToAzureRect}; +use paint_context:...
4
81
91
5d562e54c42ac0552ba838312dafbd8aa9abc62d
David Zbarsky
2015-08-05T17:40:20
servo: Merge #6974 - Fix createImageData with sizes < 1 pixel (from dzbarsky:tiny-create); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: debd7d87d61e6e6d772181a1076ee29519e479c7
diff --git a/script/dom/canvasrenderingcontext2d.rs b/script/dom/canvasrenderingcontext2d.rs index d70cc85fe..9cfa10a50 100644 --- a/script/dom/canvasrenderingcontext2d.rs +++ b/script/dom/canvasrenderingcontext2d.rs @@ -42,6 +42,7 @@ use num::{Float, ToPrimitive}; use std::borrow::ToOwned; use std::cell::RefCell; u...
1
4
1
21199d9dce0d8ed264a12e8af26e269b95077ad6
Ms2ger
2015-08-05T15:21:10
servo: Merge #6964 - Cleanup DedicatedWorkerGlobalScope::run_worker_scope (from Ms2ger:dwgs-eventloop); r=jdm It was getting overcrowded. Source-Repo: https://github.com/servo/servo Source-Revision: b3d61878dc28418e5427e965f26a06766f47358c
diff --git a/script/dom/dedicatedworkerglobalscope.rs b/script/dom/dedicatedworkerglobalscope.rs index cef9c5f97..7ede27203 100644 --- a/script/dom/dedicatedworkerglobalscope.rs +++ b/script/dom/dedicatedworkerglobalscope.rs @@ -10,7 +10,7 @@ use dom::bindings::codegen::Bindings::ErrorEventBinding::ErrorEventMethods; ...
2
92
90
992de2cc835f8539f706476b1b71b1e29c8961d4
James Graham
2015-08-05T14:01:03
servo: Merge #6416 - Use hosts-replaced URL only when loading resources (from jgraham:hosts_replaced); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 8602d01af2b2081ea1e9d600abdb1ea609a65038
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 86d1df9dc..a732fa797 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -642,10 +642,12 @@ impl<LTF: LayoutTaskFactory, STF: ScriptTaskFactory> Constellation<LTF, STF> { // FIXME(tkuehn): Need to fol...
11
147
109
019549202b38410a19ba6c17c63fda54b8610b6a
Patrick Walton
2015-08-05T12:11:36
servo: Merge #6981 - gfx: Fix Core Text font instantiation for Web fonts on Mac (from pcwalton:github-font-fallback); r=metajack r? @metajack Source-Repo: https://github.com/servo/servo Source-Revision: 11acfbc29fd3412c18b6bf62e51faef5c2435fd3
diff --git a/gfx/platform/macos/font.rs b/gfx/platform/macos/font.rs index b8474aa6d..6ef613572 100644 --- a/gfx/platform/macos/font.rs +++ b/gfx/platform/macos/font.rs @@ -57,9 +57,9 @@ pub struct FontHandle { impl FontHandleMethods for FontHandle { fn new_from_template(_fctx: &FontContextHandle, - ...
2
15
19
b87c3b444dd7caa411936a317b6fac68c875eb19
Patrick Walton
2015-08-05T11:03:43
servo: Merge #6980 - layout: Take borders into account when positioning inline fragments on their baselines (from pcwalton:inline-border-baseline); r=glennw Improves the Rust GitHub page. r? @glennw Source-Repo: https://github.com/servo/servo Source-Revision: cc70e2f91fcfbc04ca9f02f109ab9894c0eccf9c
diff --git a/layout/fragment.rs b/layout/fragment.rs index 1f7ecce5f..c7b29d621 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -1818,15 +1818,23 @@ impl Fragment { .computed_block_size(); InlineMetrics { blo...
1
12
4
b003987e2ee61e66b8d16592e076ce4a5a9b584c
Josh Matthews
2015-08-05T09:44:22
servo: Merge #6959 - Fix warnings (from servo:warnings_); r=jdm Adds on top of #6949. Source-Repo: https://github.com/servo/servo Source-Revision: 0d8825c25c6eed4dc22b10e668b03fc79056702b
diff --git a/gfx/text/shaping/harfbuzz.rs b/gfx/text/shaping/harfbuzz.rs index 1359c304f..f87906325 100644 --- a/gfx/text/shaping/harfbuzz.rs +++ b/gfx/text/shaping/harfbuzz.rs @@ -27,7 +27,6 @@ use harfbuzz::{hb_feature_t}; use harfbuzz::{RUST_hb_font_create}; use harfbuzz::{RUST_hb_font_destroy, RUST_hb_buffer_crea...
3
1
3
9ff74a41b71293d49d203d1b8dd70dd5396758ad
Patrick Walton
2015-08-05T06:57:19
servo: Merge #6976 - layout: Place list item markers correctly in the block direction (from pcwalton:vertical-marker-placement); r=mbrubeck r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 56a9eab2a0974f3e08d1d32afb0b2b2c0038db5f
diff --git a/layout/list_item.rs b/layout/list_item.rs index 63caca9d4..78c88223a 100644 --- a/layout/list_item.rs +++ b/layout/list_item.rs @@ -116,8 +116,9 @@ impl Flow for ListItemFlow { let item_inline_metrics = InlineMetrics::from_font_metrics(&font_metrics, line_height); let marker_inlin...
1
3
2
99395dc0dbf2a1a91587771cbec8f56f180a8644
r0e
2015-08-05T02:21:35
servo: Merge #6944 - Fix for issue #6768. Refactor ReadData and BlobBody (from r0e:testing); r=jdm Fix for issue #6768. Merge common fields of ReadData and BlobBody to avoid passing redundant information to functions. Source-Repo: https://github.com/servo/servo Source-Revision: ac533b146660922d7d4e6f1836f189a63334df...
diff --git a/script/dom/filereader.rs b/script/dom/filereader.rs index dca2620cd..76394a326 100644 --- a/script/dom/filereader.rs +++ b/script/dom/filereader.rs @@ -37,38 +37,17 @@ pub enum FileReaderFunction { pub type TrustedFileReader = Trusted<FileReader>; -pub struct ReadData { - pub bytes: Receiver<Vec<u8...
1
29
49
f1b891aeaa4fb1660f30665b3f482f68b6b0ccc2
Matt Brubeck
2015-08-05T00:37:10
servo: Merge #6979 - Fix crash caused by negative numbers in list counters (from mbrubeck:counter); r=pcwalton Fixes #6818. The test still fails because of #6978. r? @pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: b9f00190e1364fb1b9ab8dc089593910c3e34d41
diff --git a/layout/generated_content.rs b/layout/generated_content.rs index 6e9f5da99..8bac6d0b9 100644 --- a/layout/generated_content.rs +++ b/layout/generated_content.rs @@ -531,37 +531,57 @@ pub fn static_representation(list_style_type: list_style_type::T) -> char { /// Pushes the string that represents the value ...
1
29
9
417eccb05ac9169c85dd3b53c140540d1ffaa121
David Zbarsky
2015-08-04T22:38:57
servo: Merge #6954 - Implement strokeRect with zero-width or zero-height rects (from dzbarsky:stroke_rect); r=glennw Source-Repo: https://github.com/servo/servo Source-Revision: eecd9752093540220eb52308b8fb3ceba0939e3c
diff --git a/canvas/canvas_paint_task.rs b/canvas/canvas_paint_task.rs index 0b5e96ff9..b316b5bcd 100644 --- a/canvas/canvas_paint_task.rs +++ b/canvas/canvas_paint_task.rs @@ -314,6 +314,21 @@ impl<'a> CanvasPaintTask<'a> { new_draw_target.stroke_rect(rect, self.state.stroke_style.to_pattern_ref(), ...
3
17
2
c17a1935f9004eb5795856b66c922fc208eea219
Manish Goregaokar
2015-08-04T20:38:31
servo: Merge #6945 - If let is not an issue for lints (from Manishearth:fixedme); r=jdm r? @Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: b7e592443f56f3ca61e12c9e777c55ac2a3ebcd0
diff --git a/plugins/lints/unrooted_must_root.rs b/plugins/lints/unrooted_must_root.rs index f07ed506f..dc116f311 100644 --- a/plugins/lints/unrooted_must_root.rs +++ b/plugins/lints/unrooted_must_root.rs @@ -202,10 +202,12 @@ impl LintPass for UnrootedPass { // We need not check arms individually sinc...
1
6
4
bc430e05325655a73064e78e63fb119b7e85949e
Patrick Walton
2015-08-04T18:53:26
servo: Merge #6940 - layout: When repairing styles for incremental reflow, only repair styles of nodes that represent the dirty node, *including its pseudo-element* (from pcwalton:inline-pseudo-repair-jumpiness); r=mbrubeck r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 56d3426431d98a6f4369...
diff --git a/layout/construct.rs b/layout/construct.rs index 9ab1dfc66..5060eaa3b 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -105,7 +105,7 @@ pub enum ConstructionItem { /// Inline fragments and associated {ib} splits that have not yet found flows. InlineFragments(InlineFragmentsConstructio...
5
54
13
183af5f8b33398b3bbef03826a92a43b8b8f4664
Patrick Walton
2015-08-04T17:36:09
servo: Merge #6947 - layout: Don't use the block container inline size as the initial computed table inline size (from pcwalton:table-center); r=glennw Makes google.com fully centered. r? @glennw cc @SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 220557008318350b444ba1917a3b07e03d30bec5
diff --git a/layout/table_wrapper.rs b/layout/table_wrapper.rs index ecf9596f7..0fc023e66 100644 --- a/layout/table_wrapper.rs +++ b/layout/table_wrapper.rs @@ -216,6 +216,12 @@ impl TableWrapperFlow { |accumulator, intermediate_column_inline_sizes| { ...
1
17
4
7fcbae8f5573e122b1b81637ac361bcbc05f5cb1
Simon Sapin
2015-08-04T11:50:27
servo: Merge #6950 - Add a comment to explain the struct pattern trick (from servo:struct-pattern); r=glennw https://github.com/servo/servo/issues/6912#issuecomment-127429643 Source-Repo: https://github.com/servo/servo Source-Revision: 0565df859684560b525b0361476d334f79db8474
diff --git a/util/mem.rs b/util/mem.rs index 370840b7a..eb5785a40 100644 --- a/util/mem.rs +++ b/util/mem.rs @@ -103,6 +103,8 @@ impl<T: HeapSizeOf> HeapSizeOf for Option<T> { impl HeapSizeOf for url::Url { fn heap_size_of_children(&self) -> usize { + // Using a struct pattern without `..` rather than `f...
1
4
0
a62340b9da4fe28d61aa723a0b89a4ea2d862935
Patrick Walton
2015-08-04T08:41:40
servo: Merge #6946 - layout: If the container of a block formatting context has margins in the inline direction, subtract those from the inline size of preceding floats (from pcwalton:block-formatting-context-margins); r=mbrubeck Makes the content area on http://reddit.com/r/rust visible. r? @mbrubeck Source-Repo: h...
diff --git a/layout/block.rs b/layout/block.rs index ee3e603e1..d1a333f2b 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -1300,8 +1300,10 @@ impl BlockFlow { let mut inline_size_of_preceding_left_floats = Au(0); let mut inline_size_of_preceding_right_floats = Au(0); if self.formatting_...
1
4
3
e7a19384842cad07a4f1eebb7aeb0259a13beb51
Patrick Walton
2015-08-04T05:37:47
servo: Merge #6938 - construct: When repairing styles for incremental reflow, only repair styles of nodes that represent the dirty node (from pcwalton:inline-repair-jumpiness); r=mbrubeck Fixes jumpiness on many pages; e.g. the WPT results pages. For some reason, this would not reproduce with an automated test. r? @...
diff --git a/layout/construct.rs b/layout/construct.rs index 519046b55..9ab1dfc66 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -1295,6 +1295,11 @@ impl<'a> FlowConstructor<'a> { for fragment in inline_fragments_construction_result.fragments ...
1
5
0
f763626bb2b4440028c68bd382bb3195c5ce88a2
Matt Brubeck
2015-08-04T04:40:35
servo: Merge #6937 - Store Harfbuzz callback functions in a static var (from mbrubeck:hb_funcs); r=glennw r? gw Source-Repo: https://github.com/servo/servo Source-Revision: d77f9415c5c64d18f31a1af45d2a9197373daa38
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index 9ec80d3e0..a776bc2f7 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -8,6 +8,22 @@ authors = ["The Servo Project Developers"] name = "gfx" path = "lib.rs" +[dependencies] +bitflags = "0.3" +euclid = "0.1" +fnv = "1.0" +harfbuzz = "0.1" +lazy_static = "0.1" +lib...
4
35
28
9a5404d8985c97f90ca03c7108b8bbb6cf8eb909
Bogdan Cuza
2015-08-04T01:31:26
servo: Merge #6932 - Implement HeapSizeOf for Url. Fixes #6912 (from boghison:memrs); r=SimonSapin Fixes #6912 Source-Repo: https://github.com/servo/servo Source-Revision: c2497fcd49933f3782d529b891f4c8bb5de198c4
diff --git a/util/mem.rs b/util/mem.rs index 87c61652a..51ec56c0f 100644 --- a/util/mem.rs +++ b/util/mem.rs @@ -16,6 +16,7 @@ use cursor::Cursor; use euclid::{Point2D, Rect, SideOffsets2D, Size2D, Matrix2D, Matrix4}; use geometry::Au; use range::Range; +use url; extern { // Get the size of a heap block. @@ ...
1
42
0
492610d19c05220fa4f3c6bb1fab05e161eebc36
Ms2ger
2015-08-03T23:42:15
servo: Merge #6926 - Implement a WorkerGlobalScopeInit struct to pass arguments to WorkerGlobalScope::new_inherited more easily (from Ms2ger:dwgs-args); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 3c5d24dbf43e22176d382b6f8bd9a88805c1d8b2
diff --git a/script/dom/bindings/global.rs b/script/dom/bindings/global.rs index 4a2879e9f..053059cec 100644 --- a/script/dom/bindings/global.rs +++ b/script/dom/bindings/global.rs @@ -125,7 +125,7 @@ impl<'a> GlobalRef<'a> { pub fn get_worker_id(&self) -> Option<WorkerId> { match *self { Glo...
4
54
62
18f6a3688376c942e56e4e754b47fceb31995120
Ravi Shankar
2015-08-03T22:46:12
servo: Merge #6920 - Removed an invalid FIXME and fixed some doc comments (from Wafflespeanut:NIT); r=jdm There are some bad module-level doc comments in `flow.rs` which has directly affected [Servo's docs](http://doc.servo.org/layout/flow/index.html) and so, this fixes that. Oh, and #6728 is having a hard time gettin...
diff --git a/layout/flow.rs b/layout/flow.rs index d315b9962..6e397f151 100644 --- a/layout/flow.rs +++ b/layout/flow.rs @@ -5,25 +5,25 @@ //! Servo's experimental layout system builds a tree of `Flow` and `Fragment` objects and solves //! layout constraints to obtain positions and display attributes of tree nodes. P...
2
19
21
d09485aad75bb6d7720b814a868994b7ecbdeb34
Ms2ger
2015-08-03T19:17:47
servo: Merge #6917 - Lock and flush stdout in Window#alert (from Ms2ger:lock-alert); r=metajack We use alert() to communicate test results to wptrunner. Unfortunately, sometimes the alert output is interleaved with other output on stdout, causing wptrunner to classify the test result as a timeout. I hope this will avo...
diff --git a/script/dom/window.rs b/script/dom/window.rs index d7a9e9f24..4e90cc710 100644 --- a/script/dom/window.rs +++ b/script/dom/window.rs @@ -72,6 +72,7 @@ use std::cell::{Cell, Ref, RefMut, RefCell}; use std::collections::HashSet; use std::default::Default; use std::ffi::CString; +use std::io::{stdout, Write...
1
5
1
eec5073e4562ab86ac4429a7db416a2dd7db78dc
Glenn Watson
2015-08-03T16:38:21
servo: Merge #6903 - Fix percentage height calculation, absolute containing block height calculations (from glennw:fix-height-again); r=pcwalton It's not possible to correctly determine during the css cascade whether the container height is explicitly specified. Additionally, the spec https://drafts.csswg.org/css2/vis...
diff --git a/layout/block.rs b/layout/block.rs index c7304865e..7bd383b30 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -699,7 +699,7 @@ impl BlockFlow { /// Right now, this only gets the containing block size for absolutely positioned elements. /// Note: We assume this is called in a top-down travers...
9
151
116
3441fe969d6284a08856ef48b9ea4eaafddd4d3d
Kayo Hamid
2015-08-03T15:18:05
servo: Merge #6902 - [FIX] Bug fix #6756 (from khflab:master); r=jdm fixes #6756 waiting for review. Signed-off-by: Kayo Hamid <kayo@bvcupons.com.br> Source-Repo: https://github.com/servo/servo Source-Revision: 2ce811ffb809971cc87adf1f2f21ad2526085964
diff --git a/script/devtools.rs b/script/devtools.rs index 8c40af12c..60d410bbd 100644 --- a/script/devtools.rs +++ b/script/devtools.rs @@ -5,6 +5,7 @@ use devtools_traits::{CachedConsoleMessage, CachedConsoleMessageTypes, PAGE_ERROR, CONSOLE_API}; use devtools_traits::{EvaluateJSReply, NodeInfo, Modification, Timel...
1
2
3
f4ecd3913e94e9ed1729e95609d5428537b7e002
Harrison G
2015-08-02T22:05:14
servo: Merge #6893 - Fixes Issue #6866 (from HarryLovesCode:master); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 1809748dc12ec63e3179b66109c91983f744c235
diff --git a/devtools/actors/worker.rs b/devtools/actors/worker.rs index a1e6fe715..9f32abbed 100644 --- a/devtools/actors/worker.rs +++ b/devtools/actors/worker.rs @@ -9,6 +9,7 @@ use std::net::TcpStream; pub struct WorkerActor { pub name: String, + pub console: String, pub id: WorkerId, } diff --gi...
8
67
40
b28b52de64a7779b3ddd4c1cf03616a127a14b64
Patrick Walton
2015-08-02T21:04:54
servo: Merge #6895 - layout: Tie transitions to the DOM node and finish them instantly when new styles are set (from pcwalton:better-transitions); r=glennw Tying transitions to the DOM node avoids quadratic complexity when updating them. Finishing transitions instantly when styles are updated makes our behavior more ...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index e87a5888e..621068824 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -65,11 +65,12 @@ const MIN_INDENTATION_LENGTH: usize = 4; /// Because the script task's GC does not trace layout, node data cannot be safely stored in layout ...
5
91
50
b48f260e48c3e8267f5a6cb75c4e4fc355cdba88
Sam Gibson
2015-08-02T17:14:02
servo: Merge #6722 - Obey Strict-Transport-Security header (from samfoo:sts-headers); r=jdm Resolves #6703. Done: * [x] When STS headers received, add the host to the HSTS list Todo: * [ ] Persist the in-memory list so that it's reloaded on the next browser boot * [ ] Add tests to `http_loader::load` - it's pretty...
diff --git a/net/http_loader.rs b/net/http_loader.rs index d5e75bc2e..7525170c0 100644 --- a/net/http_loader.rs +++ b/net/http_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::{ControlMsg,...
3
35
12
fcade098bc101f5914a06527833dbedf527be2ce
Patrick Walton
2015-08-02T16:10:39
servo: Merge #6896 - script: Use `Arc::make_unique` instead of `Arc::get_mut` when updating inline styles (from pcwalton:fix-particles-crash); r=SimonSapin Transitions make the reasoning in the comment in the relevant sections not true. r? @SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 0c6e...
diff --git a/script/dom/element.rs b/script/dom/element.rs index 73643b7cf..5ead9ead3 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -660,7 +660,7 @@ impl<'a> ElementHelpers<'a> for &'a Element { .iter() .position(|decl| decl.n...
2
11
12
415b7e5fd96856203332083aac8d4909e8bdf6db
Patrick Walton
2015-08-02T04:01:39
servo: Merge #6894 - style: Switch animation timestamps to be doubles instead of floats (from pcwalton:double-precision-timestamps); r=metajack 32-bit floats are not enough to hold timestamps since the epoch and result in jank. r? @metajack Source-Repo: https://github.com/servo/servo Source-Revision: 92cbb9368471d12...
diff --git a/layout/animation.rs b/layout/animation.rs index 423a4cbcc..b0737538a 100644 --- a/layout/animation.rs +++ b/layout/animation.rs @@ -33,15 +33,16 @@ pub fn start_transitions_if_applicable(new_animations_sender: &Sender<Animation> property_animation.update(new_style, 0.0); // Kick...
4
60
57
eda1c979c751502d79ec33ec5dae68aa25625e32
Simon Sapin
2015-08-01T21:00:06
servo: Merge #6741 - Fix CSSStyleDeclaration::setPropertyPriority and some refactoring (from servo:fix-setpropertypriority); r=pcwalton r? @Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: c6b043582b41434c59a21eed5c9258ae3c0fb437
diff --git a/script/dom/cssstyledeclaration.rs b/script/dom/cssstyledeclaration.rs index 180a356dd..aceeaec9f 100644 --- a/script/dom/cssstyledeclaration.rs +++ b/script/dom/cssstyledeclaration.rs @@ -16,11 +16,12 @@ use dom::window::{Window, WindowHelpers}; use util::str::DOMString; use selectors::parser::PseudoElem...
5
163
116
3d8b3ab964262e0e8469d7ae702a0b8ea85a4640
Patrick Walton
2015-08-01T17:29:01
servo: Merge #6889 - style: Fix misdirected animation properties (from pcwalton:transition-left); r=metajack left redirected to top, and padding redirected to margin. r? @mbrubeck (or whoever) Source-Repo: https://github.com/servo/servo Source-Revision: 1b06031cccfac2d8625dce95f6acc1bff84dde83
diff --git a/style/animation.rs b/style/animation.rs index 3065ec5cd..3421594bb 100644 --- a/style/animation.rs +++ b/style/animation.rs @@ -132,7 +132,7 @@ impl PropertyAnimation { [FontSize; get_font; font_size], [FontWeight; get_font; font_weight], [Height; get_box; height], - ...
1
18
18
0d0992767232d4532b267d82f1fd4b9fab839f78
Ravi Shankar
2015-08-01T16:04:07
servo: Merge #6829 - Persuading devtools to communicate with the workers; r=jdm (from Wafflespeanut:devtools); r=jdm For now, this just gives some purpose to the abandoned receiver and later selects over the two receivers (for #6767). (oh wait, forgot to check the local build - there are still a few errors)... Source...
diff --git a/script/devtools.rs b/script/devtools.rs index b7edc7616..8c40af12c 100644 --- a/script/devtools.rs +++ b/script/devtools.rs @@ -12,6 +12,7 @@ use dom::bindings::codegen::InheritTypes::{NodeCast, ElementCast}; use dom::bindings::codegen::Bindings::DocumentBinding::DocumentMethods; use dom::bindings::codeg...
7
161
56