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
2494db1edb2019846e3df5cc957b7cce657365fa
Adrian Utrilla
2016-04-04T20:07:55
servo: Merge #10391 - Inlined content_changed (from autrilla:inline-content-changed); r=Ms2ger cc @Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: b568b72d760623462fe1a19544e1ad59f98e4480
diff --git a/script/dom/characterdata.rs b/script/dom/characterdata.rs index bffd52831..e992834b6 100644 --- a/script/dom/characterdata.rs +++ b/script/dom/characterdata.rs @@ -65,7 +65,7 @@ impl CharacterData { fn content_changed(&self) { let node = self.upcast::<Node>(); - node.owner_doc().cont...
6
13
22
337b5fdc6292fcb0aff8d5e97075fb05b90155e6
Emilio Cobos Álvarez
2016-04-04T18:09:31
servo: Merge #10365 - servo: Clean up unused variables and imports (from emilio:warnings); r=Wafflespeanut Source-Repo: https://github.com/servo/servo Source-Revision: a29da7b48e41327aa7226bda8bea7b00dac88b6c
diff --git a/script/dom/document.rs b/script/dom/document.rs index a708e9b6c..9e7f0e38f 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -115,8 +115,8 @@ use style::restyle_hints::ElementSnapshot; use style::servo::Stylesheet; use task_source::dom_manipulation::DOMManipulationTask; use time; +use ...
2
2
2
bf5272929214033f45992cb46544a650cfa08650
Daniel Robertson
2016-04-04T15:48:45
servo: Merge #10330 - Compute available main and cross size of flex containers (from danlrobertson:flex-axes); r=SimonSapin Compute the available main and cross size of flex containers, and add a helper for min/main constraints. Currently, this should only impact inline sizing. I wanted to get some feedback before I m...
diff --git a/layout/flex.rs b/layout/flex.rs index 82699910d..38de62a6f 100644 --- a/layout/flex.rs +++ b/layout/flex.rs @@ -15,21 +15,54 @@ use floats::FloatKind; use flow; use flow::INLINE_POSITION_IS_STATIC; use flow::IS_ABSOLUTELY_POSITIONED; -use flow::ImmutableFlowUtils; -use flow::{Flow, FlowClass, OpaqueFlow...
2
156
30
acc5134d92fac60ef29e80b3feab90c5f9440672
Bobby Holley
2016-04-04T14:41:29
servo: Merge #10359 - Implement construction, destruction, and copying of gecko style structs (from bholley:style_struct_management); r=SimonSapin This requires some new machinery on the gecko side, which I'll get up in bugzilla shortly. Source-Repo: https://github.com/servo/servo Source-Revision: a3b55d68a84dac301b3...
diff --git a/style/properties.mako.rs b/style/properties.mako.rs index ce285c4d7..0b9dcd112 100644 --- a/style/properties.mako.rs +++ b/style/properties.mako.rs @@ -6722,10 +6722,8 @@ pub type CascadePropertyFn<C /*: ComputedValues */> = cacheable: &mut bool, error_reporter: ...
1
8
4
886b35c8c83db867c9f82e7b1dbe1013157236d0
Dongie Agnir
2016-04-03T15:15:36
servo: Merge #9972 - Xhr data (from dagnir:xhr-data); r=KiChjang Builds on existing work by @emosenkis. Fixes #8015. Source-Repo: https://github.com/servo/servo Source-Revision: d35ae3beb73158ec4c9ab20b3361e948379a4c90
diff --git a/net_traits/lib.rs b/net_traits/lib.rs index a741bec03..f32576fcd 100644 --- a/net_traits/lib.rs +++ b/net_traits/lib.rs @@ -336,9 +336,18 @@ impl Metadata { /// Extract the parts of a Mime that we care about. pub fn set_content_type(&mut self, content_type: Option<&Mime>) { + match self....
3
22
5
6d8f6c227f7c030a42a8be0988fd953158dba540
Matt Brubeck
2016-04-03T13:05:01
servo: Merge #10360 - Remove unused -Z dump-display-list-optimized flag (from mbrubeck:die-opt); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: f6c29249360134b2a437de0674f606b36327bfb1
diff --git a/util/opts.rs b/util/opts.rs index 37253c605..a5799883e 100644 --- a/util/opts.rs +++ b/util/opts.rs @@ -163,9 +163,6 @@ pub struct Opts { /// Dumps the display list in JSON form after a layout. pub dump_display_list_json: bool, - /// Dumps the display list after optimization (post layout, at...
1
0
10
fc04b53f698569d049d14968b67ef6a71f4a3d92
Alan Jeffrey
2016-04-02T17:38:45
servo: Merge #10343 - Comment explaining constellation panic for recv (from asajeffrey:document-constellation-recv-panic); r=jdm A retry of #10294, which was closed due to homu issues. Source-Repo: https://github.com/servo/servo Source-Revision: 85f9f9626eaff12b66299eb6190955f2726b432c
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index dbb22b84f..b41f75c7b 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -536,6 +536,17 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF> Paint(FromPaintMsg) ...
1
16
4
c3be8ace0732285369756701c40f2d15d7419e99
Emilio Cobos Álvarez
2016-04-02T16:33:16
servo: Merge #10366 - style: Improve style::selector_matching documentation (from emilio:style-docs); r=SimonSapin r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 7f4929d52dd33bcb3e231e776179314304fe1889
diff --git a/style/selector_matching.rs b/style/selector_matching.rs index bb063c805..d210f888e 100644 --- a/style/selector_matching.rs +++ b/style/selector_matching.rs @@ -83,27 +83,47 @@ lazy_static! { }; } +/// This structure holds all the selectors and device characteristics +/// for a given document. The s...
1
47
14
bd677f776c4164304bc3d103f00435ce0d97c577
Matt Brubeck
2016-04-02T15:23:26
servo: Merge #10350 - Fix some char/byte bugs in textinput (from mbrubeck:selection-chars); r=SimonSapin Fixes #9569. r? @SimonSapin or @Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: c0bfcc5155ec559e8976d684ac463229a4487277
diff --git a/script/lib.rs b/script/lib.rs index fa6dc8a38..3ab51fc95 100644 --- a/script/lib.rs +++ b/script/lib.rs @@ -11,6 +11,7 @@ #![feature(custom_attribute)] #![feature(custom_derive)] #![feature(fnbox)] +#![feature(iter_arith)] #![feature(mpsc_select)] #![feature(nonzero)] #![feature(on_unimplemented)] di...
2
97
36
b7bd1fa77d090f7a7ba022cda252f6aa932a01e1
Matt Brubeck
2016-04-02T14:24:50
servo: Merge #10347 - Fix incremental reflow of text selection changes (from mbrubeck:incremental-selection); r=pcwalton r? @emilio or @pcwalton CC @paulrouget: This fixes a bug in the browser.html URL bar auto-completion. Source-Repo: https://github.com/servo/servo Source-Revision: 0489280ded90d658b4024f4334e2d58cc...
diff --git a/script/dom/htmlinputelement.rs b/script/dom/htmlinputelement.rs index e14a91ae9..e2434d607 100644 --- a/script/dom/htmlinputelement.rs +++ b/script/dom/htmlinputelement.rs @@ -200,6 +200,7 @@ impl HTMLInputElement { text_input.selection_begin = Some(text_input.get_text_point_for_absolute_point(sta...
2
9
20
ee7942a693914938f9b964881607320c3c9bcd4e
Corey Farwell
2016-04-02T11:04:39
servo: Merge #10333 - Add a spec links for <textarea> magic number constants (from frewsxcv:textarea-links); r=mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 39d6b7988d0f6f49d228ca2bc3df2919d31770ae
diff --git a/script/dom/htmltextareaelement.rs b/script/dom/htmltextareaelement.rs index 0f8291912..8b57d638a 100644 --- a/script/dom/htmltextareaelement.rs +++ b/script/dom/htmltextareaelement.rs @@ -91,7 +91,10 @@ impl LayoutHTMLTextAreaElementHelpers for LayoutJS<HTMLTextAreaElement> { } } +// https://html.s...
1
3
0
2d4ba9aa1e5a6a38998d7d82e6a5a6d64dfa421d
Corey Farwell
2016-04-02T08:49:39
servo: Merge #10327 - Remove `get_*` on getters as per RFC 0344 (from frewsxcv:get-prefix); r=ms2ger https://github.com/rust-lang/rfcs/blob/master/text/0344-conventions-galore.md#gettersetter-apis https://github.com/servo/servo/issues/6224 Source-Repo: https://github.com/servo/servo Source-Revision: 0760e56bb66e38a1...
diff --git a/script/devtools.rs b/script/devtools.rs index a1f5f2157..70bda654b 100644 --- a/script/devtools.rs +++ b/script/devtools.rs @@ -91,7 +91,7 @@ fn find_node_by_unique_id(page: &Rc<Page>, pipeline: PipelineId, node_id: String let node = document.upcast::<Node>(); for candidate in node.traverse_pre...
9
35
35
53230f01918bbf4033ada5b420d40fc79eca78a4
Matthew Bentley
2016-04-02T03:03:42
servo: Merge #10114 - Load prefs.json from profile-dir if --profile-dir is specified at launch (from matthewbentley:master); r=Manishearth In response to #10098 Tries to load `prefs.json` from the profile-dir and merge them into the preferences if `--profile-dir` is specified at launch. The profile-dir preferences ta...
diff --git a/util/opts.rs b/util/opts.rs index 4ceafd264..37253c605 100644 --- a/util/opts.rs +++ b/util/opts.rs @@ -805,8 +805,12 @@ pub fn from_cmdline_args(args: &[String]) -> ArgumentParsingResult { set_defaults(opts); - // This must happen after setting the default options, since the prefs rely on + ...
2
44
10
80749f962bf3caf27b8dfc04e72f3e5baa54b53e
Patrick Walton
2016-04-02T01:43:02
servo: Merge #10349 - servo: Update WebRender (from pcwalton:wrup2); r=glennw Closes #10307. r? @glennw Source-Repo: https://github.com/servo/servo Source-Revision: 5bb38aa03b5b83dadfa675591dd8bd5cfb31a7f0
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 475b98e94..fc36769ea 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2319,7 +2319,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.1.0" -source = "git+https://github.com/servo/webrender#871c57b48db9e636388a9f05123e3ffeb13c4677" +source ...
1
2
2
e65c7396d89242f4965a8108366b6a39831ce898
Paul Rouget
2016-04-02T00:41:46
servo: Merge #10336 - Make it possible to use preferences to configure webrender and titlebar (from paulrouget:morePrefs); r=KiChjang It's getting tiring for browserhtml to run servo with so many options: `servo -w -b --pref dom.mozbrowser.enabled --pref dom.forcetouch.enabled http://localhost:6060`. We want to be a...
diff --git a/util/opts.rs b/util/opts.rs index e8d5283b9..4ceafd264 100644 --- a/util/opts.rs +++ b/util/opts.rs @@ -732,7 +732,13 @@ pub fn from_cmdline_args(args: &[String]) -> ArgumentParsingResult { (contents, url) }).collect(); - let use_webrender = opt_match.opt_present("w") && !opt_match.opt_p...
1
8
2
f7286ac80a644c5c0b838ff344e8304a11310807
Patrick Walton
2016-04-01T23:33:07
servo: Merge #10331 - gfx: Simplify complex clipping regions as we construct them (from pcwalton:simplify-complex-clipping-regions); r=glennw This allows WebRender to correctly render complex clipping regions that can be reduced to single rounded rectangles. WebRender still can't render rounded rectangles with arbitra...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 96eeebe84..2a132cf7f 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -32,7 +32,7 @@ use range::Range; use serde::de::{self, Deserialize, Deserializer, MapVisitor, Visitor}; use serde::ser::impls::MapIteratorVisitor; use serde:...
1
37
1
dab0d558f1e3a8e2f65a45a21ebd1079803cd62f
Patrick Walton
2016-04-01T20:26:39
servo: Merge #10321 - compositing: Send only one mouse move event if WebRender is in use (from pcwalton:webrender-mouse-move); r=glennw In WebRender mode, we were sending two mouse move events: one with the proper coordinates and one with the wrong coordinates, because of incorrect fall-through. The script task would ...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 7f6c28c17..9c35ed604 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -1346,6 +1346,7 @@ impl<Window: WindowMethods> IOCompositor<Window> { .send(ConstellationControlMsg::SendEvent(root_pipeline_i...
1
1
0
56dc8702ab4196fc3fdfea128b00ce8bacc65c97
Josh Matthews
2016-04-01T19:34:31
servo: Merge #10312 - Report errors from ScriptPort trait methods (from servo:ScriptPort); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 6056b16a7714c42e4ff67d2bccb27650d549eae4
diff --git a/script/dom/dedicatedworkerglobalscope.rs b/script/dom/dedicatedworkerglobalscope.rs index e560f7882..d04ea7f11 100644 --- a/script/dom/dedicatedworkerglobalscope.rs +++ b/script/dom/dedicatedworkerglobalscope.rs @@ -94,10 +94,11 @@ impl ScriptChan for WorkerThreadWorkerChan { } impl ScriptPort for Rece...
3
21
18
767ee87bedb5daa2c54477b01eae7197410eaaf1
Ms2ger
2016-04-01T17:21:51
servo: Merge #10304 - Implement Document::cookie correctly for cookie-averse documents (from Ms2ger:cookie-averse); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 7d79df4a05948e0ce6e3abc6bef0f833d8bf541e
diff --git a/script/dom/document.rs b/script/dom/document.rs index a24580d0f..12b47cf4d 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -1467,6 +1467,19 @@ impl Document { let target = node.upcast(); event.fire(target); } + + /// https://html.spec.whatwg.org/multipage/#cook...
1
21
2
503376f74e20ad0bdacfdbd33116f6ec049fbd1e
Alan Jeffrey
2016-04-01T13:44:48
servo: Merge #10295 - Miscellaneous fixes to harden the constellation (from asajeffrey:remove-constellation-misc-panic); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 7f06b467a4ed988154bae3bb58c235b969e750c8
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index ed9cfbff7..dbb22b84f 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -457,6 +457,9 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF> pipeline_id: Pi...
1
21
5
3ffe5193515aeba24417e08da3e201d7e9c18e02
Rahul Sharma
2016-04-01T09:42:30
servo: Merge #10272 - implements data-url fetching (from creativcoder:implement-data-url-fetch); r=jdm Fixes #10165 jdm mentioned of decoupling the, payload loading mechanism to data_loader.rs. So accordingly a `decoder` method has been added to data_loader. Source-Repo: https://github.com/servo/servo Source-Revision...
diff --git a/net/data_loader.rs b/net/data_loader.rs index f8386451d..504523026 100644 --- a/net/data_loader.rs +++ b/net/data_loader.rs @@ -4,12 +4,14 @@ use hyper::mime::{Mime, TopLevel, SubLevel, Attr, Value}; use mime_classifier::MIMEClassifier; -use net_traits::ProgressMsg::{Done, Payload}; -use net_traits::{L...
2
56
22
2bfe58c55828d297180a6d221e1317da9aef5c34
Alan Jeffrey
2016-03-31T22:00:57
servo: Merge #10082 - Removed panicking when frame or pipeline lookup fails (from asajeffrey:remove-constellation-panic); r=glennw Removed the methods `pipeline(id)`, `pipeline_mut(id)`, `frame(id)` and `frame_mut(id)` from constellation, which panicked when the table lookup failed. The panics were causing race condi...
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 6ebe4dd9c..ed9cfbff7 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -257,12 +257,28 @@ struct FrameTreeIterator<'a> { impl<'a> Iterator for FrameTreeIterator<'a> { type Item = &'a Frame; fn next(&m...
1
351
251
95a357df1bfc2238d7137aa19279ee853f98c61a
Jan-Fabian Humann
2016-03-31T20:27:20
servo: Merge #10291 - #10211: Stop re-exporting webrender_traits WebGL types from canvas_traits (from jfhumann:10211); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 524a004e771b465e3de9ebbc33816e50949d6a25
diff --git a/canvas/webgl_paint_thread.rs b/canvas/webgl_paint_thread.rs index 1b1ce738c..c88f2a378 100644 --- a/canvas/webgl_paint_thread.rs +++ b/canvas/webgl_paint_thread.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/...
13
96
88
34de65a69e5b9810cfd2b73cbe3acc9f8110cfbe
Emilio Cobos Álvarez
2016-03-31T16:21:06
servo: Merge #10302 - Update webrender to master (from emilio:webrender-up); r=nox I'll rebase #10224 against it. Sorry for the blocking of #10224, I expected it to be reviewed way sooner, my fault for landing breaking changes. r? @nox or @pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 84a3de...
diff --git a/canvas/webgl_paint_thread.rs b/canvas/webgl_paint_thread.rs index 652a11b93..1b1ce738c 100644 --- a/canvas/webgl_paint_thread.rs +++ b/canvas/webgl_paint_thread.rs @@ -29,7 +29,7 @@ impl WebGLPaintThread { webrender_api_sender: Option<webrender_traits::RenderApiSender>) -> Result<WebGLPaintThre...
2
34
17
9337f9097f94cf23155db7e0cc1a4bc204140d57
Connor Brewster
2016-03-31T15:18:03
servo: Merge #10202 - Added a mapping between nodes and stylesheets (from cbrewster:stylesheet-node-mapping); r=nox Currently a work in progress solution for #10143. I am not sure how to make the stylesheets() func return a `Ref<Vec<Arc<Stylesheet>>>` or if this way work just as well. If anyone has any feedback, tha...
diff --git a/script/dom/document.rs b/script/dom/document.rs index ad0ae92ea..f05ed6073 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -157,7 +157,7 @@ pub struct Document { anchors: MutNullableHeap<JS<HTMLCollection>>, applets: MutNullableHeap<JS<HTMLCollection>>, /// List of styles...
2
9
8
3e091f014c0e81b1eba483b553ad6c62cced0a30
Anthony Ramine
2016-03-31T01:12:31
servo: Merge #10297 - Update webrender with crates.io's offscreen_gl_context (fixes #10296) (from servo:the-offscreens); r=pcwalton Crate webrender is bumped to the first commit in https://github.com/servo/webrender/pull/248. Crate webrender_traits is bumped to the merge of https://github.com/servo/webrender_traits/pu...
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index c6bb21cd6..ff31840b3 100644 --- a/canvas/Cargo.toml +++ b/canvas/Cargo.toml @@ -28,9 +28,6 @@ path = "../util" [dependencies.gfx_traits] path = "../gfx_traits" -[dependencies.offscreen_gl_context] -git = "https://github.com/ecoal95/rust-offscreen-rendering-co...
7
20
32
6433ccf0d4fc14185939deba5a8248dda5ec8083
Ms2ger
2016-03-31T00:14:10
servo: Merge #10287 - Include square brackets for IPv6 addresses in Document::domain (from Ms2ger:domain); r=jdm The specification changed out from under us. It's unfortunately impossible to write a test for this right now. Source-Repo: https://github.com/servo/servo Source-Revision: af06d32628bafe50e82a17e50d3daea2...
diff --git a/script/dom/document.rs b/script/dom/document.rs index ddaebcd35..ad0ae92ea 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -1767,12 +1767,6 @@ impl DocumentMethods for Document { fn Domain(&self) -> DOMString { // TODO: This should use the effective script origin when it e...
1
0
6
d019a3ce295ad43d58e1b98028b5f70bdb7bb617
Bobby Holley
2016-03-30T23:16:11
servo: Merge #10275 - Use more mako machinery in geckolib (and make a few small changes to style/properties.mako.rs) (from bholley:style_struct_templates); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: ed9c64e827a1dd935ac9fa2e7127dafad0a5f29e
diff --git a/style/properties.mako.rs b/style/properties.mako.rs index 72cb464e8..ce285c4d7 100644 --- a/style/properties.mako.rs +++ b/style/properties.mako.rs @@ -72,12 +72,34 @@ class Shorthand(object): self.sub_properties = [LONGHANDS_BY_NAME[s] for s in sub_properties] self.internal = internal ...
1
75
53
0e5ca938315e6eae15150a45b794e2d34a272c07
Ms2ger
2016-03-30T22:11:19
servo: Merge #10268 - Stop reference-counting Runtime for workers (from Ms2ger:rc-runtime); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: e5e559d414e58d57d8e4f59bbd55da1646d59017
diff --git a/script/dom/dedicatedworkerglobalscope.rs b/script/dom/dedicatedworkerglobalscope.rs index c63b657cd..e560f7882 100644 --- a/script/dom/dedicatedworkerglobalscope.rs +++ b/script/dom/dedicatedworkerglobalscope.rs @@ -32,7 +32,6 @@ use script_thread::ScriptThreadEventCategory::WorkerEvent; use script_thread...
2
10
10
c443b6e24a10e0dae94a6102adac94b2d99dc126
Emilio Cobos Álvarez
2016-03-30T19:17:07
servo: Merge #10252 - Implement ::selection pseudo-element (from emilio:selection); r=mbrubeck It only supports `color` and `background`, for now, but it shouldn't be hard to add more properties (like text-shadow). r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 723989b9dddeb9bcdc28dc7d640f...
diff --git a/layout/construct.rs b/layout/construct.rs index 239dc52e0..d9727e5c8 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -217,6 +217,7 @@ impl InlineFragmentsAccumulator { address: node.opaque(), pseudo: node.get_pseudo_element_type().strip(), st...
10
68
21
eb544aa6183efc8268dd93d83f507b3085731acc
Josh Matthews
2016-03-30T14:28:30
servo: Merge #10238 - Run unit tests on appveyor (from jdm:winunit); r=larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: e1485718128bff632eff5445583e925ff796bdba
diff --git a/util/opts.rs b/util/opts.rs index 78ac6f9ce..e8d5283b9 100644 --- a/util/opts.rs +++ b/util/opts.rs @@ -868,7 +868,7 @@ pub fn parse_url_or_filename(cwd: &Path, input: &str) -> Result<Url, ()> { match Url::parse(input) { Ok(url) => Ok(url), Err(url::ParseError::RelativeUrlWithoutBase...
1
1
1
326e07ecfaf7e18e8f3c5a9e256d912ff90760ad
Alan Jeffrey
2016-03-30T13:36:38
servo: Merge #10242 - Replace any uses of .send().unwrap() by .send().unwrap_or_else() (from asajeffrey:remove-constellation-send-panic); r=metajack This is part of the effort to harden the constellation (#10124), in this case against panics caused by channel send. Source-Repo: https://github.com/servo/servo Source-R...
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 159477e34..6ebe4dd9c 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -426,7 +426,7 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF> // // Yes, that'...
1
75
58
b2fc739147219d6804d33b760500a021460a4daa
Ms2ger
2016-03-30T11:13:35
servo: Merge #10283 - Update js (fixes #10229) (from servo:js); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 4aa1da3211207512ef8bc8647a68869702ffed52
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 09f786810..1de4d6572 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -990,7 +990,7 @@ dependencies = [ [[package]] name = "js" version = "0.1.2" -source = "git+https://github.com/servo/rust-mozjs#a815f57fdfa66d2490c37ebcb5d0ea067256ec21" +source = "git+h...
1
1
1
f207f07568d70c37a03a61b24c276271d937cf10
Michael Howell
2016-03-30T07:18:40
servo: Merge #10279 - Fix #10258 (from notriddle:issue_10258); r=mbrubeck Respect border-box when computing the relative sizes of children. Source-Repo: https://github.com/servo/servo Source-Revision: 77444d00be7b6346b632385cb0c1f5e858ff50a2
diff --git a/layout/block.rs b/layout/block.rs index 9eab35bc4..72bd5de12 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -1308,8 +1308,15 @@ impl BlockFlow { let opaque_self = OpaqueFlow::from_flow(self); // Calculate non-auto block size to pass to children. + let box_border = match se...
1
8
1
752633b96e51a44a10e033b667987328bcc64ce6
Per Lundberg
2016-03-30T05:34:57
servo: Merge #10277 - Renamed TComputedValues to ComputedValues (from perlun:rename-tcomputedvalues-to-computedvalues); r=SimonSapin This is a followup to #10210, and a continuation of #10185. Source-Repo: https://github.com/servo/servo Source-Revision: 0ec96ac02a6c40ffda98e1074ceb9874dd1fb3cb
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 828d4c443..96eeebe84 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -41,7 +41,7 @@ use std::ops::{Deref, DerefMut}; use std::sync::Arc; use style::computed_values::{border_style, cursor, filter, image_rendering, mix_blend_mode...
32
62
62
d2b2880e25eee31e14ceffd3a73c4e09f6cb97e0
Josh Matthews
2016-03-30T03:14:37
servo: Merge #10269 - Fix some warnings (from jdm:cefwarn); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: f6d60a716c35f8ec968d259bfa1ffa606d8d15d1
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 17635f45f..09f786810 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -990,7 +990,7 @@ dependencies = [ [[package]] name = "js" version = "0.1.2" -source = "git+https://github.com/servo/rust-mozjs#d88f289340ff32f0aa118e4621e250c0fa2f71e0" +source = "git+h...
1
1
1
861f46fd77cc8183158740ceb24964b939b31de1
Matt Brubeck
2016-03-30T02:19:25
servo: Merge #10255 - Reduce size of layout::fragment::Fragment struct (from mbrubeck:box-unscanned); r=pcwalton This reduces the size of the SpecificFragmentInfo enum from 48 to 24. r? @pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 44b2ba25471e77b89b417161beb312a2985791a1
diff --git a/layout/construct.rs b/layout/construct.rs index 050eb9d98..1ce1c2f1b 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -297,7 +297,7 @@ impl<'a, ConcreteThreadSafeLayoutNode: ThreadSafeLayoutNode> let specific_fragment_info = match node.type_id() { Some(NodeTypeId::Element...
7
29
14
44dd83f304e968cbb92ee03e298be850a1506c93
Rebecca
2016-03-30T00:11:00
servo: Merge #10019 - Fix htmllabelelement click to activate correct element (from rebstar6:htmllabelclick); r=jdm Address https://github.com/servo/servo/issues/9928 Pass on label click to the label element's labeled control Source-Repo: https://github.com/servo/servo Source-Revision: 80d903a89725db081913f82515dc492...
diff --git a/script/dom/htmlinputelement.rs b/script/dom/htmlinputelement.rs index f75fd6704..e14a91ae9 100644 --- a/script/dom/htmlinputelement.rs +++ b/script/dom/htmlinputelement.rs @@ -862,10 +862,6 @@ impl VirtualMethods for HTMLInputElement { } if event.type_() == atom!("click") && !event.Defa...
2
9
10
bd0c068a08c87556db48d9d18a4a04d10c755069
Michael Howell
2016-03-29T21:33:05
servo: Merge #8496 - Fix #8443 (from notriddle:master); r=jdm When there are viewport constraints, use the new window size to compute the viewport instead of the old one. Source-Repo: https://github.com/servo/servo Source-Revision: 210a2431370bc963e736917cff0483dc5d06e9cd
diff --git a/style/selector_matching.rs b/style/selector_matching.rs index 90748ed7b..bb063c805 100644 --- a/style/selector_matching.rs +++ b/style/selector_matching.rs @@ -222,7 +222,7 @@ impl<Impl: SelectorImplExt> Stylist<Impl> { .flat_map(|s| s.effective_rules(&self.device).viewport()) .ca...
1
1
1
2c7507fed5bdbbcd9f886164576957c133e2495b
Ms2ger
2016-03-29T16:22:48
servo: Merge #10265 - Remove dead code that used to support the legacy reftest framework (from Ms2ger:reftest); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: e19d9c45965c05397172daae96f92133139d0d11
diff --git a/servo/Cargo.toml b/servo/Cargo.toml index 6591a0bd8..c03f2b3fd 100644 --- a/servo/Cargo.toml +++ b/servo/Cargo.toml @@ -48,11 +48,6 @@ path = "../../tests/compiletest/helper" [dev-dependencies.plugin_compiletest] path = "../../tests/compiletest/plugin" -[[test]] -name = "reftest" -path = "../../tests/r...
1
0
5
6a0ca9a0b8c4a528ebad94afdebbb8ad629c1913
Ms2ger
2016-03-29T14:37:54
servo: Merge #10267 - Simplify channel usage in canvas paint threads (from Ms2ger:canvas-channels); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: df808bed20a097719992f3c355bd164c4abc8913
diff --git a/canvas/canvas_paint_thread.rs b/canvas/canvas_paint_thread.rs index ceaee8085..390eee3ca 100644 --- a/canvas/canvas_paint_thread.rs +++ b/canvas/canvas_paint_thread.rs @@ -14,12 +14,10 @@ use euclid::size::Size2D; use gfx_traits::color; use ipc_channel::ipc::IpcSharedMemory; use ipc_channel::ipc::{self,...
2
7
15
6993fd4f365ccbbae1f3c8e795ca5c22f093677a
Eduard Burtescu
2016-03-29T11:41:12
servo: Merge #10247 - Use <base> in resolving url attributes (like "href") (from eddyb:document-base-url); r=Ms2ger Second take of #6303, now that the `base_url` infrastructure is in place. Source-Repo: https://github.com/servo/servo Source-Revision: c4e112a3be6930e6373483f6e42279d0682b3a48
diff --git a/script/dom/element.rs b/script/dom/element.rs index 4c0e03d6f..677f9acda 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -1078,7 +1078,7 @@ impl Element { } let url = self.get_string_attribute(local_name); let doc = document_from_node(self); - let base = ...
1
1
1
473999477999fe0bd7488245ed155e7858211cab
Patrick Walton
2016-03-29T10:34:01
servo: Merge #10248 - layout: Only take nonnegative margins into account when estimating inline placement of floats (from pcwalton:float-speculation-with-negative-margins); r=mbrubeck Otherwise, the heuristics can pass even when there are no floats, causing block formatting contexts to be speculated to be flowing arou...
diff --git a/layout/floats.rs b/layout/floats.rs index e3ae4716e..a31d7461d 100644 --- a/layout/floats.rs +++ b/layout/floats.rs @@ -459,8 +459,8 @@ impl SpeculatedFloatPlacement { } } - /// Given the speculated inline size of the floats in for this flow, computes the speculated - /// inline size ...
1
18
14
c58ed89b9046da61dc0a877c1581c1967db98aff
Matt Brubeck
2016-03-29T09:00:40
servo: Merge #10246 - Restore stripped whitespace before reflowing text fragments (from mbrubeck:strip-leading); r=pcwalton Fixes #10200. r? @pcwalton Note: The reftest uses a transition of non-zero duration, because I couldn't find any other way to reproduce the bug. Unfortunately this makes it unreliable in debug ...
diff --git a/layout/fragment.rs b/layout/fragment.rs index ba7ff2f71..82eaec1fe 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -1692,22 +1692,39 @@ impl Fragment { (&mut SpecificFragmentInfo::ScannedText(ref mut this_info), &SpecificFragmentInfo::ScannedText(ref other_info)) => {...
2
26
6
e59d3f1191a78bd5234a11ba36469e1ab79419a6
Michael Howell
2016-03-29T07:12:01
servo: Merge #8641 - No more headless compositor. Just the normal one (from notriddle:no_headless); r=glennw Fixes #8573 Source-Repo: https://github.com/servo/servo Source-Revision: aac2da75f40f4c55a4b450b6d9d134429fcf741e
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index b5df18b25..7f6c28c17 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -525,6 +525,7 @@ impl<Window: WindowMethods> IOCompositor<Window> { (Msg::InitializeLayersForPipeline(pipeline_id, epoch, properties), ...
17
89
245
4c3b32db6cd5c41a9c3cb300636e637326de2375
Eduard Burtescu
2016-03-29T06:08:13
servo: Merge #10253 - Update ipc-channel to fix leaks and spurious ENOBUFS (from eddyb:ipc-update); r=pcwalton Supersedes #10241 (fixes #10029). Also fixes #9555 (hopefully for good). Source-Repo: https://github.com/servo/servo Source-Revision: ddc57fe641c3940ecdad98297ac5b2ff95c3340c
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 2cf16116b..5b91a2c86 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -963,7 +963,7 @@ dependencies = [ [[package]] name = "ipc-channel" version = "0.2.1" -source = "git+https://github.com/servo/ipc-channel#ba07b349c831ea14ec3dba8c1f7f689044d7462b" +sourc...
1
1
1
49bfbd4bde2f55a6ed333356a18139da5e0852f7
Anthony Ramine
2016-03-29T04:25:17
servo: Merge #10240 - Bump websocket to 0.16.1 (from servo:websocket); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 074c7e8aa0cdfbd9ff558a0189e90e60f879a29b
diff --git a/net/Cargo.toml b/net/Cargo.toml index 2cc47ccf8..81795b40a 100644 --- a/net/Cargo.toml +++ b/net/Cargo.toml @@ -45,4 +45,4 @@ threadpool = "1.0" time = "0.1.17" url = {version = "0.5.7", features = ["heap_size"]} uuid = "0.1.16" -websocket = "0.15.2" +websocket = "0.16.1" diff --git a/net_traits/Cargo.t...
4
7
7
cfa4ccefea0479c3d702f8c8047ebe1107ebfc33
Paul Rouget
2016-03-28T17:53:25
servo: Merge #10231 - Make selection blue instead of orange (from paulrouget:selectionColor); r=mbrubeck PR https://github.com/servo/servo/pull/10176 add a background color for selected text. It uses a builtin color until `::selection` is supported. ~~Orange makes sense for Linux. Let's make it blue for windows and ma...
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index de6e70716..c10d3853e 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -105,8 +105,8 @@ impl<'a> DisplayListBuildState<'a> { const INSERTION_POINT_LOGICAL_WIDTH: Au = Au(1 * AU_PER_PX); // Colors for...
1
2
2
137568fc70d3164d0ef7e7d85b3d357e53174940
Matt Brubeck
2016-03-28T15:13:11
servo: Merge #10182 - Fix delete_char when selection range is empty (from mbrubeck:delete_char); r=jdm An empty selection range should be treated the same as no selection. Fixes browserhtml/browserhtml#930. r? @jdm Source-Repo: https://github.com/servo/servo Source-Revision: db95de6e581f5bf03406264c7f690bca5bb4701b
diff --git a/script/textinput.rs b/script/textinput.rs index 343b114bf..cc5936d42 100644 --- a/script/textinput.rs +++ b/script/textinput.rs @@ -21,7 +21,7 @@ pub enum Selection { NotSelected } -#[derive(JSTraceable, Copy, Clone, HeapSizeOf)] +#[derive(JSTraceable, Copy, Clone, HeapSizeOf, PartialEq)] pub stru...
1
2
2
5912d65324e2d11e0dbe169bad0578ea94c59f23
Paul Rouget
2016-03-28T14:18:53
servo: Merge #10068 - Disable cross origin check for mozbrowser-enabled top level pipelines (from paulrouget:disableXOriginCheck); r=jdm Closes https://github.com/servo/servo/issues/9582 Source-Repo: https://github.com/servo/servo Source-Revision: 37799a40251ae4df695d2257f57063c37d739329
diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs index 8d1456a73..20a729c70 100644 --- a/script/dom/xmlhttprequest.rs +++ b/script/dom/xmlhttprequest.rs @@ -62,6 +62,7 @@ use time; use timers::{OneshotTimerCallback, OneshotTimerHandle}; use url::Url; use url::percent_encoding::{utf8_percent_e...
1
26
6
4fde696c5906287f10b6f3296b791818b68a7097
faineance
2016-03-27T22:42:31
servo: Merge #10222 - Use self.0 instead of destructuring single item tuple structs (from faineance:master); r=KiChjang Closes #9698. Source-Repo: https://github.com/servo/servo Source-Revision: b97ffffb48080a0b4769f8609a27a68145042945
diff --git a/compositing/surface_map.rs b/compositing/surface_map.rs index d5f0cfba2..97b10a067 100644 --- a/compositing/surface_map.rs +++ b/compositing/surface_map.rs @@ -29,8 +29,7 @@ struct SurfaceKey([i32; 2]); impl Hash for SurfaceKey { fn hash<H: Hasher>(&self, state: &mut H) { - let SurfaceKey(re...
17
37
71
130f461bd0fd1b13b2140e87b7e80e5b9eee3b0c
Emilio Cobos Álvarez
2016-03-27T11:43:05
servo: Merge #10214 - Update angle to trunk (from emilio:angleup); r=KiChjang Related angle PR: https://github.com/emilio/angle/pull/7 I've tested this locally on Linux, and on Mac and Linux via Travis. It should keep working on windows but who knows... Let appveyor do its work. Source-Repo: https://github.com/servo...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 47422c358..df4759a0c 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -72,7 +72,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "angle" version = "0.1.0" -source = "git+https://github.com/emilio/angle?branch=servo#...
1
1
1
dc9fc202332ddcec2dfdcf5190f774a1b522d91f
MovingtoMars
2016-03-27T09:21:34
servo: Merge #10221 - Fail cleanly instead of panicking for incorrect option arguments (from MovingtoMars:opt_parse_err); r=Manishearth Related #9927 Source-Repo: https://github.com/servo/servo Source-Revision: 44c972a86808acede828fdb3c80b6d8c1ed061c5
diff --git a/util/opts.rs b/util/opts.rs index 2a146a276..78ac6f9ce 100644 --- a/util/opts.rs +++ b/util/opts.rs @@ -635,43 +635,51 @@ pub fn from_cmdline_args(args: &[String]) -> ArgumentParsingResult { }; let tile_size: usize = match opt_match.opt_str("s") { - Some(tile_size_str) => tile_size_str.p...
1
19
11
d5a10ff0bc97102276a4de412dbb29785340b929
Ms2ger
2016-03-26T17:52:24
servo: Merge #10191 - Update xml5ever (from servo:xml); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: db13ec48b142ba5f4a5ce2a906acb6b7ca6add57
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 5eff9d34a..47422c358 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2401,7 +2401,7 @@ dependencies = [ [[package]] name = "xml5ever" version = "0.1.1" -source = "git+https://github.com/Ygg01/xml5ever#6c7017063dc1cfd64f08b7701a689e74ab45588d" +source = ...
1
1
1
506b35177e87042aaf9fa26e3113dc32f0bb05eb
Alan Jeffrey
2016-03-26T15:45:59
servo: Merge #10179 - Added ability to randomly kill pipelines to the constellation (from asajeffrey:chaotic-good); r=emilio Added flags: * `--random-pipeline-closure-probability`: probability of each event triggering a forced exit of a randomly chosen pipeline. * `--random-pipeline-closure-seed`: seed to use for the...
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index da80cec1c..7a114c518 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -95,6 +95,7 @@ gleam = "0.2.8" image = "0.7" log = "0.3.5" num = "0.1.24" +rand = "0.3" serde = "0.7" serde_macros = "0.7" time = "0.1.17" diff --git a/compos...
6
82
19
2335a3060c62190af55a09ff199e6e6fedb40d3d
Connor Brewster
2016-03-26T13:36:52
servo: Merge #10188 - Add Http Global State Object (from cbrewster:http-global-state); r=jdm This adds a new HttpState object which holds common http state(#10175). This reduces the amount of work that is required to add extra things to the Http state. The HttpState object currently holds: ``` hsts_list: Arc::new(RwL...
diff --git a/net/http_loader.rs b/net/http_loader.rs index dec9e2fd2..52f56d1d1 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -78,9 +78,7 @@ pub fn create_http_connector() -> Arc<Pool<Connector>> { } pub fn factory(user_agent: String, - hsts_list: Arc<RwLock<HSTSList>>, - c...
2
42
31
dc9824f3c5ffc0a83b50e209a81e235420ba0dff
Matt Brubeck
2016-03-26T02:46:20
servo: Merge #10176 - Highlight selected text in input fields (from mbrubeck:selection-range); r=pcwalton Fixes #9993. This does not yet allow stylesheets to set the selection colors; instead it uses a hard-coded orange background and white foreground. r? @pcwalton Source-Repo: https://github.com/servo/servo Source...
diff --git a/layout/construct.rs b/layout/construct.rs index aedbeaf04..c96450111 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -709,13 +709,13 @@ impl<'a, ConcreteThreadSafeLayoutNode: ThreadSafeLayoutNode> return } - let insertion_point = node.insertion_point(); + ...
12
168
77
0f485f78b4fa4cea87f449db9930636b8506cce0
Patrick Walton
2016-03-26T01:38:41
servo: Merge #10085 - layout: Rewrite the block formatting context/float inline-size speculation code (from pcwalton:floats-inout-revamp); r=mbrubeck The old code tried to do the speculation as a single bottom-up pass after intrinsic inline-size calculation, which was unable to handle cases like this: <div> ...
diff --git a/layout/block.rs b/layout/block.rs index 06f418614..b987313b2 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -33,10 +33,7 @@ use display_list_builder::BlockFlowDisplayListBuilding; use display_list_builder::{BorderPaintingMode, DisplayListBuildState, FragmentDisplayListBuilding}; use euclid::{Point...
12
254
184
05dfe4b6970a5161f62faa586d59a106b3676262
Patrick Walton
2016-03-26T00:18:25
servo: Merge #10198 - layout: Allow floats to have negative ceilings due to negative margins (from pcwalton:negative-ceiling); r=mbrubeck This fixes `margin-collapse-104.htm`, which is currently accidentally passing due to lack of #10085. When that PR lands, then that will become a representative test case. r? @mbrub...
diff --git a/layout/floats.rs b/layout/floats.rs index 44704b222..4ef48fe8a 100644 --- a/layout/floats.rs +++ b/layout/floats.rs @@ -56,14 +56,14 @@ struct FloatList { /// Information about each of the floats here. floats: PersistentList<Float>, /// Cached copy of the maximum block-start offset of the fl...
2
29
20
dd63fd26f72d5c2e7f4ee4c1d85d1b4481f32c6e
Matt Brubeck
2016-03-25T22:17:05
servo: Merge #10197 - Fix forced repaint on image load (from mbrubeck:force-repaint); r=pcwalton After #10021, `LayoutThread::repaint` no longer forced a repaint because of the `restyle_damage` check. This patch adds the correct restyle damage and fixes #10163. r? @pcwalton Source-Repo: https://github.com/servo/ser...
diff --git a/layout/layout_thread.rs b/layout/layout_thread.rs index 646defb49..df555b1d4 100644 --- a/layout/layout_thread.rs +++ b/layout/layout_thread.rs @@ -593,6 +593,11 @@ impl LayoutThread { fn repaint<'a, 'b>(&mut self, possibly_locked_rw_data: &mut RwData<'a, 'b>) -> bool { let mut rw_data = poss...
1
5
0
95bce9aa525136f3df4166a68e4734e77c198f07
Stjepan Glavina
2016-03-25T07:12:48
servo: Merge #10154 - Fix #10147: Correctly handle flag local_urls_only (from stjepang:fix-local-urls-only-10147); r=KiChjang In function Request::fetch_main, flag local_urls_only (if set) should allow fetching local urls only. Before this change, the flag had the inverse behaviour. Fixes #10147. Test with: `./mach t...
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index 976b1e0b5..f55f1b1da 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -112,9 +112,9 @@ fn main_fetch(request: Rc<Request>, cors_flag: bool, recursive_flag: bool) -> Re // Step 2 if request.local_urls_only { match &*request....
2
4
4
d0f9c8bc5924c203e93a1af9dfee6214276f9a45
Lars Bergstrom
2016-03-25T01:00:30
servo: Merge #10174 - Update servo-egl to fix CEF linkage (from larsbergstrom:update_egl); r=zmike Fixes #10130 r? @zmike Source-Repo: https://github.com/servo/servo Source-Revision: 2f6388c3016f9ef5dabccb35b3bd1cde5e6b0c3c
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 9d4b8f703..5606eea21 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -110,7 +110,7 @@ dependencies = [ "libc 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "serde 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde_...
1
5
5
1189503a666f03de6f1bb54c0ca868b6f7b61539
Daniel
2016-03-24T18:24:13
servo: Merge #10111 - add auth cache to resources + set auth header from it if url does not have creds (from DDEFISHER:master); r=jdm initial attempt of - in resource_thread.rs, define an HTTP authorization cache storage (username, password, URL) and instantiate it like the cookie_storage member (inside an Arc<Rwlock...
diff --git a/net/http_loader.rs b/net/http_loader.rs index e0227a063..dec9e2fd2 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -31,10 +31,10 @@ use net_traits::response::HttpsState; use net_traits::{CookieSource, IncludeSubdomains, LoadConsumer, LoadContext, LoadData, Metadata}; use openssl::ssl::error::...
2
43
9
52dbf0ddc04e319698912b465e59a15dc4a14b0b
Corey Farwell
2016-03-24T15:19:50
servo: Merge #10171 - Move `util::str::parse_length` into 'style' component (from frewsxcv:parse-length-style); r=mbrubeck The function is only used in the 'style' component, so we'll move it there alongside other relevant parse functions. Source-Repo: https://github.com/servo/servo Source-Revision: f2f05869d6ccd445d...
diff --git a/style/attr.rs b/style/attr.rs index 76918f0c4..67d407505 100644 --- a/style/attr.rs +++ b/style/attr.rs @@ -8,10 +8,11 @@ use euclid::num::Zero; use num::ToPrimitive; use std::ascii::AsciiExt; use std::ops::Deref; +use std::str::FromStr; use string_cache::{Atom, Namespace}; use url::Url; use util::st...
2
72
71
bafd78a31466508e57c7bdf252438fac9dd5ae3f
Ms2ger
2016-03-24T12:52:23
servo: Merge #10168 - Update gaol (from Ms2ger:gaol); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: a8264ecc1f517008168d1f02cad4aeec4eebe627
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 941079437..9d4b8f703 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -644,7 +644,7 @@ dependencies = [ [[package]] name = "gaol" version = "0.0.1" -source = "git+https://github.com/servo/gaol#5cfbd4d148210d22f945f8809ac45c6795e14aaf" +source = "git+https...
1
1
1
ae5b7f615f3cc2a06d830889e88e7de4d660654b
Stjepan Glavina
2016-03-24T11:10:19
servo: Merge #10167 - Fix fetching about:blank (from stjepang:fix-aboutblank-body); r=KiChjang When fetching about:blank, response body should be the empty byte sequence. Spec: https://fetch.spec.whatwg.org/#concept-basic-fetch Before this change, response body would be set to `ResponseBody::Empty`, and then fetching...
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index 481da0310..976b1e0b5 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -294,6 +294,7 @@ fn basic_fetch(request: Rc<Request>) -> Response { response.headers.set(ContentType(Mime( TopLevel::Text, Sub...
1
1
0
849104a761504fbafe8a6a2d8c108b4be6edf3c0
Anthony Ramine
2016-03-24T10:18:23
servo: Merge #10158 - Allow Firefox to be able to connect to devtools again (from nox:devtools); r=Ms2ger This doesn't fix the performance tab, but at least lets Firefox initialise the devtools window. Source-Repo: https://github.com/servo/servo Source-Revision: 5faab270c6babaaa5ee6b75fecf537e7a648d752
diff --git a/devtools/actors/console.rs b/devtools/actors/console.rs index 31c404966..427e7eee0 100644 --- a/devtools/actors/console.rs +++ b/devtools/actors/console.rs @@ -77,6 +77,12 @@ struct EvaluateJSReply { helperResult: Json, } +#[derive(RustcEncodable)] +struct SetPreferencesReply { + from: String, +...
5
122
9
7c92f944f45961db574aff05f7b4b6cb485d5948
Emilio Cobos Álvarez
2016-03-24T03:14:40
servo: Merge #10150 - Canvas cleanup (from emilio:canvas-cleanup); r=jdm This PR cleans up the layerization infrastructure for canvas, which was unused, and removes unused dependencies. It also takes in account my recent username change to update angle's dependency (offscreen_gl_context requires extra work due to web...
diff --git a/canvas/canvas_paint_thread.rs b/canvas/canvas_paint_thread.rs index 85d92ee1e..ceaee8085 100644 --- a/canvas/canvas_paint_thread.rs +++ b/canvas/canvas_paint_thread.rs @@ -15,12 +15,11 @@ use gfx_traits::color; use ipc_channel::ipc::IpcSharedMemory; use ipc_channel::ipc::{self, IpcSender}; use ipc_chann...
17
17
120
df9ff17132c3548c946c0d3fe49429070bc910e2
Connor Brewster
2016-03-24T00:58:58
servo: Merge #10112 - Fixed jump tag issue (from cbrewster:jump-tag-fix); r=glennw Fixes the issue where once a jump tag is clicked, the viewport rects are not updated. #9671 Source-Repo: https://github.com/servo/servo Source-Revision: f1baba973f9bc788a65d77b59528b3719c198315
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index c3f7b1918..b5df18b25 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -1144,7 +1144,8 @@ impl<Window: WindowMethods> IOCompositor<Window> { layer_id: LayerId, ...
1
2
1
cb562f624607b8b34ca2ace665d2eee052eebdc5
Manish Goregaokar
2016-03-23T21:05:49
servo: Merge #10122 - Support navigation keys (from Manishearth:nav-keys); r=asajeffrey Rather useful. If most people have these keys on their keyboard, I'd prefer to remove the backspace navigation handler. I've never used it on purpose, but it gets hit often by accident when an input widget isn't focused (either du...
diff --git a/msg/constellation_msg.rs b/msg/constellation_msg.rs index 34512fedf..851857ee7 100644 --- a/msg/constellation_msg.rs +++ b/msg/constellation_msg.rs @@ -186,6 +186,9 @@ pub enum Key { RightAlt, RightSuper, Menu, + + NavigateBackward, + NavigateForward, } bitflags! { diff --git a/scr...
2
13
3
1ed64b1f661eabca2a24f4863fc495dc846fd3d4
Ms2ger
2016-03-23T19:16:31
servo: Merge #10135 - Cleanup traversal.rs (from Ms2ger:traversal); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: 23aa4fa1f1577f33dd6a7310106350ef6dcacf38
diff --git a/layout/traversal.rs b/layout/traversal.rs index 6c774b76b..241334814 100644 --- a/layout/traversal.rs +++ b/layout/traversal.rs @@ -4,9 +4,6 @@ //! Traversals over the DOM and flow trees, running the layout computations. -// For thread_local. -#![allow(unsafe_code)] - use construct::FlowConstructor; ...
1
1
4
d12ade32572ecd20b42172f92894d679d22c7369
Paul Rouget
2016-03-23T11:58:31
servo: Merge #10138 - browserhtml version bump (from paulrouget:browserhtmlVersionBump); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: feb4271f759bebe03543ca3cd5b1b19d8af04a88
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index fe30c990a..28b51b554 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -4,7 +4,7 @@ version = "0.0.1" dependencies = [ "android_glue 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "bitflags 0.3.3 (registry+https://github.com/rust-lang/cr...
1
3
3
dd34e1d558e22d7d1920c5c74e8b69a00dc6f6f8
Patrick Walton
2016-03-23T02:36:31
servo: Merge #9947 - Faster display list transfer (from pcwalton:faster-display-list-transfer); r=glennw This series of commits improves performance of display list construction in browser.html by about 3x when using WebRender. It requires https://github.com/servo/webrender_traits/pull/18 and https://github.com/servo...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 97e2260ba..7bba2ce0e 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -24,8 +24,9 @@ use euclid::{Matrix2D, Matrix4, Point2D, Rect, SideOffsets2D, Size2D}; use fnv::FnvHasher; use gfx_traits::{LayerId, ScrollPolicy}; use heapsi...
9
254
126
a3d58aebf134353bd9e450d8a89670b5d4a35ce3
Shing Lyu
2016-03-22T18:42:57
servo: Merge #9518 - Implemented XMLHttpRequest.responseURL (from shinglyu:responseurl); r=jdm Resolves #8830 Source-Repo: https://github.com/servo/servo Source-Revision: 50193e9119c567c2c511a53749ff188b9c7ec49e
diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs index 65ccb435d..8d1456a73 100644 --- a/script/dom/xmlhttprequest.rs +++ b/script/dom/xmlhttprequest.rs @@ -118,7 +118,7 @@ pub struct XMLHttpRequest { timeout: Cell<u32>, with_credentials: Cell<bool>, upload: JS<XMLHttpRequestUploa...
1
6
3
a3837fda09a7118ae4ff1115216e09cb1e0834bf
Matt Brubeck
2016-03-22T13:28:47
servo: Merge #10105 - Don't re-add stylesheets to recompute vw/vh lengths (from mbrubeck:dirty-viewport-percentages); r=SimonSapin This is a follow-up to #9876. It avoids clearing and rebuilding SelectorMaps when vh and vw units need to be recomputed. Instead it just dirties all nodes, to force elements to be re-casc...
diff --git a/layout/layout_thread.rs b/layout/layout_thread.rs index 1c41987b2..02acf19ab 100644 --- a/layout/layout_thread.rs +++ b/layout/layout_thread.rs @@ -1056,6 +1056,8 @@ impl LayoutThread { }; // Handle conditions where the entire flow tree is invalid. + let mut needs_dirtying = fals...
2
8
5
a13f7658bd079eceed63f8fadc7ee9d388dcaa02
Ms2ger
2016-03-22T12:40:59
servo: Merge #10120 - Update objc crates (from servo:objc); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 327f1c1eb8a31f1e595d1996b1a8153701ebfa2f
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index bb12fcf5b..8101ecc0d 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -221,13 +221,13 @@ dependencies = [ [[package]] name = "clipboard" -version = "0.1.0" -source = "git+https://github.com/aweinstock314/rust-clipboard#241c3f0fc5843db861bc0b44d682bf501e6...
1
21
22
8c11162c3d5721f2e7aba641d55271d73a4b6574
Matt Brubeck
2016-03-22T04:59:48
servo: Merge #10109 - Fixes for compute_damage (from mbrubeck:compute_damage_short_circuit); r=pcwalton A few changes: * Make `compute_damage` short-circuit more, by skipping comparisons if they will only set flags that are already set. * Update some obsolete comments. * Add a bunch of missing properties to `comput...
diff --git a/layout/incremental.rs b/layout/incremental.rs index 9fbd5e6ce..d909192c0 100644 --- a/layout/incremental.rs +++ b/layout/incremental.rs @@ -145,6 +145,9 @@ macro_rules! add_if_not_equal( [ $($effect:ident),* ], [ $($style_struct_getter:ident.$name:ident),* ]) => ({ if $( ($old.$style_struct_...
1
63
38
185c1924c2cc50b9f9b14ec3334b83162861538b
Ms2ger
2016-03-22T03:20:28
servo: Merge #10106 - Remove renderer ids (from Ms2ger:renderer-id); r=ecoal95 Source-Repo: https://github.com/servo/servo Source-Revision: 767b11cd676327cfb71f21d2cbcee8c16a74e2b3
diff --git a/canvas/canvas_paint_thread.rs b/canvas/canvas_paint_thread.rs index 1bcf294d3..85d92ee1e 100644 --- a/canvas/canvas_paint_thread.rs +++ b/canvas/canvas_paint_thread.rs @@ -125,12 +125,12 @@ impl<'a> CanvasPaintThread<'a> { /// sender for it. pub fn start(size: Size2D<i32>, webre...
8
26
68
28ea048435a5a7c2980f820ee719de49988a3c1b
Pawel Kondzior
2016-03-22T01:24:11
servo: Merge #10088 - Report memory usage from LayoutThreadData Stylist [#7038] (from pkondzior:7038-report-memory-usage-in-layout-thread-data-stylist); r=ecoal95 @jdm PTAL I'm not sure what is the approach of updating cargo components here, I've made a pull request https://github.com/servo/heapsize/pull/54 but it has...
diff --git a/layout/layout_thread.rs b/layout/layout_thread.rs index f473979c7..1c41987b2 100644 --- a/layout/layout_thread.rs +++ b/layout/layout_thread.rs @@ -689,6 +689,13 @@ impl LayoutThread { size: display_list.map_or(0, |sc| sc.heap_size_of_children()), }); + let stylist = rw_data....
8
74
65
c308a9e20e95308e0e52db778496ab882e9cb8ed
Patrick Walton
2016-03-21T22:07:49
servo: Merge #10021 - layout: Skip layout traversals that obviously won't do anything (from pcwalton:skip-layout-traversals); r=mbrubeck This reduces CPU usage when mousing over simple pages (example.com). More complex pages (Wikipedia) still reflow a lot due to other bugs. Additionally, this change causes Servo to s...
diff --git a/layout/incremental.rs b/layout/incremental.rs index 362ec2a47..9fbd5e6ce 100644 --- a/layout/incremental.rs +++ b/layout/incremental.rs @@ -167,7 +167,8 @@ pub fn compute_damage(old: Option<&Arc<ComputedValues>>, new: &ComputedValues) - [ REPAINT ], [ get_color.color, get_ba...
4
72
57
3b4875ce1f415a7e01e6efcf5d0cba7b491ae882
Keith Yeung
2016-03-21T16:39:47
servo: Merge #10094 - Remove HTMLCollectionElementsRevIter (from KiChjang:remove-extra-iter); r=asajeffrey It's almost a duplicate of HTMLCollectionElementsIter, aside from that its node_iter is a PrecedingNodeIter. We can simply use dynamic dispatch for node_iter instead of making it a concrete type. Source-Repo: ht...
diff --git a/script/dom/htmlcollection.rs b/script/dom/htmlcollection.rs index d36fb177e..25e17586f 100644 --- a/script/dom/htmlcollection.rs +++ b/script/dom/htmlcollection.rs @@ -11,7 +11,7 @@ use dom::bindings::reflector::{Reflector, reflect_dom_object}; use dom::bindings::trace::JSTraceable; use dom::bindings::xm...
1
6
25
67d875daeed5e22056886cc11563af2ca0e33e7a
Ms2ger
2016-03-20T09:06:17
servo: Merge #10076 - Update to Rust 2016-03-18 (from servo:rustup); r=larsbergstrom,manishearth Source-Repo: https://github.com/servo/servo Source-Revision: aa35d7721b0e1e7893e48af1eb91bf8ad2495d46
diff --git a/plugins/lints/unrooted_must_root.rs b/plugins/lints/unrooted_must_root.rs index 71cb3b246..0bd57774d 100644 --- a/plugins/lints/unrooted_must_root.rs +++ b/plugins/lints/unrooted_must_root.rs @@ -66,6 +66,7 @@ fn is_unrooted_ty(cx: &LateContext, ty: &ty::TyS, in_new_function: bool) -> bool ty:...
3
64
57
201c34d43d1a636ee0bfadc65adf5be9d215296c
Michael Howell
2016-03-20T07:57:59
servo: Merge #9586 - Details ui (from notriddle:details_ui); r=SimonSapin Requires a patch to rust-selectors, and doesn't currently recalculate the styles correctly (which is needed to make actual toggling work correctly). Still trying to figure out what it takes to get style recalc to do what this needs. Source-Rep...
diff --git a/layout/construct.rs b/layout/construct.rs index 3f91bdad3..25988b7eb 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -676,7 +676,7 @@ impl<'a, ConcreteThreadSafeLayoutNode: ThreadSafeLayoutNode> HTMLElementTypeId::HTMLInputElement))) || node.type_id() == So...
7
184
28
341ae45b1599cb43970c7c3c550e4b504ac6599a
Daniel
2016-03-20T06:55:10
servo: Merge #10087 - add a new command line flag --profile-dir [path] (from DDEFISHER:master); r=jdm add a new command line flag --profile-dir [path] that stores an optional directory path in the Opts struct in opts.rs, creating the directory if it does not exist. For the Implement HTTP authorization UI and persiste...
diff --git a/util/opts.rs b/util/opts.rs index 1b9129b7c..44d458de6 100644 --- a/util/opts.rs +++ b/util/opts.rs @@ -14,6 +14,7 @@ use resource_files::set_resources_path; use std::cmp; use std::default::Default; use std::env; +use std::fs; use std::fs::File; use std::io::{self, Read, Write}; use std::path::Path; ...
1
14
0
767490f5ef01db9379d27d15e7a96632d4ba58c7
Olaf Buddenhagen
2016-03-20T04:54:40
servo: Merge #10092 - Update ipc-channel for another intermittent bug fix (from antrik:update-ipc_channel-4); r=KiChjang This pulls in https://github.com/servo/ipc-channel/pull/52 , and especially 8e2357604f7af8869b489b9682a2cf8b58177637, which fixes another likely cause of intermittent failures on GNU/Linux. Source-...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index ce25b3eba..0563b37d6 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -960,7 +960,7 @@ dependencies = [ [[package]] name = "ipc-channel" version = "0.2.1" -source = "git+https://github.com/servo/ipc-channel#6ad3885772bc966abd0b6b89d71c218c3f5838cd" +sourc...
1
1
1
f15f2522b78034e8965907671dc2802c68d4a3c3
Ms2ger
2016-03-20T02:30:53
servo: Merge #10075 - Deny unsafe code in more crates (from Ms2ger:deny-unsafe); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 8c92e3f32b9aa6a75dc8980da49359ea63f9d67a
diff --git a/canvas/lib.rs b/canvas/lib.rs index 5ee820530..319cba265 100644 --- a/canvas/lib.rs +++ b/canvas/lib.rs @@ -5,6 +5,8 @@ #![feature(plugin)] #![plugin(plugins)] +#![deny(unsafe_code)] + extern crate azure; extern crate canvas_traits; extern crate core; diff --git a/canvas/webgl_paint_thread.rs b/canv...
17
44
3
f5837938f02363ad80379aceee900e5bca9ccf9f
Ms2ger
2016-03-20T00:58:25
servo: Merge #10079 - Implement encoding determination for external scripts (from servo:script-encoding); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 8e95f54501efd74007bb19009b6d2b7522872d57
diff --git a/script/dom/document.rs b/script/dom/document.rs index db565414c..ddaebcd35 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -76,6 +76,8 @@ use dom::touchlist::TouchList; use dom::treewalker::TreeWalker; use dom::uievent::UIEvent; use dom::window::{ReflowReason, Window}; +use encoding:...
4
53
48
87ccea047c68e7483cb03f75a1e4c4ae803352aa
Matt Brubeck
2016-03-19T20:50:54
servo: Merge #9876 - Recompute styles on viewport size change if they contain viewport percentages (from mbrubeck:seen-viewport-percentages); r=SimonSapin Fixes #8754. Depends on servo/rust-cssparser#99. r? @SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: a4251c832d605a02d6c82fc188d174636759...
diff --git a/script/dom/htmlmetaelement.rs b/script/dom/htmlmetaelement.rs index 779c5c79e..73cc5c73a 100644 --- a/script/dom/htmlmetaelement.rs +++ b/script/dom/htmlmetaelement.rs @@ -73,6 +73,9 @@ impl HTMLMetaElement { rules: vec![CSSRule::Viewport(translated_rule)], ...
5
46
33
a2dc5fbf3d6d5f228dd50194264760288cbe98f6
Patrick Walton
2016-03-19T19:23:27
servo: Merge #10064 - layout: Move overflow calculation to be a separate, sequential, bottom-up pass (from pcwalton:overflow-bottom-up); r=mbrubeck Right now, the only reason that overflow calculation works is that we rely on script inducing extra reflows that are sent for display. This was preventing #10021 from land...
diff --git a/layout/incremental.rs b/layout/incremental.rs index 9bf4aff2e..362ec2a47 100644 --- a/layout/incremental.rs +++ b/layout/incremental.rs @@ -16,27 +16,31 @@ bitflags! { #[doc = "Currently unused; need to decide how this propagates."] const REPAINT = 0x01, + #[doc = "Recompute the ...
6
57
17
a9ffd1e99048b7e823b81ba7ba9a4393e73535a2
Alexander Popiak
2016-03-19T17:28:21
servo: Merge #10066 - implement and use From<bool> for enum and back (from apopiak:fromBool); r=asajeffrey as discussed in the #servo channel on IRC: implement and use `From<bool>` for `EventBubbles` (and back direction) implement and use `From<bool>` for `EventCancelable` (and back direction) Source-Repo: https://...
diff --git a/script/dom/closeevent.rs b/script/dom/closeevent.rs index edf0c6199..b7181baa2 100644 --- a/script/dom/closeevent.rs +++ b/script/dom/closeevent.rs @@ -46,8 +46,8 @@ impl CloseEvent { { let event = ev.upcast::<Event>(); event.init_event(type_, - ...
10
68
78
9402b32d0d2413c6a496859b1499ee368b317078
Simon Sapin
2016-03-19T02:38:56
servo: Merge #9929 - Refactor the cascade (from servo:cascade); r=pcwalton Converting the specified value of some properties into a computed value depends on the value of other properties. For example, the `em` unit of any length depends on the `font-size` property. Previously, we would do a first pass over applicabl...
diff --git a/style/properties.mako.rs b/style/properties.mako.rs index 7a453bd8a..1230ea6f3 100644 --- a/style/properties.mako.rs +++ b/style/properties.mako.rs @@ -33,7 +33,7 @@ use selectors::matching::DeclarationBlock; use stylesheets::Origin; use values::AuExtensionMethods; use values::computed::{self, ToCompute...
3
227
379
6a9971d9009a0ffad114f5462e19752ee6763811
Corey Farwell
2016-03-19T01:16:56
servo: Merge #9788 - Use external 'threadpool' crate, remove in-tree utility (from servo:threadpool); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 9e0c73c8f3b1941b01c705066815303d59221ffd
diff --git a/net/Cargo.toml b/net/Cargo.toml index bc324c95c..2cc47ccf8 100644 --- a/net/Cargo.toml +++ b/net/Cargo.toml @@ -41,6 +41,7 @@ log = "0.3.5" mime_guess = "1.6.0" openssl = "0.7.6" rustc-serialize = "0.3" +threadpool = "1.0" time = "0.1.17" url = {version = "0.5.7", features = ["heap_size"]} uuid = "0....
6
9
58
bc9958908551f221d975e5f560267d4bfccb68dc
Ms2ger
2016-03-18T11:39:24
servo: Merge #10070 - Disallow unsafe code in net and net_traits (from Ms2ger:unsafe-net); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: e551ea73226404152e02c3445f4f91e639bf66ce
diff --git a/net/image_cache_thread.rs b/net/image_cache_thread.rs index 07868c4a4..46c0037d1 100644 --- a/net/image_cache_thread.rs +++ b/net/image_cache_thread.rs @@ -18,7 +18,7 @@ use std::fs::File; use std::io::Read; use std::mem; use std::sync::Arc; -use std::sync::mpsc::{Sender, channel}; +use std::sync::mpsc:...
4
40
14
91fc31606f8f84efa479f7924cef8e1fb0a532f5
David Bonet
2016-03-17T20:44:22
servo: Merge #10061 - Remove overflow references on AssignBSizesAndStoreOverflow code (from DavidBM:clean_code_removing_overflow_in_assign_bsizes); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: ce2da28a00036e614cee211f4b279dc8e7eac9c1
diff --git a/layout/parallel.rs b/layout/parallel.rs index 39986d865..628f0c4e0 100644 --- a/layout/parallel.rs +++ b/layout/parallel.rs @@ -17,7 +17,7 @@ use std::sync::atomic::{AtomicIsize, Ordering}; use style::dom::{TNode, UnsafeNode}; use style::parallel::{CHUNK_SIZE, WorkQueueData}; use style::parallel::{run_q...
3
10
11
5269952ea026d9a4571cb2f2414da78a63984be7
Saurav Sachidanand
2016-03-17T19:01:24
servo: Merge #10014 - Update WebSocket blocked ports to match the Fetch spec (from saurvs:pr1); r=KiChjang Adresses #9949. This adds a function that tests whether a request should be blocked or not based on it's url's scheme and port. It also adds testing for port restriction to the `main_fetch` method. More info in ...
diff --git a/script/dom/websocket.rs b/script/dom/websocket.rs index a6d9d9ae3..e2a29229e 100644 --- a/script/dom/websocket.rs +++ b/script/dom/websocket.rs @@ -55,8 +55,8 @@ enum WebSocketRequestState { Closed = 3, } -// list of blacklist ports according to -// http://mxr.mozilla.org/mozilla-central/source/net...
1
14
8
4424d16d7b2d63cdec830dbc44cfa235324061db
Patrick Walton
2016-03-16T23:43:58
servo: Merge #10039 - servo: Update WebRender to pick up the blend mode fix (from pcwalton:update-webrender-again); r=glennw Closes #9877. r? @glennw Source-Repo: https://github.com/servo/servo Source-Revision: e273517fe06720afe0ef74815cce5e007df7dc3d
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 0190a6a60..89472231c 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2294,7 +2294,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.1.0" -source = "git+https://github.com/servo/webrender#ce55aca74c7628ee05b57b31a3f7ffc9ebf132cb" +source ...
1
2
1
378cb599a85bda53ca9413073d7e873a5e44a7f3
Patrick Walton
2016-03-16T21:25:41
servo: Merge #10037 - servo: Update Glutin (from pcwalton:update-glutin); r=mbrubeck Closes #9855. Closes #9878. r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: b7304f11529f92b4b08b5bac59a16c331c6ee774
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index fdb338872..0190a6a60 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -788,7 +788,7 @@ dependencies = [ "net_traits 0.0.1", "script_traits 0.0.1", "servo-egl 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "servo-glutin 0.4.10 (regist...
1
3
3
228933ef95f3bd2d3d3c415ac24de0d2ae3e34a2
Saurav Sachidanand
2016-03-16T20:02:58
servo: Merge #10035 - Resets selection in textinput when its content is changed (from saurvs:master); r=jdm Fixes https://github.com/servo/servo/issues/10005. Source-Repo: https://github.com/servo/servo Source-Revision: 909ff4446a8197490af7f2af213dfa2ac35ae0a6
diff --git a/script/textinput.rs b/script/textinput.rs index f407592a0..35b49ee57 100644 --- a/script/textinput.rs +++ b/script/textinput.rs @@ -497,6 +497,7 @@ impl<T: ClipboardProvider> TextInput<T> { }; self.edit_point.line = min(self.edit_point.line, self.lines.len() - 1); self.edit_point...
1
1
0
1d3b2c7a36e55f74fc7ceab5af5be7bfa174a42c
Patrick Walton
2016-03-16T18:16:59
servo: Merge #10026 - compositing: In borderless mode, don't show the window until the page has loaded (from pcwalton:no-browserhtml-flash); r=metajack This avoids a flash of unstyled content, which looks especially bad in browser.html since unstyled content is white and browser.html has a transparent background. Clo...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 1a64c4bb8..c3f7b1918 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -592,7 +592,7 @@ impl<Window: WindowMethods> IOCompositor<Window> { self.window.load_start(back, forward); } - ...
4
8
8
316179058500f1a8685d2aa8e2e648a607de9a34
Patrick Walton
2016-03-16T05:25:41
servo: Merge #10025 - servo: Upgrade WebRender (from pcwalton:upgrade-webrender); r=glennw Closes #9867. r? @glennw Source-Repo: https://github.com/servo/servo Source-Revision: ad47c093ad897ef6e9ab93df5ea90c5a6e2ef3b3
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 8340f5df4..9d69eb197 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2293,7 +2293,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.1.0" -source = "git+https://github.com/servo/webrender#9309d52279a73ea15f955424899fed9b9ab70c95" +source ...
1
2
2