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
1deb2afaf5f0fb5ac4ebf0c255567128e434fd5f
Patrick Walton
2015-06-13T03:04:05
servo: Merge #6308 - script: Make `PartialEq` on element type IDs generate a lot less code (from pcwalton:debloat-partialeq); r=nox This makes the difference between selector matching scaling on the ARM Cortex-A9 and not, because the auto-derived `PartialEq` implementation blows out the 32KB I-cache. With this change,...
diff --git a/script/dom/eventtarget.rs b/script/dom/eventtarget.rs index 31bfe488f..57ee6e31e 100644 --- a/script/dom/eventtarget.rs +++ b/script/dom/eventtarget.rs @@ -28,6 +28,7 @@ use std::collections::hash_map::Entry::{Occupied, Vacant}; use std::collections::hash_state::DefaultState; use std::default::Default; ...
4
83
8
a65b253907f08c45f2e622ca59307ee3ed851fe4
Eduard Burtescu
2015-06-13T01:51:26
servo: Merge #6302 - Preserve UserAgent header on redirect (from eddyb:preserve-ua-on-redirect); r=nox This unblocks facebook.com's feed, after a few months of it being accidentally broken. Source-Repo: https://github.com/servo/servo Source-Revision: 8063e342359615552b26ea10d42b2c6a827331fb
diff --git a/net/resource_task.rs b/net/resource_task.rs index 22114f349..f888e0172 100644 --- a/net/resource_task.rs +++ b/net/resource_task.rs @@ -259,7 +259,9 @@ impl ResourceManager { } } - self.user_agent.as_ref().map(|ua| load_data.headers.set(UserAgent(ua.clone()))); + self....
1
3
1
6108cde55cbdf0a2588c77e953a419cd8292bb40
Nicholas Nethercote
2015-06-13T00:42:32
servo: Merge #6334 - Measure LocalLayoutContexts in LayoutTask and LayoutWorkers (from nnethercote:report-local-contexts); r=pcwalton Passing a function that measures TLS to WorkQueue is a bit weird, but I can't see how else to measure that data. Source-Repo: https://github.com/servo/servo Source-Revision: f03f584895...
diff --git a/layout/context.rs b/layout/context.rs index 6e0aaa83d..b5ed8b729 100644 --- a/layout/context.rs +++ b/layout/context.rs @@ -29,6 +29,7 @@ use std::sync::mpsc::{channel, Sender}; use style::selector_matching::Stylist; use url::Url; use util::geometry::Au; +use util::mem::HeapSizeOf; use util::opts; s...
5
70
3
78726277f6d0b38f7cc79f9c4726d0dbcd8d0da3
Patrick Walton
2015-06-12T23:14:23
servo: Merge #6347 - layout: Divide DOM nodes and flows into chunks, and perform work stealing over those instead of working on nodes one-by-one (from pcwalton:chunking); r=mbrubeck This reduces the overhead of the work-stealing traversal function significantly. It's especially important on ARM, where memory barriers ...
diff --git a/layout/parallel.rs b/layout/parallel.rs index 6ff9acc19..879c2a1ee 100644 --- a/layout/parallel.rs +++ b/layout/parallel.rs @@ -27,10 +27,13 @@ use std::sync::atomic::{AtomicIsize, Ordering}; use util::opts; use util::workqueue::{WorkQueue, WorkUnit, WorkerProxy}; +const CHUNK_SIZE: usize = 64; + #[al...
1
170
126
1fa4c43b706de4f7b6a6c78fd9699ab1f6928e33
Avi Weinstock
2015-06-12T21:00:37
servo: Merge #6340 - Remove some unnecessary allocations in text input handling (from aweinstock314:reduce-textinput-allocations); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 2168ec3c96ca9e8e1174be22be07d1168061b4b6
diff --git a/script/textinput.rs b/script/textinput.rs index 59d6752da..8d5668e1d 100644 --- a/script/textinput.rs +++ b/script/textinput.rs @@ -134,19 +134,15 @@ impl<T: ClipboardProvider> TextInput<T> { /// Insert a character at the current editing point pub fn insert_char(&mut self, ch: char) { - ...
1
6
10
d2fd8bba904e73d0410c799bec94e5dc1f2a2ba5
Mátyás Mustoha
2015-06-12T16:22:54
servo: Merge #6354 - Remove gfx_traits from the dependencies of [script] (from mmatyas:canvas_remdep); r=Ms2ger It seems @hyowon uploaded her canvas shadow patch faster than me; I've handled the color dependency a bit different, this way `gfx_traits` is not required by the script module. Source-Repo: https://github.c...
diff --git a/canvas/canvas_paint_task.rs b/canvas/canvas_paint_task.rs index df2624d54..d3cc916bc 100644 --- a/canvas/canvas_paint_task.rs +++ b/canvas/canvas_paint_task.rs @@ -268,7 +268,7 @@ impl<'a> CanvasPaintTask<'a> { Canvas2dMsg::SetShadowOffsetX(value) => painter.set_shadow_offset_x...
5
18
17
f94eaaa760eddb90e3c5ad143aad5d449efea42d
Patrick Walton
2015-06-12T13:28:19
servo: Merge #6345 - util: Reduce memory barriers and integer divisions in the work queue (from pcwalton:workqueue-arm-optzns); r=glennw Improves scaling on multicore ARM devices. r? @glennw Source-Repo: https://github.com/servo/servo Source-Revision: 9ea50957fcf502e48acaa074e08872a73df9ac23
diff --git a/util/deque/mod.rs b/util/deque/mod.rs index bee1d97b2..490bcc159 100644 --- a/util/deque/mod.rs +++ b/util/deque/mod.rs @@ -45,8 +45,7 @@ // NB: the "buffer pool" strategy is not done for speed, but rather for // correctness. For more info, see the comment on `swap_buffer` -// FIXME: all atomic ope...
2
50
31
3306e51766b19a2db8c63935eb0006eba4a2b5b7
Anthony Ramine
2015-06-12T11:49:32
servo: Merge #6348 - Update azure to b9bb83c733507f3f57e2c334499f38432056e26c (from nox:azure); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 5b318d53e223707fa2da16c5ad38f04ce7cf52de
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 001b29dd5..1ed78b6b0 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -42,7 +42,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "azure" version = "0.1.0" -source = "git+https://github.com/servo/rust-azure#8ca7e25d5...
1
1
1
83923772e817351f9df89ec8af5dcefeaada0d82
Nicholas Nethercote
2015-06-12T10:08:53
servo: Merge #6346 - Improve unit testing of util::mem (from nnethercote:improve-mem-unit-testing); r=Manishearth r? @Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: b9d53a2950e41ec9291d3d4fe5efa7eeb57a5253
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index e8744a177..001b29dd5 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -1291,6 +1291,7 @@ name = "util_tests" version = "0.0.1" dependencies = [ "geom 0.1.0 (git+https://github.com/servo/rust-geom)", + "libc 0.1.8 (registry+https://github.com/rust-lang/cr...
1
1
0
14b07c8212865b45a21f887c2e0cfca2d2211898
Ms2ger
2015-06-12T08:44:37
servo: Merge #6353 - Revert "WebSocket constructor should not panic" (from servo:revert); r=Ms2ger This reverts commit 877c369e0bc5db4286457be36d015eeb1f0ae2f2. Source-Repo: https://github.com/servo/servo Source-Revision: 85d839fb5c6ff023897828b0873caa8972842969
diff --git a/script/dom/websocket.rs b/script/dom/websocket.rs index 9272346d4..c0c6a6248 100644 --- a/script/dom/websocket.rs +++ b/script/dom/websocket.rs @@ -141,16 +141,7 @@ impl WebSocket { // TODO Client::connect does not conform to RFC 6455 // see https://github.com/cyderize/rust-websocket/is...
1
1
10
d5da7da29e48be11d4588963358c0f985436a33b
Jinwoo Song
2015-06-11T11:58:56
servo: Merge #6338 - WebSocket constructor should not panic (from servo:ws-connect); r=Ms2ger Make an early return when the WebSocket connection fails in the constructor. Also let the WebSockect connection to be closed when the connection could not be established. Fixes #6082. Fixes #6086. Source-Repo: https://githu...
diff --git a/script/dom/websocket.rs b/script/dom/websocket.rs index c0c6a6248..9272346d4 100644 --- a/script/dom/websocket.rs +++ b/script/dom/websocket.rs @@ -141,7 +141,16 @@ impl WebSocket { // TODO Client::connect does not conform to RFC 6455 // see https://github.com/cyderize/rust-websocket/is...
1
10
1
a10a5b9fb2b5fc5bd4e6df70be09f91498555803
Nicholas Nethercote
2015-06-11T06:58:41
servo: Merge #6335 - Ignore CollectReport messages when shutting down the LayoutTask (from nnethercote:fix-layout-task-shutdown-panic); r=metajack Prior to this change, a panic would occur if a CollectReport message was received while the LayoutTask was shutting down. Now it just gets ignored. Source-Repo: https://gi...
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index 4fd06ecbe..2756780df 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -601,9 +601,11 @@ impl LayoutTask { self.exit_now(possibly_locked_rw_data, exit_type); break } + ...
1
4
2
e41dcd90c76430ee411c89a658b990ef66f6cf3e
Matt Brubeck
2015-06-10T23:44:55
servo: Merge #6328 - Fix indices in Line::range doc comment (from mbrubeck:line-comment); r=pcwalton r? @pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: a8b6632a5ade7b1f6fff243abb9223daf260284b
diff --git a/layout/inline.rs b/layout/inline.rs index a4040e6de..c55a035f3 100644 --- a/layout/inline.rs +++ b/layout/inline.rs @@ -90,7 +90,7 @@ pub struct Line { /// /// The ranges that describe these lines would be: /// - /// | [0, 2) | [2, 3) | [3, 4) | [4, 5) | + /// | [0, 2) ...
1
1
1
99a5bb6f12851497b98e5d518d156cf901151cbb
Nicholas Nethercote
2015-06-10T22:53:55
servo: Merge #6309 - Instrument FreeType allocations (from nnethercote:instrument-freetype); r=glennw This will allow reporting of memory usage by FreeType instances, which are measured in the MiBs for LayoutWorker threads. This change also makes FreeType allocations happen with jemalloc instead of the system malloc,...
diff --git a/gfx/font_context.rs b/gfx/font_context.rs index 4201e2ddc..27ba6c493 100644 --- a/gfx/font_context.rs +++ b/gfx/font_context.rs @@ -16,6 +16,7 @@ use platform::font_template::FontTemplateData; use smallvec::SmallVec8; use util::cache::HashCache; use util::geometry::Au; +use util::mem::HeapSizeOf; use...
4
85
13
ff403856a5780be6139a16a1b14af5cca656129c
Glenn Watson
2015-06-10T22:05:20
servo: Merge #6331 - Updates for changes in rust-geom and rust-layers (from glennw:remove-generic-again); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 752e03a502413f21cfb30e55d68110c50e034da6
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index af60a7d77..749754724 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -245,7 +245,7 @@ pub struct StackingContext { pub blend_mode: mix_blend_mode::T, /// A transform to be applied to this stacking context. - pub tr...
5
10
10
2e5456df9c45d310b95fa29bc0551d5fb182c609
Patrick Walton
2015-06-10T21:15:01
servo: Merge #6330 - Revert "Updates for changes in rust-geom and rust-layers" (from servo:revert-6329-remove-generic) Source-Repo: https://github.com/servo/servo Source-Revision: 93a45c91d16c0ae2c6b7e507f66a7267206772ac
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 749754724..af60a7d77 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -245,7 +245,7 @@ pub struct StackingContext { pub blend_mode: mix_blend_mode::T, /// A transform to be applied to this stacking context. - pub tr...
5
10
10
c3485909a9564ccd6bffde526fdfefcda3b093c7
Glenn Watson
2015-06-10T21:14:24
servo: Merge #6329 - Updates for changes in rust-geom and rust-layers (from glennw:remove-generic) Source-Repo: https://github.com/servo/servo Source-Revision: 053296e1319239fbfe2842edb31bbf46eb8f28d7
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index af60a7d77..749754724 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -245,7 +245,7 @@ pub struct StackingContext { pub blend_mode: mix_blend_mode::T, /// A transform to be applied to this stacking context. - pub tr...
5
10
10
4b084763c63abcfa65928e41f093517c431b15aa
Simon Sapin
2015-06-10T15:30:43
servo: Merge #6326 - Pick up memory safety fix in rust-smallvec (from servo:sound-smallvec); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 8c943b30ce4759b038b5ae581159481b8a92e801
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 182cb1294..a50cd0a04 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -421,7 +421,7 @@ dependencies = [ "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "script_traits 0.0.1", "skia 0.0.20130412 (git+https://github.com/...
1
7
7
d1f3b8ec53b44e2db25b7194973a8264542c2df1
Corey Farwell
2015-06-10T14:23:11
servo: Merge #6317 - Remove fnv & smallvec crate reexports from util (from frewsxcv:rm-util-crate-reexports); r=Ms2ger The util component specified fnv and smallvec as dependencies and publicly reexported both of them. Several other components utilized these reexports, presumably because fnv and smallvec used to live ...
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index bc8fd008a..2e307dcf6 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -58,6 +58,7 @@ git = "https://github.com/servo/string-cache" [dependencies] log = "*" +fnv = "1.0" url = "0.2.35" time = "0.1.12" bitflags = "*" @@ -65,6 +66,7 @@ rustc-serialize = "0.3" l...
27
42
28
515d1ce302e8dc0ed5c7e38a6da12f47f430ad7d
Ms2ger
2015-06-10T13:30:09
servo: Merge #6323 - Fix a typo in the DOM documentation (from Ms2ger:typo); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: c86e461555902ad88d25163724798b333d21c0ef
diff --git a/script/dom/mod.rs b/script/dom/mod.rs index 0549cca73..c10818694 100644 --- a/script/dom/mod.rs +++ b/script/dom/mod.rs @@ -165,7 +165,7 @@ //! //! * adding the new IDL file at `components/script/dom/webidls/Foo.webidl`; //! * creating `components/script/dom/foo.rs`; -//! * listing `foo.rs` in component...
1
1
1
25ea3673bd2979271fa1a78e6e2cdde8a443ef16
Mátyás Mustoha
2015-06-10T12:46:13
servo: Merge #6324 - Add ARM build support (from mmatyas:arm_build); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 9df13b906902fa298264816e0c3c88aea64c77df
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index 4d393342f..bc8fd008a 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -76,6 +76,9 @@ git = "https://github.com/servo/rust-fontconfig" [target.x86_64-unknown-linux-gnu.dependencies.fontconfig] git = "https://github.com/servo/rust-fontconfig" +[target.arm-unknown-...
1
6
0
a60ca7d549756d9e948851d56650245dfee15b1f
Ms2ger
2015-06-10T11:40:26
servo: Merge #6320 - Remove null_str_as_empty and null_str_as_empty_ref functions (from Ms2ger:as-empty); r=nox With just one caller between the two functions, there doesn't seem to be much point in having the abstraction. Source-Repo: https://github.com/servo/servo Source-Revision: 6bd798a69f0ae0fe19f6385a8c1bb32041...
diff --git a/script/dom/node.rs b/script/dom/node.rs index 33903042b..97a4212f3 100644 --- a/script/dom/node.rs +++ b/script/dom/node.rs @@ -53,7 +53,7 @@ use parse::html::parse_html_fragment; use script_traits::UntrustedNodeAddress; use util::geometry::Au; use util::namespace; -use util::str::{DOMString, null_str_a...
2
2
18
01f9ac07a5ac8396bdab624f58849fc5d32183e7
Ms2ger
2015-06-10T10:30:38
servo: Merge #6318 - Optimize lookupPrefix (from Ms2ger:optimize-lookup-prefix); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 3ece6bc166c06b1b63f417742cb30dde0e34e63e
diff --git a/script/dom/element.rs b/script/dom/element.rs index e0d0b79f6..b30e70061 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -561,7 +561,7 @@ pub trait ElementHelpers<'a> { fn get_important_inline_style_declaration(self, property: &Atom) -> Option<PropertyDeclaration>; fn serialize(...
2
12
7
b28ea84b082c93a8643936fd22f4efcbdb401b8f
Corey Farwell
2015-06-10T09:11:13
servo: Merge #6316 - Utilize `if let` instead of `match` in a few places (from frewsxcv:if-let); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 6e0d0072b83bade910a6c2a0dee06d94f6f9fb17
diff --git a/gfx/font.rs b/gfx/font.rs index ec0fd7ac9..a8f714062 100644 --- a/gfx/font.rs +++ b/gfx/font.rs @@ -140,9 +140,8 @@ impl Font { text: text.to_owned(), options: options.clone(), }; - match self.shape_cache.find(&lookup_key) { - None => {} - Som...
2
13
21
6c6667f2f44a228d618592117790cb233f9691a9
Glenn Watson
2015-06-09T22:32:54
servo: Merge #6280 - Partial implementation of transform animations spec (from glennw:transform-transitions); r=nox Also tidy up some of the ComputedMatrix code. Source-Repo: https://github.com/servo/servo Source-Revision: 8236221acf0f23f2217bf8b2346411396bd04f3c
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index f2cf382a2..5491e9d0b 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -1163,16 +1163,13 @@ impl FragmentDisplayListBuilding for Fragment { let matrix = match operation { ...
5
212
71
d859dacd0568f808b74e3ae50f2466e5362f2211
Nicholas Nethercote
2015-06-09T21:52:45
servo: Merge #6289 - Make LOCAL_CONTEXT_KEY safe and non-leaky (from nnethercote:unleak-LOCAL_CONTEXT_KEY); r=pcwalton `LOCAL_CONTEXT_KEY` is currently a `Cell<*mut LocalLayoutContext>`. The use of the raw pointer means that the `LocalLayoutContext` is not dropped when the thread dies; this leaks FreeType instances an...
diff --git a/layout/construct.rs b/layout/construct.rs index cbd77fbc2..d3d210072 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -423,7 +423,7 @@ impl<'a> FlowConstructor<'a> { // for runs might collapse so much whitespace away that only hypothetical fragments // remain. In that case th...
7
38
48
c6bfd8cd9a7a45225e0081222e7d6cbf6942ae37
Manish Goregaokar
2015-06-09T20:31:42
servo: Merge #6314 - Audit and reduce usage of unstable features (from Manishearth:feature_audit); r=mbrubeck Will post audit report in a bit Source-Repo: https://github.com/servo/servo Source-Revision: 88c1cdc9fca6568d1075ea9577ac996c5f73b98f
diff --git a/devtools/actors/console.rs b/devtools/actors/console.rs index 5b83f6bc5..ff151be3b 100644 --- a/devtools/actors/console.rs +++ b/devtools/actors/console.rs @@ -15,7 +15,7 @@ use devtools_traits::EvaluateJSReply::{StringValue, BooleanValue, ActorValue}; use devtools_traits::{CachedConsoleMessageTypes, Devt...
20
15
26
f883aa91df6b1884513f34d7843e2c98375fce26
Corey Farwell
2015-06-09T04:29:47
servo: Merge #6310 - Remove unused file: components/util/fnv.rs (from frewsxcv:rm-unused-file); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 1c636dd2d0c254e694db0353d4da6aba132763d4
diff --git a/util/fnv.rs b/util/fnv.rs deleted file mode 100644 index 7d700db6a..000000000 --- a/util/fnv.rs +++ /dev/null @@ -1,34 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http...
1
0
34
b78ddfe39a610fe98d2cb659af0eda9f3ddae96e
Anthony Ramine
2015-06-08T17:44:04
servo: Merge #6305 - Update gleam to 98f889861aa1c8dee088ac751ab03ca639715bbe (from nox:update-gleam); r=larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: 41095c01a771c44f57da7f63b533741bf037918a
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 91e7615df..f80997c09 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -463,7 +463,7 @@ dependencies = [ [[package]] name = "gleam" version = "0.0.1" -source = "git+https://github.com/servo/gleam#f2edabf2ef0474bb270b107e5e68c2727c4a422d" +source = "git+htt...
1
1
1
78d3c549e8a135cb5aeef07bb9b9801711a55b5c
Hyowon Kim
2015-06-08T14:49:13
servo: Merge #6290 - Replace fill_color & stroke_color with fill_style & stroke_style in CanvasContextState (from hyowon:fill_or_stroke_style); r=nox The fillStyle and strokeStyle attributes can be either strings(color), CanvasGradients, or CanvasPatterns. The current implementation only considers strings(color). r? @...
diff --git a/script/dom/canvasgradient.rs b/script/dom/canvasgradient.rs index b0a7ea924..eae2a08da 100644 --- a/script/dom/canvasgradient.rs +++ b/script/dom/canvasgradient.rs @@ -22,6 +22,7 @@ pub struct CanvasGradient { } #[jstraceable] +#[derive(Clone)] pub enum CanvasGradientStyle { Linear(LinearGradient...
2
53
19
7b8152d7aa1b47ea48417bb962e6751bdccaf836
Jack Moffitt
2015-06-07T18:15:20
servo: Merge #6295 - Clean up dependencies (from metajack:cargo-cleanup); r=frewsxcv Overlaps a bunch with #6288. Putting this here so @frewsxcv can take a look and we can figure out how to merge our work together. Source-Repo: https://github.com/servo/servo Source-Revision: 96311aa9b71abb31fd8e4283de9e1b58813108a3
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index 7c244dd33..fe26cb0b1 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -52,17 +52,11 @@ git = "https://github.com/servo/rust-layers" [dependencies.png] git = "https://github.com/servo/rust-png" -[dependencies.core_graphics] -git = ...
4
123
138
ea50e0c8ff57e14e009843c9c2562bbee23ff540
Eduard Burtescu
2015-06-06T20:49:56
servo: Merge #6301 - Use the correct log crate and setup env_logger in main (from eddyb:fix-logging-2); r=larsbergstrom Fixes #6103. Source-Repo: https://github.com/servo/servo Source-Revision: 1587d8a301983b881b038c7e443ba6d1deb1f72f
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index fd0072cb2..1d614316a 100644 --- a/canvas/Cargo.toml +++ b/canvas/Cargo.toml @@ -33,5 +33,6 @@ git = "https://github.com/ecoal95/rust-offscreen-rendering-context" features = ["texture_surface"] [dependencies] +log = "*" cssparser = "0.3.1" num = "0.1.24" dif...
29
44
15
68f2f5fa7d6a11c5f957399f16aa9413588fd6e4
Ms2ger
2015-06-06T12:45:43
servo: Merge #6291 - Use if let in HTMLTableElement::SetCaption (from Ms2ger:caption); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 493f96b9ab73d41286407a78930f481a6f1b94e9
diff --git a/script/dom/htmltableelement.rs b/script/dom/htmltableelement.rs index a32c3e7e4..0f254f07a 100644 --- a/script/dom/htmltableelement.rs +++ b/script/dom/htmltableelement.rs @@ -8,7 +8,7 @@ use dom::bindings::codegen::Bindings::HTMLTableElementBinding; use dom::bindings::codegen::Bindings::NodeBinding::Node...
1
6
13
1ffb11d16fb2a6c0d3af3fd1b42490caf2296afa
Wafflespeanut
2015-06-05T16:46:48
servo: Merge #6292 - window.performance.now values are way too big #5690; r=jdm (from Wafflespeanut:timestamp); r=jdm Changed the operator and updated the wpt-test for `hr-time`. Source-Repo: https://github.com/servo/servo Source-Revision: 458a5324618b8e58565d686fdea3363a31e11973
diff --git a/script/dom/performance.rs b/script/dom/performance.rs index d9dd8472d..dcb5dd290 100644 --- a/script/dom/performance.rs +++ b/script/dom/performance.rs @@ -51,7 +51,7 @@ impl<'a> PerformanceMethods for JSRef<'a, Performance> { // https://dvcs.w3.org/hg/webperf/raw-file/tip/specs/HighResolutionTime/Ove...
1
1
1
020055e365c27c9640aeb40476f4ad9c64f874cf
Mukilan Thiyagarajan
2015-06-05T14:59:37
servo: Merge #6294 - Simplify handle_load_start_msg function (from mukilan:simplify); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 0a93ed26e85319fe217a706be52cdb9e4060120f
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index cf361b9a0..1ff8b3042 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -689,19 +689,11 @@ impl<LTF: LayoutTaskFactory, STF: ScriptTaskFactory> Constellation<LTF, STF> { } fn handle_load_start_msg(&mu...
1
7
15
405599daf93475b429369961eff556f557801449
Corey Farwell
2015-06-04T21:34:40
servo: Merge #6286 - Bump rust-url version: 0.2.16 → 0.2.35 (from frewsxcv:bump-url); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: ad5846f2e14ac15aca9f561975ae9476d0f13244
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index 944686bf5..be8d91059 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -66,6 +66,6 @@ git = "https://github.com/servo/rust-x11-clipboard" [dependencies] num = "0.1.24" -url = "0.2.16" +url = "0.2.35" time = "0.1.17" libc = "*" di...
12
12
12
70d8331bcf2741768de91eac8ad8175d3c7d9e0b
Matt Brubeck
2015-06-04T20:53:11
servo: Merge #6285 - Better command-line error handling (from mbrubeck:nofile); r=metajack * Don't hang silently when passed a non-existant file. * Fix uncaught exception in `mach run` when Servo fails. Source-Repo: https://github.com/servo/servo Source-Revision: 9b5a01e0455dde921b57d8e802e4554418477d8f
diff --git a/util/lib.rs b/util/lib.rs index 61c6de247..45085733f 100644 --- a/util/lib.rs +++ b/util/lib.rs @@ -8,7 +8,7 @@ #![feature(core)] #![feature(exit_status)] #![feature(optin_builtin_traits)] -#![cfg_attr(not(target_os = "android"), feature(path_ext))] +#![feature(path_ext)] #![feature(plugin)] #![featur...
2
11
3
660be51771f2e599aeab9c6a2b6c10468e93c725
Glenn Watson
2015-06-04T08:53:14
servo: Merge #6251 - Only count outline width in overflow calculation if outline style is active (from glennw:fix-overflow); r=nox This fixes layers being created with a 3x3 overflow that's not needed. This exposes https://github.com/servo/servo/issues/6250, so update the affected reftest to use ahem font until it is...
diff --git a/style/properties.mako.rs b/style/properties.mako.rs index fd2267a0a..ca4af9f18 100644 --- a/style/properties.mako.rs +++ b/style/properties.mako.rs @@ -294,13 +294,38 @@ pub mod longhands { </%self:longhand> <%self:longhand name="outline-width"> - pub use super::border_top_width::get_ini...
2
46
11
a5a7375bda6dc7233bc25784d59ee92efc049185
Matt Brubeck
2015-06-03T22:25:25
servo: Merge #6277 - Update expat-sys (from mbrubeck:expat); r=metajack For servo/libexpat#5 Source-Repo: https://github.com/servo/servo Source-Revision: cc8ad768b98059eea925985bd64147108a3a5a0f
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index b5c252c1f..7b470df00 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -299,7 +299,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "expat-sys" version = "2.1.0" -source = "git+https://github.com/servo/libexpat#a6ccf...
1
1
1
04de0324688a3ef7c3b9841795ec65163931138a
Philipp Hartwig
2015-06-03T09:14:18
servo: Merge #6231 - Restrict output of getElementsByName to HTML elements (from aopicier:get_elements_by_name); r=Ms2ger Fixes #1745 Should I adjust the expected result of the corresponding wpt test cases? html/dom/documents/dom-tree-accessors/document.getElementsByName/document.getElementsByName-namespace.html html...
diff --git a/script/dom/document.rs b/script/dom/document.rs index ad7af5562..18b50faff 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -1540,6 +1540,9 @@ impl<'a> DocumentMethods for JSRef<'a, Document> { Some(element) => element, None => return false, ...
1
3
0
61ff630b9b87040c287fac9a689a30617f5b7982
Mike Blumenkrantz
2015-06-03T05:27:41
servo: Merge #6219 - Favicon support: way more work than anyone expected or considered (from zmike:favicons_and_stringlOWWW-MY-HEAD); r=pcwalton Getting these down to the embedding API level required that I redo the bindings generator again, so this is more commits than anticipated. @mbrubeck @Manishearth @pcwalton b...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index e6484bae8..7a1914bbb 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -454,6 +454,14 @@ impl<Window: WindowMethods> IOCompositor<Window> { self.composite_if_necessary(CompositingReason::Headless); ...
8
78
1
54017ce00ad1d259d03517c9a55748db27f9a4f2
Manish Goregaokar
2015-06-03T04:48:03
servo: Merge #6188 - Add plugin for autoderiving HeapSize (from Manishearth:sizeof); r=nnethercote Fixes #5914 r? @nnethercote for the gfx changes r? @kmcallister or @jdm for the plugin Source-Repo: https://github.com/servo/servo Source-Revision: 2ca606aaba432741ce4e8274835f26db3a3581fc
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 1aef67246..a259b4f4f 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -24,10 +24,10 @@ use text::glyph::CharIndex; use text::TextRun; use azure::azure::AzFloat; -use azure::azure_hl::{Color}; +use azure::azure_hl::Color; us...
10
166
127
b88c87e0682d54be58ca5af9d2b4499a8a4d18f0
Mike Blumenkrantz
2015-06-03T04:07:22
servo: Merge #6269 - update glutin (from zmike:glutinup); r=metajack r+? @larsbergstrom @pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 94b4d12cc3ca8e66f4f4c9a29094a939683dda24
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index e698c8811..b32b9654a 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -450,7 +450,7 @@ dependencies = [ [[package]] name = "glutin" version = "0.0.26" -source = "git+https://github.com/servo/glutin?branch=servo#e888dc79471f062ae0b5fae0ba9e0f01ac96048e" +s...
1
1
1
c4160640b9788a181c90846b731c7be4454d3875
James Graham
2015-06-03T02:11:44
servo: Merge #6161 - Changes to improve the stability when running multiple tests with servodriver (from jgraham:webdriver_stability); r=glennw This fixes various race conditions that affect test execution when using the servodriver product. It doesn't yet do enough to make servodriver a viable alternative to the norm...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 923324d1f..e6484bae8 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -1281,6 +1281,9 @@ impl<Window: WindowMethods> IOCompositor<Window> { // Constellation has replied at some point in the past ...
4
42
12
2aea73d46380cbacb581b2edd76c3db8cb2dd4bb
Glenn Watson
2015-06-03T00:56:17
servo: Merge #6214 - First step towards 3d transforms (from glennw:parse-transforms); r=pcwalton * Add parser support for 3d transforms. * Change ComputedMatrix to a representation that suits interpolation. * Switch stacking contexts to use 4x4 matrices. The transforms themselves are still converted to 2d and hand...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index b3ebd81d2..1aef67246 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -27,7 +27,7 @@ use azure::azure::AzFloat; use azure::azure_hl::{Color}; use collections::linked_list::{self, LinkedList}; -use geom::{Point2D, Rect, SideOff...
6
278
184
4569b3238a0bb0ed13f46998c62493fa30220d9d
Hyowon Kim
2015-06-03T00:15:09
servo: Merge #6253 - Serialize colors for fill and stroke styles in canvas (issue #4761) (from hyowon:serialize_colour); r=nox Fixes #4761 cc @yichoi r? @jdm @pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 4b1e955069509aa224c62119b78f731f102221ec
diff --git a/script/dom/canvasrenderingcontext2d.rs b/script/dom/canvasrenderingcontext2d.rs index 0fa401db3..9898f1d50 100644 --- a/script/dom/canvasrenderingcontext2d.rs +++ b/script/dom/canvasrenderingcontext2d.rs @@ -22,7 +22,7 @@ use dom::imagedata::{ImageData, ImageDataHelpers}; use dom::node::{window_from_node,...
1
21
9
a8fd6b98669b58f41fb34e8777dc0c9612544bda
Manish Goregaokar
2015-06-02T17:53:37
servo: Merge #6254 - Move to latest hyper everywhere, more package updates (from servo:rustup_20150601); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 20f63459ef198bf96679cbb72355917e7a774265
diff --git a/devtools/Cargo.toml b/devtools/Cargo.toml index c42e37c99..08e650631 100644 --- a/devtools/Cargo.toml +++ b/devtools/Cargo.toml @@ -20,4 +20,4 @@ path = "../util" time = "*" rustc-serialize = "0.3" url = "*" -hyper = "0.4" +hyper = "0.5" diff --git a/devtools_traits/Cargo.toml b/devtools_traits/Cargo.to...
11
69
89
c7d621d3412f5dc0afe97d606d4f99715c2a4b37
Simon Sapin
2015-06-02T13:57:04
servo: Merge #6258 - Drop support for `box-sizing: padding-box` (from SimonSapin:drop-box-sizing-padding-box); r=jdm This reverts commit 945adab / PR #6033. The CSS Working Group resolved to drop this value from the spec: http://log.csswg.org/irc.w3.org/css/2015-05-20/#e555680 The group was unable to come up with e...
diff --git a/layout/block.rs b/layout/block.rs index dccee7cfe..a064e0312 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -347,10 +347,8 @@ impl CandidateBSizeIterator { }; // If the style includes `box-sizing: border-box`, subtract the border and padding. - // If the style includes `bo...
4
2
13
d16f1d514fdf3f4870df69289a21b74cc14de925
Corey Farwell
2015-06-02T13:17:03
servo: Merge #6230 - Remove `get_` prefix on getters (from frewsxcv:getters-get); r=nox Part of #6224 I certainly didn't remove all of them; I avoided `unsafe` areas and also `components/script` Source-Repo: https://github.com/servo/servo Source-Revision: f6fe1953343a417b62fb310a380af7c6973849b0
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index f039d7bee..923324d1f 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -885,7 +885,7 @@ impl<Window: WindowMethods> IOCompositor<Window> { let url = Url::parse(&url_string).unwrap(); self.window.set_page_u...
21
62
70
07473f22616f8ec54e94028e48ac8e9462616b57
James Graham
2015-06-02T10:26:47
servo: Merge #6248 - Allow Window implementations to indicate that they don't support a clipboard (from jgraham:window_supports_clipboard); r=gw This is important for the SERVO_HEADLESS configuration, because creating a clipboard on linux creates an X context which then causes reftest instability. Source-Repo: https:...
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 8c4b2557c..099a20313 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -122,7 +122,7 @@ pub struct Constellation<LTF, STF> { pub window_size: WindowSizeData, /// Means of accessing the clipboard - ...
3
30
11
f2ec931ae09151fe48d15d9694d79ebb494c4272
Jacob Parker
2015-06-02T01:13:30
servo: Merge #6193 - fixes #5232, more console log levels sent to devtools (from j3parker:fix-5232); r=nox fixes #5232 The correct styling shows up in the Firefox devtools (e.g. a caution symbol beside warning messages.) I couldn't quickly find the corresponding Firefox code that handles log-levels so the values I'm...
diff --git a/devtools/lib.rs b/devtools/lib.rs index 71fa0b0a6..57f075e93 100644 --- a/devtools/lib.rs +++ b/devtools/lib.rs @@ -39,7 +39,7 @@ use actors::timeline::TimelineActor; use actors::worker::WorkerActor; use protocol::JsonPacketStream; -use devtools_traits::{ConsoleMessage, DevtoolsControlMsg, NetworkEvent...
3
54
40
1c2ac4f418ce46b96d21939bf54cc77cdd481378
James Graham
2015-06-01T22:30:37
servo: Merge #6009 - Add support for switching frames with the webdriver API (from jgraham:webdriver_frames); r=jdm This moves webdriver_traits into msg to avoid a circular dependency. Source-Repo: https://github.com/servo/servo Source-Revision: d08995e1a94fa093b7fc1e5d918d9dca79f260d6
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index 54be36997..944686bf5 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -37,9 +37,6 @@ path = "../style" [dependencies.util] path = "../util" -[dependencies.webdriver_traits] -path = "../webdriver_traits" - [dependencies.devtools_t...
18
271
98
9cd6ca4a7d9286b1b688d10da16f59e9de86ea6d
Matt Brubeck
2015-06-01T20:53:02
servo: Merge #6245 - Change not(ndebug) to debug_assertions (from mbrubeck:ndebug); r=SimonSapin The name of this directive changed in rust-lang/rust#22980. Source-Repo: https://github.com/servo/servo Source-Revision: c724444ccb85551b5a0a581d673875ec9bce3d1f
diff --git a/layout/layout_debug.rs b/layout/layout_debug.rs index e9e5c585e..26e62780f 100644 --- a/layout/layout_debug.rs +++ b/layout/layout_debug.rs @@ -26,7 +26,7 @@ pub struct Scope; #[macro_export] macro_rules! layout_debug_scope( ($($arg:tt)*) => ( - if cfg!(not(ndebug)) { + if cfg!(debug_a...
4
14
14
a81e3bae0d9c4536f2859f3207a504972d25244a
Manish Goregaokar
2015-06-01T16:45:42
servo: Merge #6243 - Upgrade to rustc 1.2.0-dev (474c6e0ae 2015-05-30) (from servo:rustup_20150601); r=nox cc @nox r? @Ms2ger @kmcallister @larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: 83a0b7822181b26862f26fd0cd1da02da7ea6210
diff --git a/plugins/jstraceable.rs b/plugins/jstraceable.rs index d0b55d651..3ace7dbbf 100644 --- a/plugins/jstraceable.rs +++ b/plugins/jstraceable.rs @@ -34,7 +34,7 @@ pub fn expand_dom_struct(cx: &mut ExtCtxt, sp: Span, _: &MetaItem, anno: Annotat /// /// The expansion basically calls `trace()` on all of the fiel...
5
120
82
98b2fe000492532ba02d6b7b296d431a88d8c417
Jack Moffitt
2015-06-01T16:04:23
servo: Merge #6220 - Switch task_info to use modern Cargo tools (from metajack:task-info-build-cleanup); r=nox This is the first bit of build cleanup on my quest to make Cargo faster. Source-Repo: https://github.com/servo/servo Source-Revision: e6c4ca4960cc9f6ac9bd17c35a10b78350b70c73
diff --git a/profile/Cargo.toml b/profile/Cargo.toml index dfb3a187e..05900ad7d 100644 --- a/profile/Cargo.toml +++ b/profile/Cargo.toml @@ -10,9 +10,6 @@ path = "lib.rs" [dependencies.profile_traits] path = "../profile_traits" -[dependencies.task_info] -path = "../../support/rust-task_info" - [dependencies.util] ...
2
9
3
878f65b924b1aa6e7393ea24bd07f0fd6e906879
Hyowon Kim
2015-06-01T12:36:42
servo: Merge #6239 - Correct the calculation of rects for drawimage (from hyowon:drawimage_rects); r=jdm https://html.spec.whatwg.org/multipage/#dom-context-2d-drawimage The source and destination rectangles have four points (x, y), (x+w, y), (x+w, y+h), (x, y+h), which doesn't mean rect(x, y, w, h). cc @yichoi Sourc...
diff --git a/script/dom/canvasrenderingcontext2d.rs b/script/dom/canvasrenderingcontext2d.rs index 7ddce7791..74389abaa 100644 --- a/script/dom/canvasrenderingcontext2d.rs +++ b/script/dom/canvasrenderingcontext2d.rs @@ -140,8 +140,8 @@ impl CanvasRenderingContext2D { // The source rectangle is the rectangle...
1
4
4
98feaaaba7da5a4995179f7ec24c9ea8a61a260b
Tony Baker
2015-05-31T21:04:22
servo: Merge #6218 - Update dependencies for js, fontconfig-sys and mozjs_sys (from asbaker:update-dependencies-for-6088); r=SimonSapin Fixes servo/servo#6088 Source-Repo: https://github.com/servo/servo Source-Revision: 591614347f9ca5568974861e82c0c918e51e2974
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index be5dd60b2..d60e4ded4 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -322,7 +322,7 @@ dependencies = [ [[package]] name = "fontconfig-sys" version = "2.11.1" -source = "git+https://github.com/servo/libfontconfig#ce4a38633dc649b95c9b4935c0cce53e76d8b46a" ...
1
3
3
53a3737184e6eb06a9eea8db51460c06d82d0106
Peter
2015-05-29T17:03:28
servo: Merge #5972 - Makes Node::remove recursively remove all descendants of removed node from the doc (from pgonda:remove-children-from-doc); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: bf4fc6f388676cdc31cebc742a52e9d8896575f5
diff --git a/script/dom/node.rs b/script/dom/node.rs index a2a9e159f..ddea136c9 100644 --- a/script/dom/node.rs +++ b/script/dom/node.rs @@ -309,6 +309,7 @@ impl<'a> PrivateNodeHelpers for JSRef<'a, Node> { assert!(self.parent_node.get().is_none()); for node in self.traverse_preorder() { ...
1
3
7
f7cc98945b1155745859e990ddbca5b9427c69c8
Nicholas Nethercote
2015-05-29T03:45:34
servo: Merge #6199 - Measure paint task buffer maps in the memory profiler (from nnethercote:instrument-paint-task-buffer-map); r=pcwalton Example output from the memory profiler: ``` | 1.04 MiB -- url(http://en.wikipedia.org/wiki/Main_Page) | 0.26 MiB -- display-list | 0.78 MiB -- paint-task ...
diff --git a/compositing/pipeline.rs b/compositing/pipeline.rs index 4adf2ae5e..c9cfa6ee3 100644 --- a/compositing/pipeline.rs +++ b/compositing/pipeline.rs @@ -136,12 +136,15 @@ impl Pipeline { }; PaintTask::create(id, + load_data.url.clone(), + pai...
4
52
2
8b031446c5aad0b3b741c7ce393124ee63595954
Mátyás Mustoha
2015-05-28T19:59:36
servo: Merge #6065 - Enable antialiasing for the canvas (from mmatyas:canvas_antialias); r=jdm This patch turns on antialiasing for the canvas, and updates the painting code to use the updated Azure DrawOptions defined in servo/rust-azure#158. Source-Repo: https://github.com/servo/servo Source-Revision: c97c0a9f94208...
diff --git a/canvas/canvas_paint_task.rs b/canvas/canvas_paint_task.rs index 2804ecd07..4b478f029 100644 --- a/canvas/canvas_paint_task.rs +++ b/canvas/canvas_paint_task.rs @@ -5,7 +5,7 @@ use azure::azure::AzFloat; use azure::azure_hl::{DrawTarget, SurfaceFormat, BackendType, StrokeOptions, DrawOptions, Pattern}; u...
4
30
21
7dc4e51f9b17568b7c58b29c1dc830309a1ac33f
Nicholas Nethercote
2015-05-28T16:11:27
servo: Merge #6200 - Recursively sort memory report sub-trees (from nnethercote:sort-memory-sub-trees); r=pcwalton This puts the larger sub-trees first. E.g. this: ``` | 1.04 MiB -- url(http://en.wikipedia.org/wiki/Main_Page) | 0.26 MiB -- display-list | 0.78 MiB -- paint-task | 0.7...
diff --git a/profile/mem.rs b/profile/mem.rs index 26aff02bb..79437c2ba 100644 --- a/profile/mem.rs +++ b/profile/mem.rs @@ -195,9 +195,9 @@ impl ReportsTree { t.count += 1; } - // Fill in sizes for interior nodes. Should only be done once all the reports have been - // inserted. - fn compute_i...
1
12
14
51c39932636aaa97637af589ddaeb972218a0767
Nicholas Nethercote
2015-05-28T14:04:08
servo: Merge #6202 - Freetype fixes (from nnethercote:freetype-fixes); r=jack Because #6198 wasn't quite right. Source-Repo: https://github.com/servo/servo Source-Revision: dddd222d2967bcf29dbb29856ddd7265c83e4d08
diff --git a/gfx/platform/freetype/font_context.rs b/gfx/platform/freetype/font_context.rs index 313e02f02..c60c6bf5e 100644 --- a/gfx/platform/freetype/font_context.rs +++ b/gfx/platform/freetype/font_context.rs @@ -13,9 +13,7 @@ use freetype::freetype::struct_FT_MemoryRec_; use std::ptr; use std::rc::Rc; -use lib...
2
21
21
0be2c06a1ae7b569041739fa6eceb60eac850248
Anthony Ramine
2015-05-28T11:24:00
servo: Merge #6206 - Make throw_not_in_union() throw a TypeError (fixes #6194) (from nox:typeerror-for-unions); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: df74ed136cd7de07fd1563129b9828f5425a8dbf
diff --git a/script/dom/bindings/error.rs b/script/dom/bindings/error.rs index 3ea2652ee..7d1e7ecbd 100644 --- a/script/dom/bindings/error.rs +++ b/script/dom/bindings/error.rs @@ -11,11 +11,10 @@ use dom::domexception::{DOMException, DOMErrorName}; use util::str::DOMString; -use js::jsapi::{JSContext, JSBool, JSO...
1
4
7
457a506badccb43f543488da60736a42493b2865
Jinwoo Song
2015-05-28T02:06:12
servo: Merge #6198 - Use FT_Done_Library instead of FT_Done_Freetype (from Jinwoo-Song:freetype); r=metajack It is recommended to use FT_Done_Library with FT_New_Library from freetype document. Fixes #6191. r? @jdm @nnethercote cc @yichoi Source-Repo: https://github.com/servo/servo Source-Revision: af81db54790efbeb...
diff --git a/gfx/platform/freetype/font_context.rs b/gfx/platform/freetype/font_context.rs index 1c58233f0..313e02f02 100644 --- a/gfx/platform/freetype/font_context.rs +++ b/gfx/platform/freetype/font_context.rs @@ -4,7 +4,7 @@ use freetype::freetype::FTErrorMethods; use freetype::freetype::FT_Add_Default_Modules;...
2
3
3
a9619b09bdaa87cc3793932a6971abbfc3c1bdd9
Matt Brubeck
2015-05-27T19:57:41
servo: Merge #6196 - Update azure and its dependencies (from mbrubeck:metadata); r=SimonSapin #6088. r? @SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: b1a773a15bd2e022aa45c3672e51467e994badfe
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 37b402965..2dd7e3791 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -41,13 +41,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "azure" version = "0.1.0" -source = "git+https://github.com/servo/rust-azure#91e18a3...
1
5
4
e496065b5384e29234b4721acd890c0226da958a
Mike Blumenkrantz
2015-05-27T19:17:32
servo: Merge #6175 - Embedding: revenge of cargo (from zmike:embedding-REVENGE_OF_CARGO); r=larsbergstrom Adds a bunch more embedding interfaces/callbacks/functionality @larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: 94ebfe81e454ca6dd68210b4475b4091e836dd1a
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 346666ac3..f039d7bee 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -384,7 +384,11 @@ impl<Window: WindowMethods> IOCompositor<Window> { self.scroll_fragment_to_point(pipeline_id, layer_id, point); ...
11
273
27
a6c0d78256aef33a74c5e90051f79e1d53e08642
Anthony Ramine
2015-05-27T10:21:05
servo: Merge #6192 - Cleanup URLSearchParams (from nox:cleanup-urlsearchparams); r=Manishearth It now uses rust-url for its serializer. Source-Repo: https://github.com/servo/servo Source-Revision: d87af8ac52b16a3763420fb7ad8fb45af785a23b
diff --git a/script/Cargo.toml b/script/Cargo.toml index 54f83eb9c..1150c6386 100644 --- a/script/Cargo.toml +++ b/script/Cargo.toml @@ -69,9 +69,12 @@ git = "https://github.com/servo/string-cache" [dependencies.string_cache_plugin] git = "https://github.com/servo/string-cache" +[dependencies.url] +version = "0.2.3...
4
84
102
21d42f5c7bc2800b3cb8d63bad66de187244dc87
Tamir Duberstein
2015-05-26T21:29:42
servo: Merge #6187 - Avoid extra O(n) scan in `validate_and_extract` (from tamird:cleanup-validate-and-extract); r=mbrubeck Also `debug_assert!`s that `splitn` was called with the correct `count` argument. Adaptation of #5778. Source-Repo: https://github.com/servo/servo Source-Revision: df2f8d0636922a7e89895fa61fdba...
diff --git a/script/dom/bindings/utils.rs b/script/dom/bindings/utils.rs index 559334841..612cba46f 100644 --- a/script/dom/bindings/utils.rs +++ b/script/dom/bindings/utils.rs @@ -637,19 +637,29 @@ pub fn validate_and_extract(namespace: Option<DOMString>, qualified_name: &str) // Step 2. try!(validate_qualif...
1
21
11
8e877539c74c51f76f024fbb615f1a0a6fc30c29
Simon Sapin
2015-05-26T20:16:40
servo: Merge #6186 - Use harfbuzz bindings from crates.io (from SimonSapin:harfbuzz-crates.io); r=Manishearth https://github.com/servo/rust-harfbuzz/issues/39 https://www.mail-archive.com/dev-servo@lists.mozilla.org/msg01289.html r? @Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 54afa01dd6...
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index d912508a5..f88e4e85a 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -47,9 +47,6 @@ git = "https://github.com/servo/rust-stb-image" [dependencies.png] git = "https://github.com/servo/rust-png" -[dependencies.harfbuzz] -git = "https://github.com/servo/rust-harfb...
2
52
54
4a205a145b3a318c784ac533675fc112ab9d6e17
Patrick Walton
2015-05-26T18:18:26
servo: Merge #6028 - script: Reflow 200 milliseconds after the `<body>` is parsed, like Gecko does (from pcwalton:reflow-timer); r=jdm It would be nice if HTML parsing didn't have to hog the event loop, so I didn't have to do this polling in `content_changed()`, but maybe the way we do it is unavoidable. r? @jdm Sou...
diff --git a/script/dom/document.rs b/script/dom/document.rs index b81b0f58e..3d615df43 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -148,6 +148,8 @@ pub struct Document { loader: DOMRefCell<DocumentLoader>, /// The current active HTML parser, to allow resuming after interruptions. ...
5
67
7
a61e6b1409bfb7aba1052c0348df95d9af280a19
Tamir Duberstein
2015-05-26T15:34:03
servo: Merge #6168 - Implemented `GetCachedMessages` (from tamird:get-cached-messages); r=jdm Rebase of #4175, closes #4175. r? @jdm Source-Repo: https://github.com/servo/servo Source-Revision: 8759d42559bc5c10f8d90903f33f75bddf44d9fe
diff --git a/devtools/actors/console.rs b/devtools/actors/console.rs index 1e0623d10..5b83f6bc5 100644 --- a/devtools/actors/console.rs +++ b/devtools/actors/console.rs @@ -12,7 +12,7 @@ use protocol::JsonPacketStream; use devtools_traits::EvaluateJSReply::{NullValue, VoidValue, NumberValue}; use devtools_traits::E...
6
102
88
55fbb537bc6746e4e2ddb7f92f293fef14880d60
Anthony Ramine
2015-05-26T13:36:29
servo: Merge #6140 - Cleanup some gratuitous or inefficient uses of RootedVec (from nox:cleanup-rootedvec); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 7d0409b8421e1b0c055507acc7d784cac890f47e
diff --git a/script/dom/document.rs b/script/dom/document.rs index 13f035f3e..b81b0f58e 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -1045,17 +1045,11 @@ trait PrivateDocumentHelpers { impl<'a> PrivateDocumentHelpers for JSRef<'a, Document> { fn create_node_list<F: Fn(JSRef<Node>) -> bool>(...
6
27
39
ea72b930cc3cf2bc3c14b9bcbb6546890f30d46c
Alexander Putilin
2015-05-26T04:10:18
servo: Merge #6171 - fixes 4184: no-sniff and check-for-apache-bug for mime sniffing (from eleweek:fix-4184-ok); r=Manishearth I tried fixing #4184 , here is the code I have right now. I haven't tested it, because I don't know what is the best way to test this part of code. Would like some help with testing this. Sho...
diff --git a/net/resource_task.rs b/net/resource_task.rs index 59880aefe..22114f349 100644 --- a/net/resource_task.rs +++ b/net/resource_task.rs @@ -99,8 +99,23 @@ pub fn start_sending_sniffed_opt(start_chan: LoadConsumer, mut metadata: Metadat -> Result<ProgressSender, ()> { if o...
1
17
2
b50f0e09ba28ecdfe3a18ce57cee7c69f4143552
r0e
2015-05-25T21:33:43
servo: Merge #6162 - Pending load guard does not assert if thread is panicking (from r0e:testing); r=jdm Fixes issue #6148 @jdm After mulling over this for a little while, i'm not sure if this approach is correct. Any comments? Source-Repo: https://github.com/servo/servo Source-Revision: 6595ebed0f50658b8f6d12f9c370...
diff --git a/net_traits/lib.rs b/net_traits/lib.rs index d2ecae532..afbb6d0b5 100644 --- a/net_traits/lib.rs +++ b/net_traits/lib.rs @@ -26,6 +26,7 @@ use msg::constellation_msg::{PipelineId}; use url::Url; use std::sync::mpsc::{channel, Receiver, Sender}; +use std::thread; pub mod image_cache_task; pub mod sto...
1
4
1
f0802d3052f8cb72d65bc1f6a9ddf4b5cb36bfe3
Tamir Duberstein
2015-05-25T20:53:56
servo: Merge #6169 - Use a struct variant for clarity (from tamird:struct-variant); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 34a617aaa133b0bc0756dd7d904203c9d633e69a
diff --git a/devtools/lib.rs b/devtools/lib.rs index 1e51abaaa..71fa0b0a6 100644 --- a/devtools/lib.rs +++ b/devtools/lib.rs @@ -252,7 +252,12 @@ fn run_server(sender: Sender<DevtoolsControlMsg>, let actors = actors.lock().unwrap(); let console_actor = actors.find::<ConsoleActor>(&console_actor_name);...
3
18
5
92b6a93c976f029788f05983f04458edc9406eef
Mike Blumenkrantz
2015-05-25T00:26:00
servo: Merge #6125 - Renderrenderrenderrender: Now for embedding! (from zmike:renderrenderrenderrender); r=larsbergstrom A collection of commits which improves embedding integration and rendering. @larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: 4a95bce9f260b183660dab44ef3044618be6840c
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index f618077f5..346666ac3 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -1288,8 +1288,13 @@ impl<Window: WindowMethods> IOCompositor<Window> { self.composite_specific_target(target); } - fn composite_speci...
3
17
13
b8f0df079128039f16f0989142e62295b6fb14c4
Alexander Putilin
2015-05-24T15:27:41
servo: Merge #6170 - fixes 6111: WebSocket close event shouldn't be Cancelable (from eleweek:fix-6111); r=Ms2ger This fixes #6111 , @jdm said that I can work on this issue Source-Repo: https://github.com/servo/servo Source-Revision: 16f19b628fa630aab8cfd275a90128da7b59723b
diff --git a/script/dom/websocket.rs b/script/dom/websocket.rs index e902d1ac0..94a65fc61 100644 --- a/script/dom/websocket.rs +++ b/script/dom/websocket.rs @@ -324,7 +324,7 @@ impl WebSocketTaskHandler { let close_event = CloseEvent::new(global.r(), "close".to_owned(...
1
1
1
b752ba9e06d4d55c97d56234afe820bc8dea3d3b
Patrick Walton
2015-05-23T00:16:54
servo: Merge #5607 - layout: Implement per-glyph font fallback (from pcwalton:per-glyph-font-fallback); r=mbrubeck This improves numerous pages, for example Wikipedia and Ars Technica. Built on #5493. Closes #177. Source-Repo: https://github.com/servo/servo Source-Revision: 7561f7b83f27811683c1e724d75a935573a72813
diff --git a/gfx/font.rs b/gfx/font.rs index 52c3f95c5..258a1782d 100644 --- a/gfx/font.rs +++ b/gfx/font.rs @@ -19,7 +19,7 @@ use platform::font::{FontHandle, FontTable}; use util::geometry::Au; use text::glyph::{GlyphStore, GlyphId}; use text::shaping::ShaperMethods; -use text::{Shaper, TextRun}; +use text::Shaper...
3
252
118
d156e6b8f098b46e617012b76c1b771f4dd88822
Simon Sapin
2015-05-22T08:13:13
servo: Merge #6159 - Remove usage of the mod_path compiler plugin (from SimonSapin:no_mod_path); r=Manishearth https://github.com/rust-lang/rust/pull/20179 makes its use case much weaker. r? @Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: e04d9c32a98ff4673f413ed17f66e7466e2ff974
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index bbf2a3e07..26b0fe8f2 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -745,11 +745,6 @@ dependencies = [ "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "mod_path" -version = "0.1.5" -source = "registry+https...
4
4
11
516e60426cedf7eee6a11b2494c7fd0188f2f00a
Manish Goregaokar
2015-05-21T18:27:27
servo: Merge #6156 - Fix deprecated plugin APIs (from Manishearth:warn_fix); r=larsbergstrom r? @larsbergstrom (The diff is borked here, but I only just added `if let`s and wrapped/unwrapped in `Annotatable`s) Source-Repo: https://github.com/servo/servo Source-Revision: ef7fa99bd2c4ff52be1c6361d9f1eca3775c88c5
diff --git a/plugins/jstraceable.rs b/plugins/jstraceable.rs index 4c23a1897..d11b0956b 100644 --- a/plugins/jstraceable.rs +++ b/plugins/jstraceable.rs @@ -5,23 +5,28 @@ use syntax::ext::base::{Annotatable, ExtCtxt}; use syntax::codemap::Span; use syntax::ptr::P; -use syntax::ast::{Item, MetaItem, Expr}; +use synta...
3
53
47
421110154f6d9b4b55541918ca09153b86e83c2c
Josh Matthews
2015-05-21T17:37:06
servo: Merge #5727 - Make external script sources load asynchronously, yet still block furthe (from jdm:parserinterrupt2); r=mbrubeck ...r parsing. Hook up document loading to async networking events. Relies on https://github.com/servo/html5ever/pull/107, so we'll likely need to backport it rather than wait for the n...
diff --git a/net_traits/lib.rs b/net_traits/lib.rs index 46fcc4768..d2ecae532 100644 --- a/net_traits/lib.rs +++ b/net_traits/lib.rs @@ -132,8 +132,6 @@ pub struct PendingAsyncLoad { resource_task: ResourceTask, url: Url, pipeline: Option<PipelineId>, - input_sender: Sender<LoadResponse>, - input_r...
9
433
181
8cb2f7a23ca9751a4d88c8bac34c71a46243fdf2
Lars Bergstrom
2015-05-21T15:50:53
servo: Merge #6155 - Rustup to 1.2.0 (from servo:rustup_2015-05-21); r=Manishearth r? @Manishearth (there's just the one plugins-related change required) Source-Repo: https://github.com/servo/servo Source-Revision: a0fccea670124d5ccfef1c13fe1b5d2e58891236
diff --git a/plugins/jstraceable.rs b/plugins/jstraceable.rs index 7f4757816..4c23a1897 100644 --- a/plugins/jstraceable.rs +++ b/plugins/jstraceable.rs @@ -42,6 +42,7 @@ pub fn expand_jstraceable(cx: &mut ExtCtxt, span: Span, mitem: &MetaItem, item: args: vec!(ty::Ptr(box ty::Literal(ty::Path::new(vec...
1
1
0
28be012580ddb3ab7221a5858f2f3bbef2208181
Paul Faria
2015-05-21T11:59:06
servo: Merge #6154 - Adding in a missed algorithm step number in the comments (from Nashenas88:websocket-parse-url-typo); r=jdm This is a really small typo fix for an issue I worked on recently. Source-Repo: https://github.com/servo/servo Source-Revision: b84aa41c229a18fa77f4ae815fc0166cb3fbb1b6
diff --git a/script/dom/websocket.rs b/script/dom/websocket.rs index f96c2706a..e902d1ac0 100644 --- a/script/dom/websocket.rs +++ b/script/dom/websocket.rs @@ -84,7 +84,7 @@ fn parse_web_socket_url(url_str: &str) -> Fallible<(Url, String, u16, String, bo }; let host = parsed_url.host().unwrap().serialize()...
1
1
1
d9ea1ca8717f3926964eb8483dcd280caf75a596
Glenn Watson
2015-05-21T01:01:32
servo: Merge #6152 - Fix document load event firing after pipeline is closed (from glennw:runnable-panic); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 1060cfde68c8d355b54a271923c9682721c5ed19
diff --git a/gfx/paint_task.rs b/gfx/paint_task.rs index 10f748e7b..007668ad7 100644 --- a/gfx/paint_task.rs +++ b/gfx/paint_task.rs @@ -308,7 +308,7 @@ impl<C> PaintTask<C> where C: PaintListener + Send + 'static { // If we own buffers in the compositor and we are not exiting completely, wait ...
3
32
9
baa6e3bfb004b4de7b4500cc05d7df04c174c2b0
Manish Goregaokar
2015-05-20T23:23:13
servo: Merge #6151 - Upgrade rust to 716f920b7e234b450f272346fea961832505c06e (from servo:rustup-2015_05_13); r=larsbergstrom (Tue May 19 05:39:29 2015 +0000) Source-Repo: https://github.com/servo/servo Source-Revision: 7ae5d1129f9fd1227678db9ad26471727dc9fa27
diff --git a/plugins/jstraceable.rs b/plugins/jstraceable.rs index 0ef1cecea..7f4757816 100644 --- a/plugins/jstraceable.rs +++ b/plugins/jstraceable.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 syntax::...
3
107
129
89427298e4bbff8b8d711740f547b124009d4a86
Patrick Walton
2015-05-20T21:43:31
servo: Merge #5586 - net: Don't load the placeholder image for background images, only for image fragments (from pcwalton:no-broken-background-image-redux); r=glennw r? @jdm Source-Repo: https://github.com/servo/servo Source-Revision: 77099b25d590fdaac76721e7f98f4e83672e64a6
diff --git a/layout/context.rs b/layout/context.rs index cf9091150..393794bb5 100644 --- a/layout/context.rs +++ b/layout/context.rs @@ -16,7 +16,8 @@ use gfx::font_cache_task::FontCacheTask; use gfx::font_context::FontContext; use msg::constellation_msg::ConstellationChan; use net_traits::image::base::Image; -use n...
8
93
38
c5e38e1faecf81c1ead761dbb87c908dc2e47eb1
Peter
2015-05-20T19:34:31
servo: Merge #5858 - fixes #5603, added support for tabindex field (from pgonda:tabindex-focus-flag); r=jdm Added support for the tabindex field, also added its correct defaults (-2 TODOs for things not supported in Servo yet). Also added tabindex logic into Element::is_focusable_area. Source-Repo: https://github.co...
diff --git a/script/dom/element.rs b/script/dom/element.rs index a666a28e6..b58617281 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -54,7 +54,7 @@ use dom::htmltablecellelement::{HTMLTableCellElement, HTMLTableCellElementHelper use dom::htmltablerowelement::{HTMLTableRowElement, HTMLTableRowElement...
4
80
4
7132e6bf3b6ce6b7ebb6ec1ff0d2de2cbcf7152c
Patrick Walton
2015-05-20T18:06:52
servo: Merge #6077 - compositing: Support multiple events per frame (from pcwalton:multiple-events-per-frame); r=glennw Improves scrolling performance significantly on Mac. r? @glennw Source-Repo: https://github.com/servo/servo Source-Revision: 071f89aa5f11075894e0702860d88f1353ecd95e
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index cd2c66e84..84ef6deed 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -1003,7 +1003,8 @@ impl<Window: WindowMethods> IOCompositor<Window> { if pipeline_details.animations_running || pipeline_de...
7
31
23
cd25a97d32d94212efc4963abbe9a4fa0fa42886
Peter
2015-05-20T15:29:48
servo: Merge #6074 - Allows the unrooted_must_root lint to deal with struct variant enums, #6069 (from pgonda:lint-fix-struct-enum-variants); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: d68730a0fc755149c1093021e34e7d34693429b7
diff --git a/plugins/Cargo.toml b/plugins/Cargo.toml index 133bad303..946394fbe 100644 --- a/plugins/Cargo.toml +++ b/plugins/Cargo.toml @@ -8,5 +8,5 @@ name = "plugins" path = "lib.rs" plugin = true -[dependencies.tenacious] -git = "https://github.com/Manishearth/rust-tenacious.git" \ No newline at end of file +[d...
3
11
7
9d3a5d106b024853207ca31b404059a3df18039d
Michael Wu
2015-05-20T07:36:43
servo: Merge #6143 - Avoid selecting bitmap fonts from fontconfig (from michaelwu:truetype-only); r=pcwalton I have a number of pcf fonts installed. One of them is Adobe Helvetica, and it turns out many websites try to use Helvetica. This crashes servo. Source-Repo: https://github.com/servo/servo Source-Revision: 165...
diff --git a/gfx/platform/freetype/font_list.rs b/gfx/platform/freetype/font_list.rs index 9f939fa93..ea9a0cbcb 100644 --- a/gfx/platform/freetype/font_list.rs +++ b/gfx/platform/freetype/font_list.rs @@ -31,6 +31,7 @@ use std::ptr; static FC_FAMILY: &'static [u8] = b"family\0"; static FC_FILE: &'static [u8] = b"file...
1
14
0
a370288138a13540e4e1c528a56ef33b337ca689
Michael Wu
2015-05-20T06:55:43
servo: Merge #6139 - Rustup fixes (from michaelwu:rustup-fixes); r=SimonSapin Mutable transmutes and wrong transmutes fixed. Source-Repo: https://github.com/servo/servo Source-Revision: 64810583093dadfacbda942562853af1ae82e34e
diff --git a/layout/parallel.rs b/layout/parallel.rs index 5d61e11a3..6ff9acc19 100644 --- a/layout/parallel.rs +++ b/layout/parallel.rs @@ -169,7 +169,7 @@ trait ParallelPostorderDomTraversal : PostorderDomTraversal { unsafe_node = layout_node_to_unsafe_layout_node(&parent); - let p...
2
7
7
5522cff50b4aa3932d60a57510c75c8690a9a408
Paul Faria
2015-05-20T06:13:57
servo: Merge #6127 - Throw a SyntaxError if the WebSocket URL can't be parsed. Fix #6061 (from Nashenas88:websockets-invalid-urls); r=Ms2ger Fix #6061. Source-Repo: https://github.com/servo/servo Source-Revision: d869a3c7a8378a77a9a5e86c118115f969ade193
diff --git a/script/dom/websocket.rs b/script/dom/websocket.rs index c9061457a..f96c2706a 100644 --- a/script/dom/websocket.rs +++ b/script/dom/websocket.rs @@ -9,8 +9,7 @@ use dom::bindings::codegen::Bindings::EventHandlerBinding::EventHandlerNonNull; use dom::bindings::codegen::InheritTypes::EventTargetCast; use do...
1
54
9
d647eb7c8d5705598ba5588738cedb670116af59
Keith Yeung
2015-05-20T04:08:41
servo: Merge #6129 - Implement fetch (partial #4576) (from KiChjang:fetch-spec); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 79ed6250f0535d62a12b1d7e47e48926d6e3925a
diff --git a/net/fetch/request.rs b/net/fetch/request.rs index 8ce58f819..c5e1a4a5f 100644 --- a/net/fetch/request.rs +++ b/net/fetch/request.rs @@ -5,22 +5,24 @@ use url::Url; use hyper::method::Method; use hyper::mime::{Mime, TopLevel, SubLevel, Attr, Value}; -use hyper::header::{Headers, ContentType, IfModifiedSi...
1
62
13
04fa7608be5ef0a8eae372b6b82823a80cfd7176
Matt Brubeck
2015-05-20T03:27:17
servo: Merge #6138 - Enable 'direction' without --experimental (from mbrubeck:enable-rtl); r=pcwalton r? @pcwalton or @SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: fed48ca59b122f733c74957b6be39b067d792d17
diff --git a/style/properties.mako.rs b/style/properties.mako.rs index 3edc0a312..7ddeb3795 100644 --- a/style/properties.mako.rs +++ b/style/properties.mako.rs @@ -424,7 +424,7 @@ pub mod longhands { ${new_style_struct("InheritedBox", is_inherited=True)} - ${single_keyword("direction", "ltr rtl", experimen...
1
1
1
d8bd07aa3de5efa2d2dcb972dc5464a30c839ba5
Glenn Watson
2015-05-20T02:44:45
servo: Merge #6131 - Fix several hangs / panics during pipeline cleanup of in progress loads (from glennw:jquery-exit-fix); r=jdm This fixes a hang found while testing the jQuery test suite. Source-Repo: https://github.com/servo/servo Source-Revision: c51e9f04559f04f1e820b792261e1653c6869ee5
diff --git a/compositing/compositor_task.rs b/compositing/compositor_task.rs index 5a3c6bdd5..10a49fa39 100644 --- a/compositing/compositor_task.rs +++ b/compositing/compositor_task.rs @@ -94,7 +94,13 @@ impl PaintListener for Box<CompositorProxy+'static+Send> { fn get_graphics_metadata(&mut self) -> Option<Native...
7
74
21
cc9e4de66a3177ca0aa2da95880fe51c1bc5de72
WriterOfAlicrow
2015-05-20T01:49:32
servo: Merge #6084 - Fix for Issue #6073 (from WriterOfAlicrow:radiobutton-fix); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: e2b0922d42e18362ec9ae79feaffed601142e586
diff --git a/script/dom/htmlinputelement.rs b/script/dom/htmlinputelement.rs index e077cfac7..eb784c91b 100644 --- a/script/dom/htmlinputelement.rs +++ b/script/dom/htmlinputelement.rs @@ -413,6 +413,8 @@ impl<'a> HTMLInputElementHelpers for JSRef<'a, HTMLInputElement> { .as_ref...
1
2
0
da44f91686c55dcfd2cd7b4db5fd70a748d53290
Patrick Walton
2015-05-20T00:40:36
servo: Merge #6053 - compositing: Implement display ports and avoid creating display lists for items outside it (from pcwalton:displayports); r=glennw This improves Servo's performance on large pages. Please double-check the logic when it comes to nested layers—I'm sure I've messed up some of the geometry calculation...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 4ba546fbe..cd2c66e84 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -14,7 +14,7 @@ use windowing::{MouseWindowEvent, WindowEvent, WindowMethods, WindowNavigateMsg} use geom::point::{Point2D, TypedPoint2D}; use geom::re...
23
302
66
5252910ad2def22e2503e91721ce3e6e32760782
Patrick Walton
2015-05-19T21:03:15
servo: Merge #5993 - layout: Support percentage widths in inline-blocks (from pcwalton:inline-block-percentage-widths); r=mbrubeck Improves Twitter. r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: acb9824229bf9e02eaabdb9d924f7db242a1ac85
diff --git a/layout/block.rs b/layout/block.rs index fa3a13c58..c77c92663 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -2134,9 +2134,9 @@ pub trait ISizeAndMarginsComputer { } fn containing_block_inline_size(&self, - _: &mut BlockFlow, - par...
3
18
4
2729e1742316ecf30953e7b1f6a17410a615b2f6
Patrick Walton
2015-05-19T18:51:30
servo: Merge #6124 - layout: Support inline incremental reflow, and stop reconstructing all flows when mousing over the document (from pcwalton:inline-incremental-reflow); r=mbrubeck r? Source-Repo: https://github.com/servo/servo Source-Revision: 16793d0e24ed49245e5777bc282839e4c157a091
diff --git a/layout/construct.rs b/layout/construct.rs index 95d07afec..ba9f077c7 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -1250,22 +1250,28 @@ impl<'a> FlowConstructor<'a> { return false } - match node.swap_out_construction_result() { - ConstructionResult:...
6
57
44
0d40ad5d9b72e1296d7c9d427a0708596b4c7c5c
Mike Blumenkrantz
2015-05-19T18:10:44
servo: Merge #6120 - update glutin repo ref (from zmike:cmap); r=larsbergstrom @larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: 0a737d90f2aafa5653d2ce1a5c5a809ebf4aa3a1
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 3202bcf38..fc3bf6baa 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -431,7 +431,7 @@ dependencies = [ [[package]] name = "glutin" version = "0.0.26" -source = "git+https://github.com/servo/glutin?branch=servo#b28f35aa5b06e7d34ada307a5a1b1e9b9de697a1" +s...
1
1
1