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
69f0af2d06c22a576a8a5b98dc52c38ab93f0ea0
Martin Robinson
2015-10-23T22:17:12
servo: Merge #8140 - Integrate Canvas into the DisplayList (from mrobinson:canvas); r=pcwalton Canvas is currently given a layer at the stacking context level. Instead it's DisplayItem should be given a layer directly. This fixes painting order issues where canvases are painted on top of other positioned content that ...
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index 37a3a5437..406b439ad 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -245,6 +245,7 @@ pub trait FragmentDisplayListBuilding { /// A helper method that `build_display_list` calls to create per-frag...
3
48
74
f4a33dbcca42339b8af9ab8c3a7491c09c9a75a2
Roman Klauke
2015-10-23T21:38:24
servo: Merge #8137 - Remove unnecessary rooting from `CSSStyleDeclaration` (from romankl:gh/8126); r=nox This commit will replace calls to `self.owner.root()` with `self.owner` to avoid unnecessary rooting of JS elements objects. Ref.- Issue: #8126 Source-Repo: https://github.com/servo/servo Source-Revision: ff2c7bb...
diff --git a/script/dom/cssstyledeclaration.rs b/script/dom/cssstyledeclaration.rs index 03292d09a..ba6923c1f 100644 --- a/script/dom/cssstyledeclaration.rs +++ b/script/dom/cssstyledeclaration.rs @@ -74,23 +74,21 @@ impl CSSStyleDeclaration { } fn get_computed_style(&self, property: &Atom) -> Option<DOMStr...
1
10
20
6010991ff731d8500e8b6db689fb7b1ee7e77800
Anthony Ramine
2015-10-23T21:00:00
servo: Merge #8091 - Remove Rc<T> usage from Range (from nox:cleanup-range); r=eefriedman I initially used this to correctly handle ranges when their respective containers are mutated, to get weak references of Range objects. I now realise that the weak references should be handled at a lower level, closer to the JS-m...
diff --git a/script/dom/range.rs b/script/dom/range.rs index a67140db9..2d89530ef 100644 --- a/script/dom/range.rs +++ b/script/dom/range.rs @@ -14,21 +14,21 @@ use dom::bindings::codegen::InheritTypes::{CharacterDataTypeId, NodeTypeId}; use dom::bindings::conversions::Castable; use dom::bindings::error::{Error, Erro...
1
134
237
5b40ad12d14e784d00379e9f919769082dc07894
Ms2ger
2015-10-23T15:34:28
servo: Merge #8170 - Cleanup some code in htmlcanvaselement.rs (from Ms2ger:cleanup-canvas); r=frewsxcv Source-Repo: https://github.com/servo/servo Source-Revision: ac8097b5d2532b3b9fb94f59dddc1be21aa1fb4d
diff --git a/script/dom/htmlcanvaselement.rs b/script/dom/htmlcanvaselement.rs index 38f06faf4..d6e484a2f 100644 --- a/script/dom/htmlcanvaselement.rs +++ b/script/dom/htmlcanvaselement.rs @@ -78,8 +78,8 @@ impl HTMLCanvasElement { let size = self.get_size(); if let Some(ref context) = *self.context.b...
1
8
13
612760f52f8b3f1cef49d584d94a2c40f5400e9d
Ms2ger
2015-10-23T13:00:09
servo: Merge #8167 - Various cleanup in util (from Ms2ger:util); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 94aa8ca80a4a934d42ab5f739f268875b05d1b26
diff --git a/util/geometry.rs b/util/geometry.rs index 224f30114..c2f08f7cd 100644 --- a/util/geometry.rs +++ b/util/geometry.rs @@ -89,7 +89,9 @@ pub static MAX_RECT: Rect<Au> = Rect { /// Returns true if the rect contains the given point. Points on the top or left sides of the rect /// are considered inside the rec...
3
8
6
c83c9c28e48a59073eb81c0b4030ce2ddc1dd832
Ms2ger
2015-10-23T10:50:38
servo: Merge #8155 - Remove Window::layout_join_port (from Ms2ger:join); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 4d737b51bb2053e9bb970b31b0516ac8810a061b
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index 99c6b9d0d..7dde0fe69 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -1251,11 +1251,7 @@ impl LayoutTask { } // Tell script that we're done. - // - // FIXME(pcwalton): This should probably be *one* chann...
4
20
79
a198551d8766200cb4407ba925f90bad65189c50
Ms2ger
2015-10-22T17:14:52
servo: Merge #8150 - Use the select!{} macro in LayoutTask::handle_request (from Ms2ger:select-layout); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: e05999ea9f4883c85939b209f811ae20e9e9e89c
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index 505676e12..99c6b9d0d 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -69,7 +69,7 @@ use std::collections::hash_state::DefaultState; use std::mem::transmute; use std::ops::{Deref, DerefMut}; use std::sync::atomic::{AtomicUsize, Orderin...
1
17
47
12da8c6538c76ebbaf5583c60d29f5117c31279d
nxnfufunezn
2015-10-22T12:53:09
servo: Merge #8149 - Fixes #8102 Removed unwrap on result of send call (from nxnfufunezn:compositor_panics-8102); r=jdm @jdm Source-Repo: https://github.com/servo/servo Source-Revision: 04c574967f46a65c8b6a151d29e5fede6f7fcfaf
diff --git a/compositing/compositor_layer.rs b/compositing/compositor_layer.rs index e3661987a..811f704f5 100644 --- a/compositing/compositor_layer.rs +++ b/compositing/compositor_layer.rs @@ -386,9 +386,8 @@ impl CompositorLayer for Layer<CompositorData> { where Window: WindowMeth...
1
2
3
72f3bf5224bb5d5933c32e10c5470d1d5b71904d
Corey Farwell
2015-10-21T22:02:20
servo: Merge #8103 - Upgrade some dependencies (from frewsxcv:bump); r=nox Check each commit for a link to the changelog Source-Repo: https://github.com/servo/servo Source-Revision: 12c618450bc5639901ad499e59e7e4190097a693
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 513cbcaa3..a2844fb22 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -78,7 +78,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "euclid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-seriali...
1
72
72
1bee68d5838d4ca7e7e87d7677640a6cf6db02af
Florian Merz
2015-10-21T21:23:52
servo: Merge #7761 - display input caret for textarea. fixes #7758 (from fiji-flo:input_caret); r=pcwalton This adds the input caret for textareas. Although, it does not handle multiline textareas correctly. The caret gets displayed for each line. I'll look into that but that will take more time. Some feedback on thi...
diff --git a/layout/text.rs b/layout/text.rs index e007eb3d2..feab75efa 100644 --- a/layout/text.rs +++ b/layout/text.rs @@ -431,9 +431,19 @@ fn split_first_fragment_at_newline_if_necessary(fragments: &mut LinkedList<Fragm string_before = unscanned_text_fragment_info.text[..(position + 1...
5
54
20
40d9a1e2d659d16554c905721ed3c7cd02329936
Matt Brubeck
2015-10-21T20:15:28
servo: Merge #8136 - Fix type in MutHeap docs (from mbrubeck:typo); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: f9e17d33bb3cd5cfe103bb1631f390123bcddc04
diff --git a/script/dom/bindings/js.rs b/script/dom/bindings/js.rs index baa8d8ce8..6faef9b11 100644 --- a/script/dom/bindings/js.rs +++ b/script/dom/bindings/js.rs @@ -225,7 +225,7 @@ impl MutHeapJSVal { } } - /// Set the value in this `MutHeapJSVal`, calling read barriers as appropriate. + /// G...
1
2
2
6e2f8fb7809a3f1ca17423cde1c74eb01d35e55e
Bobby Holley
2015-10-21T18:18:02
servo: Merge #8042 - Remove HAS_DIRTY_SIBLINGS (from bholley:dirty_siblings); r=pcwalton This isn't doing anything right now, and we're not even setting it properly in dirty_impl the |dirty_subtree(self)| was causing us to hit the skip case for step 3. Source-Repo: https://github.com/servo/servo Source-Revision: 50ec...
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index a0ffd5d95..505676e12 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -1491,7 +1491,6 @@ impl LayoutTask { // "changed": // > node.set_changed(true); node.set_dirty(true); - node.set_dirty...
4
6
39
3805ca6e4a25e2ac698215743c124c99da93eddd
Brandon Fairchild
2015-10-21T14:32:36
servo: Merge #8115 - Don't require the CanvasFillOrStrokeStyle enum to be public (from nerith:canvas); r=jdm CanvasFillOrStrokeStyle is only used in a single file, so it does not need to be a public enum. Fixes #8105. Source-Repo: https://github.com/servo/servo Source-Revision: 252e73ff9b43abdeee4eac37702ef2e3adef00...
diff --git a/script/dom/canvasrenderingcontext2d.rs b/script/dom/canvasrenderingcontext2d.rs index cbeb9a491..aa1f0f5d8 100644 --- a/script/dom/canvasrenderingcontext2d.rs +++ b/script/dom/canvasrenderingcontext2d.rs @@ -47,7 +47,7 @@ use util::vec::byte_swap; #[must_root] #[derive(JSTraceable, Clone, HeapSizeOf)] ...
1
1
1
3b92e8bb605b9c0322c41b8a7497ebf2cbdeebe0
Ms2ger
2015-10-21T11:15:15
servo: Merge #8124 - Remove unused JS::assign (from Ms2ger:js-assign); r=saneyuki Source-Repo: https://github.com/servo/servo Source-Revision: 20ea0f4755d2249a6abf9a4ade9d3df753f23bcf
diff --git a/script/dom/bindings/js.rs b/script/dom/bindings/js.rs index 1ef1d93a8..cc900873f 100644 --- a/script/dom/bindings/js.rs +++ b/script/dom/bindings/js.rs @@ -87,13 +87,6 @@ impl<T: Reflectable> JS<T> { ptr: unsafe { NonZero::new(&*obj) } } } - /// Store an rooted value in this f...
1
0
7
2a4e9b1d21f386b0378826304480c29d419328ba
Paul Rouget
2015-10-21T06:47:27
servo: Merge #8119 - update image to 0.4.0 (from paulrouget:updateImage); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 7fb3c51bbbbc708b1472cb79751349adff8b9501
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index 934af35ad..3866bdaf2 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -68,7 +68,7 @@ features = [ "serde_serialization" ] [dependencies] app_units = "0.1" -image = "0.3.14" +image = "0.4.0" log = "0.3" num = "0.1.24" time = "0....
5
9
9
608ce85c7b5a3d7898ea3e0056e9a39124089bce
Brandon Fairchild
2015-10-21T03:28:38
servo: Merge #8112 - Remove Button prefix from names of variants of ButtonType enum (from nerith:buttontype); r=frewsxcv Fixes #8106. Source-Repo: https://github.com/servo/servo Source-Revision: fde40edfdc1459e2ab66e8c66580bacb7dbde430
diff --git a/script/dom/htmlbuttonelement.rs b/script/dom/htmlbuttonelement.rs index 27413ff78..ce33b3648 100644 --- a/script/dom/htmlbuttonelement.rs +++ b/script/dom/htmlbuttonelement.rs @@ -28,10 +28,10 @@ use util::str::DOMString; #[allow(dead_code)] #[derive(HeapSizeOf)] enum ButtonType { - ButtonSubmit, - ...
1
6
6
4b06e2b914cfc1d4bcfddbb12089941d0bdfd4ee
Adam Szopa
2015-10-20T23:30:57
servo: Merge #8099 - Remove explicit lifetimes which can be elided (from Darktori:master); r=mbrubeck Fixes https://github.com/servo/servo/issues/8069 Source-Repo: https://github.com/servo/servo Source-Revision: 941c06eb99533c6c1d55b4ad3b51804badf48a23
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 739cc1ddb..0097d70b9 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -598,16 +598,16 @@ impl<Window: WindowMethods> IOCompositor<Window> { } } - pub fn pipeline_details<'a>(&'a mut self, + pub fn pip...
39
66
66
3c9050794cba725477ac73384a5365a5b134d171
Martin Robinson
2015-10-20T22:01:38
servo: Merge #7950 - Integrate iframes into the display list (from mrobinson:layerize-iframes); r=pcwalton Instead of always promoting iframes to StackingContexts, integrate them into the display list. This prevents stacking bugs when non-stacking-context elements should be drawn on top of iframes. To accomplish this...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index dc7d54cfa..739cc1ddb 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -670,7 +670,7 @@ impl<Window: WindowMethods> IOCompositor<Window> { scroll_policy: ScrollPolicy::Scrollable, transform: Matrix...
9
243
89
ef435375e6a53981a23bae6d0812203b6b9dbe0c
Eli Friedman
2015-10-20T18:38:54
servo: Merge #7951 - Add support for `pre-wrap` and `pre-line` values for `white-space` (from eefriedman:white-space); r=pcwalton This is mostly straightforward. I had to modify a couple of places which were accidentally discarding whitespace. Fixes #1513. This fixes some relevant tests from the CSS testsuite... bu...
diff --git a/gfx/text/util.rs b/gfx/text/util.rs index 855cb2d0d..6736b301d 100644 --- a/gfx/text/util.rs +++ b/gfx/text/util.rs @@ -38,7 +38,7 @@ pub fn transform_text(text: &str, output_text.push(ch); } } - text.len() > 0 && is_in_whitespace(text.char_at_r...
6
102
104
923556cae8af48112394f15e405386690519c564
Leo Lahti
2015-10-20T07:13:49
servo: Merge #8095 - Removed unsafe from 'query_selector_iter' (from TileHalo:foo); r=Ms2ger Fixing #8078. Source-Repo: https://github.com/servo/servo Source-Revision: 25d3c2b655303cf3b858e49019c42254433056cf
diff --git a/script/dom/htmlbuttonelement.rs b/script/dom/htmlbuttonelement.rs index c2538fd9b..93f7f9b29 100644 --- a/script/dom/htmlbuttonelement.rs +++ b/script/dom/htmlbuttonelement.rs @@ -232,13 +232,9 @@ impl<'a> Activatable for &'a HTMLButtonElement { if owner.is_none() || elem.click_in_progress() { ...
3
34
55
513f9befbe4ec022143097649151865384a29e09
Dongie Agnir
2015-10-20T02:48:45
servo: Merge #8092 - Remove unused import (from dagnir:remove-unused-import); r=frewsxcv Source-Repo: https://github.com/servo/servo Source-Revision: 511e3c1846a0138bf8e278d06d36917b16e140ab
diff --git a/layout/wrapper.rs b/layout/wrapper.rs index cd496d77d..74d3a57b2 100644 --- a/layout/wrapper.rs +++ b/layout/wrapper.rs @@ -52,7 +52,7 @@ use script::dom::element; use script::dom::element::{Element, LayoutElementHelpers, RawLayoutElementHelpers}; use script::dom::htmlcanvaselement::LayoutHTMLCanvasEleme...
1
1
1
e65ba222ae6f843e8a17fb93ff00a0bf4e3c473e
Glenn Watson
2015-10-19T23:54:12
servo: Merge #8089 - Fix iframes flickering on mouse move (from glennw:iframe-flicker); r=pcwalton Fixes #7867 (and probably several other iframe bugs). When collecting layers for children of a pipeline, pass through the current subpage pipeline recursively. This prevents descendant layers (such as scroll layers) fro...
diff --git a/compositing/compositor_layer.rs b/compositing/compositor_layer.rs index 0bcb35bd2..525135fd2 100644 --- a/compositing/compositor_layer.rs +++ b/compositing/compositor_layer.rs @@ -449,17 +449,22 @@ impl RcCompositorLayer for Rc<Layer<CompositorData>> { compositor: &mut IOCompositor<Window>...
1
10
4
5998bb999f18b76c654d8b26065a4653ec2cf388
Ms2ger
2015-10-19T17:36:58
servo: Merge #8029 - Some cleanup in layout (from Ms2ger:cleanup-layout); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: e0c8a88410277843714a20d5fced73a392fad861
diff --git a/layout/css/matching.rs b/layout/css/matching.rs index 439ecf842..76a256715 100644 --- a/layout/css/matching.rs +++ b/layout/css/matching.rs @@ -363,14 +363,30 @@ impl StyleSharingCandidateCache { /// The results of attempting to share a style. pub enum StyleSharingResult { - /// We didn't find anybo...
3
93
81
dab83b45c2097078b7d93f8ef9cda36591ed0f3e
Pierre Chevalier
2015-10-19T15:37:03
servo: Merge #7943 - Clarify some code in do_create_interface_objects (from pierrechevalier83:fix_issue_7941); r=Ms2ger rval.get() is believed to be always null upon entering this function. This assumption is verified by the added assertion. It makes more sense to move the block of code that was moved inside the if st...
diff --git a/script/dom/bindings/utils.rs b/script/dom/bindings/utils.rs index 7b430f134..af028ebfc 100644 --- a/script/dom/bindings/utils.rs +++ b/script/dom/bindings/utils.rs @@ -222,20 +222,21 @@ pub fn do_create_interface_objects(cx: *mut JSContext, dom_class: Option<&'static DOM...
1
10
9
0309ba3ff3cb6a0f373f9a55821e51aeb1c3ea18
Corey Farwell
2015-10-19T13:26:17
servo: Merge #8025 - Remove 'app_units' component from tree (from frewsxcv:remove-app-units-from-tree); r=nox Part of #8012 Source-Repo: https://github.com/servo/servo Source-Revision: eeffa795a7ecded7096ee12eb393440e7c0c9348
diff --git a/app_units/Cargo.toml b/app_units/Cargo.toml deleted file mode 100644 index b019f8426..000000000 --- a/app_units/Cargo.toml +++ /dev/null @@ -1,14 +0,0 @@ -[package] -name = "app_units" -version = "0.1.0" -authors = ["The Servo Project Developers"] -description = "Servo app units type (Au)" -documentation =...
3
0
184
53d6e7e968a7d20705be5cd9657e310e39966795
Roman Klauke
2015-10-19T10:32:34
servo: Merge #8071 - remove unused methods from ThreadSafeLayoutNode (from romankl:gh/8063); r=nox `get_input_size ` and `get_input_value ` aren't used in the codebase. Ref.-Issue: #8063 Source-Repo: https://github.com/servo/servo Source-Revision: 50ad1b064d6e85e84707d83ca8f4b5b541b6b8da
diff --git a/layout/wrapper.rs b/layout/wrapper.rs index 9a040947a..cd496d77d 100644 --- a/layout/wrapper.rs +++ b/layout/wrapper.rs @@ -810,25 +810,6 @@ impl<'ln> ThreadSafeLayoutNode<'ln> { } } - pub fn get_input_value(&self) -> String { - unsafe { - let input: Option<LayoutJS<HTM...
1
0
19
20921715c5dcefda81a8232f146f2cbcc257bf52
Rahul Sharma
2015-10-16T19:38:30
servo: Merge #8031 - added spec link for type mapping (from creativcoder:spec-links-js); r=jdm Hi. added some of the spec links, that i could understand from the spec. Please mention if anything else needs to be added. Source-Repo: https://github.com/servo/servo Source-Revision: 7a71f3932078e8248ecf8c6d28984e2fd4d1df...
diff --git a/script/dom/bindings/conversions.rs b/script/dom/bindings/conversions.rs index 3805a0e76..eb9c1c813 100644 --- a/script/dom/bindings/conversions.rs +++ b/script/dom/bindings/conversions.rs @@ -177,6 +177,7 @@ fn clamp_to<D>(d: f64) -> D } } +//http://heycam.github.io/webidl/#es-void impl ToJSValCon...
1
31
0
03801e15fc6bf5f0f9bdd242510ab85393d6d280
Martin Robinson
2015-10-16T18:13:49
servo: Merge #8023 - Z-index should be ignored for non-positioned stacking contexts (from mrobinson:zindex); r=pcwalton When a stacking-context is not positioned, its z-index should be ignored. This is per CSS 2 9.9.1. The only exception to this is when the z-index is applied to an element with display: flex | inline-...
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index 3edbab40e..299f0155e 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -1331,7 +1331,7 @@ impl FragmentDisplayListBuilding for Fragment { Arc::new(StackingContext::new(display_list, ...
2
23
4
eb6999aff6ae9efdfd7e89610b2cb75dff3cf5f0
Stephen Li
2015-10-16T17:24:08
servo: Merge #8035 - Issue 8028: `parse_html` should take `Url` rather than `&Url` (from sliz1:issues/8028); r=Manishearth fixes #8028 Source-Repo: https://github.com/servo/servo Source-Revision: 96ca6b6c6d1a7681e8b16fb313d548fc93753c67
diff --git a/script/dom/domparser.rs b/script/dom/domparser.rs index 679e5b53a..8ad9bfa50 100644 --- a/script/dom/domparser.rs +++ b/script/dom/domparser.rs @@ -63,7 +63,7 @@ impl DOMParserMethods for DOMParser { None, DocumentS...
3
6
6
3cb4253ff9d51882c01612cbce10cd1798b39214
Eli Friedman
2015-10-16T14:49:13
servo: Merge #8043 - Make AsyncResponseListener methods take `&mut self` (from eefriedman:async-listener-mut); r=jdm Gets rid of a bunch of useless `Cell`/`RefCell` types. Source-Repo: https://github.com/servo/servo Source-Revision: 724d4e191b80d84c46cde4a25be9c5f7340e9a06
diff --git a/net_traits/lib.rs b/net_traits/lib.rs index aa38d2a0a..c7b87534e 100644 --- a/net_traits/lib.rs +++ b/net_traits/lib.rs @@ -163,13 +163,13 @@ pub trait AsyncFetchListener { /// A listener for asynchronous network events. Cancelling the underlying request is unsupported. pub trait AsyncResponseListener { ...
6
41
43
b328787904127d8976caf6c86d6e739b5ff72527
Eli Friedman
2015-10-16T14:05:59
servo: Merge #8026 - Fix uses of JS<T> as a type on the stack (from eefriedman:js-rooting); r=nox `JS<T>` belongs on the heap, and only on the heap. This is a collection of fixes so that code uses either `Root<T>` or `&T` to pass around garbage-collected pointers. Ideally, we could completely ban constructing a `JS<...
diff --git a/script/dom/attr.rs b/script/dom/attr.rs index 465ed0f40..8f545dac7 100644 --- a/script/dom/attr.rs +++ b/script/dom/attr.rs @@ -180,7 +180,7 @@ impl Attr { name: name, namespace: namespace, prefix: prefix, - owner: MutNullableHeap::new(owner.map(JS::from_re...
18
197
179
66879a80d0e151ee3409d875a32b20777947d09d
Ms2ger
2015-10-16T10:09:42
servo: Merge #8049 - Enable some warnings for generated code (from Ms2ger:warnings); r=nox None of those warnings currently occur. Source-Repo: https://github.com/servo/servo Source-Revision: 67e8ec997faf6882e906229811dc64340eff2dd7
diff --git a/script/dom/bindings/mod.rs b/script/dom/bindings/mod.rs index 45742da01..394c7b722 100644 --- a/script/dom/bindings/mod.rs +++ b/script/dom/bindings/mod.rs @@ -165,13 +165,10 @@ pub mod codegen { pub mod PrototypeList { include!(concat!(env!("OUT_DIR"), "/PrototypeList.rs")); } - #[al...
1
1
4
909085e63e8facfe34d8566edc1ffb43bf97f2e7
Manish Goregaokar
2015-10-15T21:00:00
servo: Merge #8030 - Fix unrooted_must_root lint to handle arguments/return types properly (from Manishearth:fix-lint-fn); r=frewsxcv r? @jdm Source-Repo: https://github.com/servo/servo Source-Revision: 9d5f09e09c64d878e6c2bb273195c3c6ca9fe82c
diff --git a/plugins/lints/unrooted_must_root.rs b/plugins/lints/unrooted_must_root.rs index cc2ce5d82..bb599e845 100644 --- a/plugins/lints/unrooted_must_root.rs +++ b/plugins/lints/unrooted_must_root.rs @@ -4,12 +4,11 @@ use rustc::front::map as ast_map; use rustc::lint::{LateContext, LintPass, LintArray, LateLin...
8
44
11
f87003038a81c7ef4393662c1be60b93a457c1ca
Glenn Watson
2015-10-15T00:05:17
servo: Merge #8009 - Remove webdriver use of SubpageId (from glennw:webdriver-subpage); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: ac733746094c2ab1c3e5a3326095032206e5fb86
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index edc19ce07..5f6a1f652 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -475,9 +475,9 @@ impl<LTF: LayoutTaskFactory, STF: ScriptTaskFactory> Constellation<LTF, STF> { debug!("constellation got g...
5
13
15
42a382e4a3fce4b65761d9c047a7d88a4f1e24d2
David Rajchenbach-Teller
2015-10-14T23:26:48
servo: Merge #7894 - Rework image_cache_task to avoid using `url` as key during the loadin… (from Yoric:image-url); r=glennw …g of an image. A `url` can be very large, in particular if it is a data: url, so using it as a key for lookups whenever we load a few bytes is not a very good idea. This patch introduces an in...
diff --git a/net/image_cache_task.rs b/net/image_cache_task.rs index 42e820066..5fe9ed02e 100644 --- a/net/image_cache_task.rs +++ b/net/image_cache_task.rs @@ -24,25 +24,34 @@ use util::taskpool::TaskPool; /// /// TODO(gw): Remaining work on image cache: /// * Make use of the prefetch support in various parts o...
1
151
41
c23595c1355b5a12fb43ee7b6c371f209324941f
Connor Imes
2015-10-14T21:26:51
servo: Merge #7993 - Update energymon-sys and energymon-default-sys versions (from connorimes:energymon-arm-updates); r=larsbergstrom Includes build script updates to support Rust linking to static libs on ARM systems as well as some changes to ODROID Smart Power and RAPL energymon implementations. Source-Repo: https...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index f261fed2a..20c56d427 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -484,7 +484,7 @@ dependencies = [ [[package]] name = "energymon-default-sys" version = "0.1.0" -source = "git+https://github.com/energymon/energymon-default-sys.git#902e57f2011371309a0e...
1
2
2
14564fa581bb54a41173c9694c38fed380572c01
Eli Friedman
2015-10-14T19:28:14
servo: Merge #7984 - Refactor resource loaders to use send_error utility (from eefriedman:net-send-error); r=jdm No substantial functional change. Source-Repo: https://github.com/servo/servo Source-Revision: f35f809938792fbad61fd517187e46c1e009cd16
diff --git a/net/about_loader.rs b/net/about_loader.rs index 611d72d51..4308b4a8c 100644 --- a/net/about_loader.rs +++ b/net/about_loader.rs @@ -9,7 +9,7 @@ use hyper::mime::{Mime, SubLevel, TopLevel}; use mime_classifier::MIMEClassifier; use net_traits::ProgressMsg::Done; use net_traits::{LoadConsumer, LoadData, Me...
5
20
26
d9da7e4823b695e6904d0c77ea9020c89b55acb9
meh
2015-10-14T16:29:45
servo: Merge #7552 - Add viewport configuration support to the compositor (from meh:viewport); r=glennw This allows me to do stuff like this. ![this](https://cloud.githubusercontent.com/assets/40204/9701150/58d593ae-541d-11e5-9f57-8d379f5c9ceb.png) Those are two compositors rendered on the same OpenGL context, I nee...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 932c73f94..dc7d54cfa 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -95,6 +95,9 @@ pub struct IOCompositor<Window: WindowMethods> { /// The application window size. window_size: TypedSize2D<DevicePixel, u32>, ...
2
39
4
f86cbde1d93921a6b8490d988f6da50d28f2b5a3
Eli Friedman
2015-10-14T14:46:32
servo: Merge #7967 - MIMEClassifier::classify always succeeds; fix the type to reflect this (from eefriedman:mime-handling); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 7308d0dd0d2f41e140434d5f992c5aa7ecc0ef71
diff --git a/net/mime_classifier.rs b/net/mime_classifier.rs index a9eac63c8..948425890 100644 --- a/net/mime_classifier.rs +++ b/net/mime_classifier.rs @@ -38,10 +38,11 @@ impl MIMEClassifier { no_sniff_flag: NoSniffFlag, apache_bug_flag: ApacheBugFlag, su...
2
17
18
cb513a5af52439afae32bdf0ec00510193f7b4f9
Glenn Watson
2015-10-14T01:15:39
servo: Merge #7989 - Update gleam 0.1.9 -> 0.1.13 (from glennw:update-gleam); r=frewsxcv Update gleam 0.1.9 -> 0.1.11 Source-Repo: https://github.com/servo/servo Source-Revision: dd2f8b6891f963a6c0cf42be9212e85a86a77df7
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 307313fa0..d74e9c923 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -13,7 +13,7 @@ dependencies = [ "euclid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "gfx 0.0.1", "gfx_tests 0.0.1", - "gleam 0.1.9 (registry+https://github.com/ru...
1
10
10
34fd0ec112fc4ba9b0279383fcfc3528efbdf9ed
Prabhjyot Singh Sodhi
2015-10-13T23:25:27
servo: Merge #7871 - Send reason in the Websocket close handshake (from psdh:sendReason); r=jdm Fixes #7862 Source-Repo: https://github.com/servo/servo Source-Revision: 26902a9a9b9266d7ffe13e9e1eb2c70fb0b70ae9
diff --git a/script/dom/websocket.rs b/script/dom/websocket.rs index a04b64ded..c348efc88 100644 --- a/script/dom/websocket.rs +++ b/script/dom/websocket.rs @@ -39,6 +39,7 @@ use websocket::client::receiver::Receiver; use websocket::client::request::Url; use websocket::client::sender::Sender; use websocket::header::...
1
4
1
cc09af1101002e566fcde093ea77892a00cfd813
David Raifaizen
2015-10-13T22:20:22
servo: Merge #8004 - Removed user agent parameter from being unnecessarily passed (from craftytrickster:user-agent/#7968); r=jdm https://github.com/servo/servo/issues/7968 Source-Repo: https://github.com/servo/servo Source-Revision: bc58cd2de05b371f641051eb1038cd29e36bbb01
diff --git a/net/http_loader.rs b/net/http_loader.rs index 7713b7b3e..1a6827367 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -52,12 +52,13 @@ pub fn create_http_connector() -> Arc<Pool<Connector>> { Arc::new(Pool::with_connector(Default::default(), connector)) } -pub fn factory(hsts_list: Arc<RwL...
2
9
7
5730ee0114727b9673dfa2d5a9e71b56fd87848b
Ms2ger
2015-10-13T17:39:43
servo: Merge #7991 - Update cssparser (from Ms2ger:update-selectors); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 8cb3c5f6287146f8a5c351b72fb135de5b283b33
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 8d967a3db..307313fa0 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -1574,7 +1574,7 @@ dependencies = [ [[package]] name = "selectors" version = "0.1.0" -source = "git+https://github.com/servo/rust-selectors#572353b3209af040cd3e6261978b09c7f8122844" +so...
1
1
1
3ef6151eabdd2473715d9ee645e85d7ab2577b23
Connor Imes
2015-10-13T14:49:56
servo: Merge #7992 - Set a reasonable max count on open files and don't panic if set fails (from connorimes:platform-rlimit-nofailing); r=larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: 7babf4a3adb07823c49c25cf9b82bf18973a93d6
diff --git a/script/lib.rs b/script/lib.rs index 73989ec42..2d900d320 100644 --- a/script/lib.rs +++ b/script/lib.rs @@ -102,15 +102,37 @@ use dom::bindings::codegen::RegisterBindings; #[allow(unsafe_code)] fn perform_platform_specific_initialization() { use std::mem; - const RLIMIT_NOFILE: libc::c_int = 7; +...
1
27
5
8c69088403a94e090d3bd61580bed931ef9ed65e
Dongie Agnir
2015-10-13T08:12:28
servo: Merge #7990 - Add newline so code sample is parsed correctly (from dagnir:formatting-fix); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: efdaf5e7e5923d1078ed7b12b96325e2411cc3d2
diff --git a/script/dom/mod.rs b/script/dom/mod.rs index c5437e136..05d89c232 100644 --- a/script/dom/mod.rs +++ b/script/dom/mod.rs @@ -58,6 +58,7 @@ //! the derived type enum should //! use one addititional type (the parent class) because sometimes the parent //! can be the most-derived class of an object. +//! /...
1
1
0
3b9713d6a39819f94f352be35b323aba68e07895
Corey Farwell
2015-10-13T00:33:30
servo: Merge #7987 - Fix issues found by rust-clippy (from frewsxcv:clippy); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: eb7039d04d4c83800ba9d92dc251222f79b83040
diff --git a/canvas/canvas_paint_task.rs b/canvas/canvas_paint_task.rs index dadc37aef..4244e27d6 100644 --- a/canvas/canvas_paint_task.rs +++ b/canvas/canvas_paint_task.rs @@ -756,7 +756,7 @@ fn is_zero_size_gradient(pattern: &Pattern) -> bool { return true; } } - return false; + false...
23
106
121
06386bf82fcd3c0035c6d7f0d3f04b3572df90d4
Matt Brubeck
2015-10-12T21:06:31
servo: Merge #7933 - Replace libpng and stb_image with PistonDevelopers/image (from mbrubeck:piston-image); r=glennw Fixes #3368. r? @glennw Source-Repo: https://github.com/servo/servo Source-Revision: 0f597d389052500d9b76b9f9f89e873e6f809ab1
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index c1dfc5893..934af35ad 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -52,10 +52,6 @@ git = "https://github.com/servo/rust-azure" [dependencies.layers] git = "https://github.com/servo/rust-layers" -[dependencies.png] -git = "https...
17
145
134
f719f5783318564c7aad45315c1a58be3fbaf7d8
Glenn Watson
2015-10-12T13:49:26
servo: Merge #7921 - Update RemoveIFrame to use pipeline id rather than subpage (from glennw:subpage-fixes-2); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 5ffeb3b95bfc90079622fa65fa7f6dc4fff25350
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 0da135022..edc19ce07 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -135,10 +135,6 @@ pub struct Constellation<LTF, STF> { /// A list of in-process senders to `WebGLPaintTask`s. webgl_paint_tasks:...
3
19
38
8e662eadaff17c802a23b302d5dc8eab8a22f9d6
Corey Farwell
2015-10-12T10:37:42
servo: Merge #7976 - Cleanup code that was warned by rust-clippy (from frewsxcv:clippy); r=jdm [whitespace agnostic diff](https://github.com/servo/servo/pull/7976/files?w=1) Source-Repo: https://github.com/servo/servo Source-Revision: ac1b595609a08c30d6c13dfe6e7705f061bbc010
diff --git a/layout/table.rs b/layout/table.rs index 496a05f80..62b8807de 100644 --- a/layout/table.rs +++ b/layout/table.rs @@ -810,17 +810,12 @@ impl TableLikeFlow for BlockFlow { let mut candidate_block_size_iterator = CandidateBSizeIterator::new( &self.fragment, self.b...
9
271
284
34e932d24225b305c1590b7a601e39e234dbfda2
Rahul Sharma
2015-10-12T09:13:28
servo: Merge #7973 - convert match to if let for location header check #7969 (from creativcoder:fix_issue_7969); r=jdm @jdm Hi, very eager for my first pull request to Servo. Please review the changes. Source-Repo: https://github.com/servo/servo Source-Revision: 8dff3be956e7c4d8bc129491e1dfb5295c0027f1
diff --git a/net/http_loader.rs b/net/http_loader.rs index bf52f7288..b7cf69222 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -635,51 +635,45 @@ pub fn load<A>(load_data: LoadData, // --- Loop if there's a redirect if response.status().class() == StatusClass::Redirection { - ...
1
34
40
c2eba2c0d31f75bba3f36e951a785b2ef620bdff
Connor Imes
2015-10-12T07:42:25
servo: Merge #7961 - Update dependencies with fixes for native ARM builds (from connorimes:arm-crate-updates); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 71c5587856048708906cf3adb6952116f224d40e
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index fa848e7f8..2fd246213 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -66,7 +66,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "angle" version = "0.1.0" -source = "git+https://github.com/ecoal95/angle?branch=servo...
1
18
11
3a5cf304203bb240f64917a01d5af673988aca1c
Gökberk Yaltıraklı
2015-10-11T09:20:14
servo: Merge #7971 - Use typed header API instead of set_raw in set_default_accept_encoding (from gkbrk:fix_7970); r=nox Fixes #7970 Source-Repo: https://github.com/servo/servo Source-Revision: 7b904ef6fb2147841366b4adf07327bc1cdbb1be
diff --git a/net/http_loader.rs b/net/http_loader.rs index 1d44e1664..bf52f7288 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -309,7 +309,10 @@ fn set_default_accept_encoding(headers: &mut Headers) { return } - headers.set_raw("Accept-Encoding".to_owned(), vec![b"gzip, deflate".to_vec()...
1
4
1
9ae1faf71085b9922bd662fe8ea6e337670deeb9
Corey Farwell
2015-10-10T21:00:39
servo: Merge #7958 - Consolidate magic number representing max unsigned long (from frewsxcv:consolidate-magic-number); r=mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 02d889494580d2b387a42d3a94360e40dce96282
diff --git a/script/dom/attr.rs b/script/dom/attr.rs index c597a0a42..465ed0f40 100644 --- a/script/dom/attr.rs +++ b/script/dom/attr.rs @@ -12,6 +12,7 @@ use dom::bindings::js::{JS, MutNullableHeap}; use dom::bindings::js::{LayoutJS, Root, RootedReference}; use dom::bindings::utils::{Reflector, reflect_dom_object}; ...
4
15
4
24bebbdeed421049fb725738c913568e881e74cb
David Raifaizen
2015-10-10T19:18:56
servo: Merge #7949 - Making map+clone more succinct with cloned (from craftytrickster:map-clone-to-cloned); r=nox https://github.com/servo/servo/issues/7906 Source-Repo: https://github.com/servo/servo Source-Revision: 04266f237a807ed3abbb678cbda0f5a8439171c7
diff --git a/net/storage_task.rs b/net/storage_task.rs index 1b25d9d03..f621b8cab 100644 --- a/net/storage_task.rs +++ b/net/storage_task.rs @@ -106,9 +106,10 @@ impl StorageManager { index: u32) { let origin = self.origin_as_string(url); let data = self.select_data(storage_type); - ...
2
5
4
562057e09c56e4a89e27b804d80173aafee03570
Anthony Ramine
2015-10-10T18:26:07
servo: Merge #7918 - Derive PartialEq on the style Font structure (from nox:partialeq-font); r=mbrubeck We check the hash first. Source-Repo: https://github.com/servo/servo Source-Revision: 0f8493a5669d8c6c29d07881534e144bfc87b511
diff --git a/gfx/font_context.rs b/gfx/font_context.rs index 77e038e83..b330a5c33 100644 --- a/gfx/font_context.rs +++ b/gfx/font_context.rs @@ -321,12 +321,7 @@ struct LayoutFontGroupCacheKey { impl PartialEq for LayoutFontGroupCacheKey { fn eq(&self, other: &LayoutFontGroupCacheKey) -> bool { - self.po...
2
17
6
ab06151bf4504c489935469392c119f59d5075f8
Corey Farwell
2015-10-10T17:08:14
servo: Merge #7955 - Add 'listing' alias for <pre> elements (from frewsxcv:listing-pre); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: b34b82537acfb7cd9bd8bcecd5eb49528020b1ab
diff --git a/script/dom/create.rs b/script/dom/create.rs index f2b8182cd..14e061c07 100644 --- a/script/dom/create.rs +++ b/script/dom/create.rs @@ -175,6 +175,8 @@ pub fn create_element(name: QualName, prefix: Option<Atom>, atom!("legend") => make!(HTMLLegendElement), atom!("li") => make!...
1
2
1
aac85a0c22c55f7a8d6ceb418740f6a18cab73a1
Avi Weinstock
2015-10-10T01:52:13
servo: Merge #7952 - Update clipboard to a version with chdir("/") removed (from aweinstock314:update-clipboard-20151009); r=mbrubeck Relevant links: http://logs.glob.uno/?c=mozilla%23servo&s=9+Oct+2015&e=10+Oct+2015#c279844 https://github.com/aweinstock314/rust-clipboard/commit/ef4cf77c9c736e0951df797ff4e1a7c945ce2e3...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 0c29175b7..fa848e7f8 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -199,7 +199,7 @@ dependencies = [ [[package]] name = "clipboard" version = "0.0.3" -source = "git+https://github.com/aweinstock314/rust-clipboard#ca32bcf47b5e5fcc18e010b077dbf3b541aa6b5...
1
1
1
ddaa82a251c72cb34b36c120cbab19cc83e68291
Martin Robinson
2015-10-09T23:00:21
servo: Merge #7891 - Properly size synthesized layers (from mrobinson:display-list-paint-layer); r=pcwalton Layers that are composed of several stacking contexts that need to be rendered on top of other layered content need synthesized layers. Previously, these layers were placed into a stacking context that was the s...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 90e008a2d..07f32519a 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -26,7 +26,7 @@ use libc::uintptr_t; use msg::compositor_msg::{LayerId, LayerKind, ScrollPolicy, SubpageLayerInfo}; use net_traits::image::base::Image; use pa...
2
226
110
aac9b3be7ef44ef6861e6811af77b9f37e540d3e
Paul Rouget
2015-10-09T20:10:44
servo: Merge #7909 - Snap to screen pixels instead of px (from paulrouget:subpixelPos); r=mbrubeck Fixes #7904 Source-Repo: https://github.com/servo/servo Source-Revision: 8ef8c53d2a3e8a54a2bfc98e7e1d71d609098f62
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index c7053472b..90e008a2d 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -279,6 +279,8 @@ impl DisplayList { layer_kind: paint_context.layer_kind, }; + let pixels_per_px = paint_subcontext.screen_pixels...
1
6
4
d580db7ced36ccb4099c046688271aab40e5b088
Ms2ger
2015-10-09T15:49:08
servo: Merge #7925 - Implement HTMLIFrameElement::pipeline_id on LayoutJS<HTMLIFrameElement> (from Ms2ger:iframe-pipeline-layout); r=glennw Source-Repo: https://github.com/servo/servo Source-Revision: 12139f73ef0be864bac00dc106832a9f45634cb2
diff --git a/layout/wrapper.rs b/layout/wrapper.rs index 74fdc8697..0db0d1ca2 100644 --- a/layout/wrapper.rs +++ b/layout/wrapper.rs @@ -1014,10 +1014,11 @@ impl<'ln> ThreadSafeLayoutNode<'ln> { /// If this node is an iframe element, returns its pipeline ID. If this node is /// not an iframe element, fails. ...
2
14
4
080d370887b9522468cba46e67cc431496836a8f
Pierre Chevalier
2015-10-09T11:23:25
servo: Merge #7932 - Refactor away duplication of get_rooted functionality (from pierrechevalier83:fix_issue_7929); r=jdm Refactor .get().map(Root::from_rooted) and .get().map(|foo| foo.root()) to .get_rooted() on MutNullableHeap objects. First part done mechanically with the following comand: sed -i s/"get().map(Roo...
diff --git a/script/dom/attr.rs b/script/dom/attr.rs index 2cd742ee4..bebe74935 100644 --- a/script/dom/attr.rs +++ b/script/dom/attr.rs @@ -303,7 +303,7 @@ impl Attr { } pub fn owner(&self) -> Option<Root<Element>> { - self.owner.get().map(Root::from_rooted) + self.owner.get_rooted() } ...
9
24
24
44f25b706c2b2657c074ddaded3accba1dc3ec50
Eli Friedman
2015-10-08T18:20:55
servo: Merge #7825 - Fully implement the "align descendants" rule for div (from eefriedman:div-align); r=mbrubeck This adds -servo-left and -servo-right to complement -servo-center. ~~This intentionally doesn't try to address issue #7301.~~ Commit added to address #7301. Source-Repo: https://github.com/servo/servo ...
diff --git a/layout/block.rs b/layout/block.rs index a0768b9d9..f580763e9 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -1466,8 +1466,9 @@ impl BlockFlow { // Per CSS 2.1 § 16.3.1, text alignment propagates to all children in flow. // - // TODO(#2018, pcwalton): Do this in...
4
33
33
14389f647c191b86729871f6272aaf5b1782ebb5
Martin Robinson
2015-10-08T17:23:18
servo: Merge #7928 - Add the dump-layer-tree option to the -Z help text (from mrobinson:layer-tree-fix); r=pcwalton I accidentally omitted this when I added the dump-layer-tree option initially. Fixes #7926. Source-Repo: https://github.com/servo/servo Source-Revision: a8ad990c6d619bc199ee25edd5bfd12e9846eb33
diff --git a/util/opts.rs b/util/opts.rs index 0454aa78d..d3b257434 100644 --- a/util/opts.rs +++ b/util/opts.rs @@ -309,6 +309,7 @@ pub fn print_debug_usage(app: &str) -> ! { print_option("dump-display-list", "Print the display list after each layout."); print_option("dump-display-list-json", "Print the disp...
1
1
0
878291be72c71c6f97bf78b9f5285133c9c724a7
Martin Robinson
2015-10-08T03:28:39
servo: Merge #7913 - Simplify and unify compositor shutdown code paths (from mrobinson:compositor-shutdown); r=pcwalton Unify all compositor shutdown code paths into two methods, one which starts the shutdown and the other that finishes it. This simplifies the way the compositor shuts down and prevents "leaking" pixma...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index dcacb440e..919f68b0b 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -155,9 +155,6 @@ pub struct IOCompositor<Window: WindowMethods> { /// Pending scroll events. pending_scroll_events: Vec<ScrollEvent>, - /...
5
47
64
1580ddf14825c09f12a32026aa48b81ec0fe2463
Glenn Watson
2015-10-08T00:36:35
servo: Merge #7899 - Remove constellation round trip for subpage mapping in compositor (from glennw:subpage-fixes-1); r=pcwalton This makes use of the new functionality that allows iframes to generate their own pipeline IDs in order to remove any knowledge of subpage ids from the compositor. (This is the first of sev...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 42efc2b9c..dcacb440e 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -30,7 +30,7 @@ use msg::compositor_msg::{LayerProperties, ScrollPolicy}; use msg::constellation_msg::AnimationState; use msg::constellation_msg::Msg a...
11
47
139
345168e7fc069bf79ee28f187766094666aa7afa
James Graham
2015-10-07T23:50:23
servo: Merge #7875 - Move code to exit servo after writing a screenshot out of composite_specific_target (from jgraham:composite_no_exit); r=glennw The structure of this function was confusing, so move some parts out into the caller where they seem like a more natural fit and add documentation of the functions Source...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 99fc25757..42efc2b9c 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -488,7 +488,8 @@ impl<Window: WindowMethods> IOCompositor<Window> { } (Msg::CreatePng(reply), ShutdownState::NotShuttingDown...
1
23
15
c34edd27123a038d7f7dd156d056a38131477cd8
Qeole
2015-10-07T19:59:24
servo: Merge #7911 - Fixes #7907: rendering for unescaped string "<iframe>" in doc (from Qeole:7907); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 3e5b491a502af3158d77a1426fc585df43353ae9
diff --git a/msg/constellation_msg.rs b/msg/constellation_msg.rs index cefcd0da4..d62e3470f 100644 --- a/msg/constellation_msg.rs +++ b/msg/constellation_msg.rs @@ -307,30 +307,30 @@ pub enum AnimationState { // https://developer.mozilla.org/en-US/docs/Web/API/Using_the_Browser_API#Events #[derive(Deserialize, Serial...
1
13
13
3e4fbeacebd54eef4b70203ae319467296496865
Eli Friedman
2015-10-07T18:56:13
servo: Merge #7912 - Make sure to correctly destroy old layers in collect_old_layers_for_pipeline (from eefriedman:compositor-layer); r=mrobinson The previous code would skip calling clear_all_tiles(), which led to a panic in rust-layers. ("You should have disposed of the pixmap properly with destroy()! This pixmap wi...
diff --git a/compositing/compositor_layer.rs b/compositing/compositor_layer.rs index 261802c9a..91c8b0d12 100644 --- a/compositing/compositor_layer.rs +++ b/compositing/compositor_layer.rs @@ -472,7 +472,9 @@ impl RcCompositorLayer for Rc<Layer<CompositorData>> { } // Keep th...
1
3
1
52a51589550728b8523cd82318ec71ee7a05fcfb
Anthony Urena
2015-10-07T14:32:44
servo: Merge #7892 - Refactor html form dataset collection (from anthgur:form-data-refactor); r=jdm Factor out FormDatum collection for `<input>` Improve early return logic for getting the FormDatum from an `<input>` Condense element type patterns Proposed to close #7851 Source-Repo: https://github.com/servo/servo S...
diff --git a/script/dom/htmlformelement.rs b/script/dom/htmlformelement.rs index 632b084c2..2b4edbbdf 100644 --- a/script/dom/htmlformelement.rs +++ b/script/dom/htmlformelement.rs @@ -229,7 +229,43 @@ impl HTMLFormElement { win.r().pipeline(), load_data)).unwrap(); } - pub fn get_form_dataset<'b...
2
79
84
8268d6fb1ca5e8237b0ba74d8a8d31b85b5b238e
Corey Farwell
2015-10-07T13:04:28
servo: Merge #7898 - Use the correct IDL setter for <font>.size (from frewsxcv:htmlfontelement-size-attribute-setter); r=nox Previously, the IDL attribute would incorrectly set the `size` attribute for `<font>` elements as `AttrValue::String`. Now it correctly sets it as `AttrValue::Length`. Also included is a regress...
diff --git a/script/dom/htmlfontelement.rs b/script/dom/htmlfontelement.rs index 873079bee..8b30375fb 100644 --- a/script/dom/htmlfontelement.rs +++ b/script/dom/htmlfontelement.rs @@ -70,7 +70,11 @@ impl HTMLFontElementMethods for HTMLFontElement { make_getter!(Size); // https://html.spec.whatwg.org/multip...
1
10
2
2bfeeb06d75f63ab7e23af6a74a09650b71fb45f
Maciej Skrzypkowski
2015-10-07T11:35:14
servo: Merge #7902 - Removed unneeded pub annotations in HTMLInputElement #7897 (from mskrzypkows:HTMLInputElement_pub_refactor); r=nox get_size method appeared to be never used so I removed it. Source-Repo: https://github.com/servo/servo Source-Revision: 9a12c2c06199bc0a11982949b0cb43ee8500c001
diff --git a/script/dom/htmlinputelement.rs b/script/dom/htmlinputelement.rs index 3d9f7ce66..d98c2a822 100644 --- a/script/dom/htmlinputelement.rs +++ b/script/dom/htmlinputelement.rs @@ -396,27 +396,27 @@ fn in_same_group(other: &HTMLInputElement, owner: Option<&HTMLFormElement>, } impl HTMLInputElement { - pu...
1
5
9
dcb23a3b217f6da9d4b634fb5fbd70b005f153ff
Ms2ger
2015-10-07T10:51:14
servo: Merge #7901 - Cleanup the HTMLOptionElement#text implementation (from Ms2ger:option-text); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 84d8f65d229e748bcd0c75e998adb8432575044a
diff --git a/script/dom/htmloptionelement.rs b/script/dom/htmloptionelement.rs index 462ba0702..c2ff22096 100644 --- a/script/dom/htmloptionelement.rs +++ b/script/dom/htmloptionelement.rs @@ -12,7 +12,7 @@ use dom::bindings::codegen::InheritTypes::{HTMLOptionElementDerived}; use dom::bindings::codegen::InheritTypes::...
1
14
15
7e7598b7fa90c43ce846916ec91cab8ed7cfc54b
Michael Howell
2015-10-07T04:03:48
servo: Merge #7883 - Draw shadows after the background (from notriddle:master); r=pcwalton Fixes #7872 Source-Repo: https://github.com/servo/servo Source-Revision: 409fbafe9cdd16a2b5a25f64eae0bc11d6fc9aa1
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index c49377911..103b8a6b1 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -971,14 +971,14 @@ impl FragmentDisplayListBuilding for Fragment { // Add shadows, background, borders, and outlines, i...
1
4
4
ea54fb3205cf5700fbaebd4448ddf47bc0950ab4
Martin Robinson
2015-10-06T23:20:50
servo: Merge #7879 - Improve layer tree debugging output (from mrobinson:layer-tree-dump); r=glennw Add an option to dump the layer tree, which activates the previously unused layer tree debugging code. Also improve the output using the PrintTree struct. Previous output: ``` Layer tree: Layer 7f63b45b2010: RefCell { ...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index ca0b8e820..99fc25757 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -49,6 +49,7 @@ use time::{precise_time_ns, precise_time_s}; use url::Url; use util::geometry::{PagePx, ScreenPx, ViewportPx}; use util::opts; +use ut...
2
66
17
0b303550940870ed18d2619b32e6c61423dcf894
Patrick Walton
2015-10-06T21:46:56
servo: Merge #7896 - layout: Add a field in the display list for simple border radii on box shadows (from pcwalton:box-shadow-border-radii); r=mbrubeck Only supported in WebRender (with my upcoming PR) for now. r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 5eb1c04e7854d932c0d63f9e5ed4d54e...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index f1bd0efcb..c7053472b 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -1198,6 +1198,11 @@ pub struct BoxShadowDisplayItem { /// The spread radius of this shadow. pub spread_radius: Au, + /// The border radius of thi...
2
12
0
4244789bfaebf90964ac4338bdd1c61f475cf70e
vectorijk
2015-10-06T20:07:08
servo: Merge #7889 - Fix #7855 Implement port blocking For WebSocket connection algorithm (from vectorijk:port-blocking-7855); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: e4b02cc981ed095c2cf3816d26ad32353357e64e
diff --git a/script/dom/websocket.rs b/script/dom/websocket.rs index 84e78bc88..228b8ac92 100644 --- a/script/dom/websocket.rs +++ b/script/dom/websocket.rs @@ -62,6 +62,69 @@ enum MessageData { Binary(Vec<u8>), } +// list of blacklist ports according to +// http://mxr.mozilla.org/mozilla-central/source/netwerk...
1
69
0
437fb7ffc75f6cc071b835507a1b65e75dce489a
Ms2ger
2015-10-06T18:41:05
servo: Merge #7893 - Cleanup handle_take_screenshot (from Ms2ger:img-webdriver); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: e64ed839b68504a659378637ff34ca118e6dc3a8
diff --git a/webdriver_server/lib.rs b/webdriver_server/lib.rs index 22776126a..c00f36c07 100644 --- a/webdriver_server/lib.rs +++ b/webdriver_server/lib.rs @@ -615,15 +615,16 @@ impl Handler { sleep_ms(interval) } - if img.is_none() { - return Err(WebDriverError::new(ErrorStat...
1
9
8
22b6350573555e78579dbe434bd2900ebe043ad1
Manish Goregaokar
2015-10-06T16:43:41
servo: Merge #7884 - Update openssl and re-enable the resource task tests (from Manishearth:fx-openssl); r=Ms2ger https://github.com/sfackler/rust-openssl/issues/281 landed r? @larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: 5730a8bdd137006bbbf8f33bcc3b8828c70d3a73
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index ca655dc2a..0c29175b7 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -278,7 +278,7 @@ name = "cookie" version = "0.1.21" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "openssl 0.6.5 (registry+https://github.com/rust-...
1
7
7
7b1e3aae7b3c8d77be516e71e5efce86712b673a
Ms2ger
2015-10-06T16:03:24
servo: Merge #7827 - Check for font_variant equality in LayoutFontGroupCacheKey::eq (from Ms2ger:jumpy-variant); r=pcwalton This fixes an issue whereby normal text would intermittently be rendered as small-caps and vice versa. Source-Repo: https://github.com/servo/servo Source-Revision: c0b397db77b87f02d1742efd71f526...
diff --git a/gfx/font_context.rs b/gfx/font_context.rs index 3ce278353..77e038e83 100644 --- a/gfx/font_context.rs +++ b/gfx/font_context.rs @@ -325,6 +325,7 @@ impl PartialEq for LayoutFontGroupCacheKey { self.pointer.font_stretch == other.pointer.font_stretch && self.pointer.font_style == ot...
1
1
0
e98af2aa569eb6d686a827147dd90fc656360389
Ms2ger
2015-10-06T07:57:05
servo: Merge #7874 - Define the parsed attribute getters for HTMLTableCellElement on LayoutJS (from Ms2ger:layoutjs-tdth); r=jdm This documents their intended usage and prevents script callers from using them. Source-Repo: https://github.com/servo/servo Source-Revision: 50db64a20ec8a5dac6e98c4ab654ab0ceb5f8e82
diff --git a/script/dom/element.rs b/script/dom/element.rs index dd4bff543..bdc7de011 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -45,6 +45,7 @@ use dom::eventtarget::{EventTarget, EventTargetTypeId}; use dom::htmlcollection::HTMLCollection; use dom::htmlelement::HTMLElementTypeId; use dom::htm...
2
25
10
8d6303649046fef44d52049a7f071f4e8867d4cb
Glenn Watson
2015-10-06T07:08:32
servo: Merge #7807 - Make it possible for iframes to create their own pipeline ID (from glennw:pid); r=jdm This doesn't change any functionality, but it's the first step towards removing SubpageId. Adding this change now will allow us to gradually change over code referencing subpage id rather than in one massive PR....
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 540267cc4..8fe576855 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -26,8 +26,9 @@ use msg::constellation_msg::AnimationState; use msg::constellation_msg::Msg as ConstellationMsg; use msg::constellation_msg...
9
193
68
32c6fd7195cef294fc805ba106460aecaea8eb01
Martin Robinson
2015-10-06T05:05:21
servo: Merge #7822 - Rework how StackingContexts are dynamically added to layers (from mrobinson:layer-info); r=pcwalton StackingContexts are added to layers when it is necessary to maintain their ordering on top of other layered StackingContexts. Instead of tracking the information about a layer scattered around into...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 792bb4df7..f1bd0efcb 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -76,6 +76,51 @@ impl OpaqueNode { } } +/// LayerInfo is used to store PaintLayer metadata during DisplayList construction. +/// It is also used for trac...
5
152
105
52e5ee716da7dc72bbf71ce69e0b4b4f047be697
Roman Klauke
2015-10-05T19:26:30
servo: Merge #7880 - remove data field from websockets (from romankl:websockets-data-field); r=jdm The data field is currently not used (no reads/ writes). This commit removes this temp. field. Ref.-Issue: #7859 Source-Repo: https://github.com/servo/servo Source-Revision: 94816bb3b42e50127db56e64086843b14614ca88
diff --git a/script/dom/websocket.rs b/script/dom/websocket.rs index 279447070..b90cd53ff 100644 --- a/script/dom/websocket.rs +++ b/script/dom/websocket.rs @@ -76,7 +76,6 @@ pub struct WebSocket { clean_close: Cell<bool>, //Flag to tell if the websocket closed cleanly (not due to full or fail) code: Cell<u16...
1
0
2
7ea6b85bc01eebe8a82954a24ac937ba19b4e17e
Michael Howell
2015-10-05T18:30:10
servo: Merge #7834 - Create a pseudo-stacking context for positioned floats (from notriddle:float-stacking); r=pcwalton Fixes #7828 That was surprisingly easy... Source-Repo: https://github.com/servo/servo Source-Revision: 297184c6e06631a753432d9709845ec8e99b59fd
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index 49c140cbe..d9da32cf6 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -1594,11 +1594,8 @@ impl BlockFlowDisplayListBuilding for BlockFlow { scroll_policy, Stack...
1
5
5
ec2ea76e8ff1f76b7f63003d9d5bf3746e0fc256
Lars Bergstrom
2015-10-05T16:23:44
servo: Merge #7837 - Rust upgrade to nightly 20151002 (from larsbergstrom:rustup_20151002); r=Manishearth r? @Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 375382a2e813ee28405f6cec439330e238c4d2e5
diff --git a/plugins/lints/inheritance_integrity.rs b/plugins/lints/inheritance_integrity.rs index e1845b0a7..4f5770948 100644 --- a/plugins/lints/inheritance_integrity.rs +++ b/plugins/lints/inheritance_integrity.rs @@ -4,7 +4,6 @@ use rustc::lint::{LateContext, LintPass, LintArray, Level, LateLintPass, LintContext...
5
25
27
adbd069aa80c172d48e70e5dd3bcde370822d2c0
Ms2ger
2015-10-05T15:35:44
servo: Merge #7866 - Update caseless (from Ms2ger:caseless); r=nox This picks up a fix for a warning that will become an error in the future. Source-Repo: https://github.com/servo/servo Source-Revision: c775068be477a2ee58ac61b5e405f0b9089c5f74
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index daa8b6173..3ca87524e 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -180,7 +180,7 @@ dependencies = [ [[package]] name = "caseless" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = ...
1
2
2
1bc1e6d0ab7860ddbdf8695c843ef1f325c28bac
Ms2ger
2015-10-05T14:19:21
servo: Merge #7867 - Move some methods from RawLayoutElementHelpers to LayoutElementHelpers (from Ms2ger:layoutjs); r=nox This is part of a long-term plan to ensure layout never has access to unwrapped pointers to DOM objects. The remaining methods on the RawLayoutElementHelpers trait are harder to move, because of th...
diff --git a/layout/wrapper.rs b/layout/wrapper.rs index 17102f009..91ba3f958 100644 --- a/layout/wrapper.rs +++ b/layout/wrapper.rs @@ -516,14 +516,14 @@ impl<'le> ::selectors::Element for LayoutElement<'le> { #[inline] fn has_class(&self, name: &Atom) -> bool { unsafe { - (*self.element....
2
80
70
720f4f0c67b4df1f8a4a8f724a71b7b0916f5fd6
Matt Brubeck
2015-10-05T11:23:20
servo: Merge #7817 - Remove unused PostorderDomTraversal::should_prune (from mbrubeck:prune); r=nox r? @pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: e616f4a74c0475cc0f8b33f46b724eb0e6b41b5a
diff --git a/layout/traversal.rs b/layout/traversal.rs index 7742ee365..cee485d62 100644 --- a/layout/traversal.rs +++ b/layout/traversal.rs @@ -128,13 +128,6 @@ pub trait PostorderDomTraversal { pub trait PostorderNodeMutTraversal { /// The operation to perform. Return true to continue or false to stop. fn ...
1
0
7
bde8a389285c08c9566ddc1f8473e0a41bb35561
Mathieu Rheaume
2015-10-04T17:12:37
servo: Merge #7693 - Implement Storage::SupportedPropertyNames (from ddrmanxbxfr:StorageSupportedAttributes); r=jdm Hi guys, This is a rough draft for issue #7670 . It includes : - SupportedPropertyNames implementation - WPT with Object.supportedpropertynames with Local Storage and Session Storage. The follow...
diff --git a/net/storage_task.rs b/net/storage_task.rs index c56efa283..25be0ff07 100644 --- a/net/storage_task.rs +++ b/net/storage_task.rs @@ -53,6 +53,9 @@ impl StorageManager { StorageTaskMsg::Key(sender, url, storage_type, index) => { self.key(sender, url, storage_type, index)...
3
22
2
b8ec0793239c36c448214f3c4765700561acc6a5
minimus
2015-10-03T18:23:57
servo: Merge #7836 - interpret empty data URI as plain text (from 6112:master); r=mbrubeck Fixes #7803. As @eefriedman pointed out, RFC 2397 says: > If &lt;mediatype&gt; is omitted, it defaults to text/plain;charset=US-ASCII. As a shorthand, "text/plain" can be omitted but the charset parameter supplied. Source-Rep...
diff --git a/net/data_loader.rs b/net/data_loader.rs index 257fd3440..2b90af74b 100644 --- a/net/data_loader.rs +++ b/net/data_loader.rs @@ -2,7 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -use hyper::mime::Mime; +use ...
1
12
4
8242242c4991f4dc2ce5e4fa5cffdbd2d9432cb7
Keith Yeung
2015-10-02T19:26:05
servo: Merge #7777 - Add support for caseless group name matching in HTML input elements (from KiChjang:caseless-group-name-match); r=jdm Fixes #7749 Source-Repo: https://github.com/servo/servo Source-Revision: e9842b7db2243ea72d9607c18753025e946788bd
diff --git a/script/Cargo.toml b/script/Cargo.toml index f6171914d..78ed8b1f2 100644 --- a/script/Cargo.toml +++ b/script/Cargo.toml @@ -91,3 +91,4 @@ euclid = "0.2" tendril = "0.1.1" rand = "0.3" serde = "0.6" +caseless = "0.1.0" diff --git a/script/dom/htmlinputelement.rs b/script/dom/htmlinputelement.rs index 1ae...
4
19
2
a302d76e60f5e378346a54e3c51124ef0a9f0348
Matt Brubeck
2015-10-02T08:27:31
servo: Merge #7821 - Incremental layout: Don't try to repair text fragment styles (from mbrubeck:class-damage); r=pcwalton Fixes #7814. r? @pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 69db83476d02d06658ad084a834abc94f7f008d0
diff --git a/layout/construct.rs b/layout/construct.rs index 2421a797b..73c353980 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -1375,11 +1375,17 @@ impl<'a> FlowConstructor<'a> { // FIXME(pcwalton): Fragment restyle damage too? flow_ref.repair_s...
1
10
4
fed422feb64dd9f92cccb700baa288a263fb701f
Patrick Walton
2015-10-01T06:08:34
servo: Merge #7802 - Handle zero-sized source surfaces properly, and upgrade `ipc-channel` to incorporate the fix for zero-sized shmem on Mac (from pcwalton:zero-size-source-surfaces); r=mbrubeck Depends on servo/rust-azure#201 and pcwalton/ipc-channel#10. Closes #7422. r? @mbrubeck (don't r+ until the upstream depe...
diff --git a/canvas/canvas_paint_task.rs b/canvas/canvas_paint_task.rs index 5d39c26fb..dadc37aef 100644 --- a/canvas/canvas_paint_task.rs +++ b/canvas/canvas_paint_task.rs @@ -459,11 +459,15 @@ impl<'a> CanvasPaintTask<'a> { } fn set_fill_style(&mut self, style: FillOrStrokeStyle) { - self.state.fil...
4
58
46
8c088606e25ae815087ec9dd451024ff508101bb
James Gilbertson
2015-10-01T04:49:41
servo: Merge #6185 - Implement <meta name=viewport> handling (from luniv:viewport-meta); r=mbrubeck Translate <meta name=viewport> as according to [CSS Device Adaption § 9](http://dev.w3.org/csswg/css-device-adapt/#viewport-meta) Note: as the PR currently stands, handling `<meta name=viewport>` elements always occurs...
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index 3535b8137..ee77270e6 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -78,8 +78,9 @@ use style::media_queries::{Device, MediaQueryList, MediaType}; use style::properties::longhands::{display, position}; use style::properties::style_stru...
5
387
36
eab23451c1dc29ffedb445b242149f41538553ee
Glenn Watson
2015-10-01T04:21:36
servo: Merge #7811 - Update servo to use published app units crate (from glennw:use-crates-au); r=larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: 0860be4c28ebaee36a0df4de3510d917b0e08cb7
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index bfd8e7578..c1dfc5893 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -7,9 +7,6 @@ authors = ["The Servo Project Developers"] name = "compositing" path = "lib.rs" -[dependencies.app_units] -path = "../app_units" - [dependencies.g...
9
18
33
51e3e469aeca3228c66472d51797864b702b91d3
Glenn Watson
2015-10-01T03:53:42
servo: Merge #7810 - Prepare app_units crate for publishing (from glennw:publish-au); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 99880bf9570d8a42692a44abefb3767e9bbbf223
diff --git a/app_units/Cargo.toml b/app_units/Cargo.toml index d324f7cb2..b019f8426 100644 --- a/app_units/Cargo.toml +++ b/app_units/Cargo.toml @@ -2,6 +2,10 @@ name = "app_units" version = "0.1.0" authors = ["The Servo Project Developers"] +description = "Servo app units type (Au)" +documentation = "http://doc.ser...
1
4
0
3c3d36fc7ee8e564aabd0e49b35f35cc080ac6e9
Matt Brubeck
2015-10-01T02:58:10
servo: Merge #7808 - Start the constellation with the correct pixel ratio (from mbrubeck:headless-dpr); r=mrobinson This may mitigate race conditions like #7730. r? @mrobinson Source-Repo: https://github.com/servo/servo Source-Revision: 9b37de965c9e7b2b906685e2f0ee915f1c901fb5
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index ffd898934..540267cc4 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -271,7 +271,8 @@ impl<LTF: LayoutTaskFactory, STF: ScriptTaskFactory> Constellation<LTF, STF> { S...
1
2
1
e8e36c26c7113b2ed60d969101d6cea91c446f0e
Corey Farwell
2015-10-01T01:34:44
servo: Merge #7806 - Make util::str::str_join consistent with SliceConcatExt::join (from frewsxcv:consistent-str-join); r=mbrubeck Prior to this commit, `str_join` would skip empty items at the start of the `Iterator` until it found a non-empty item. This contradicts `SliceConcatExt::join` which doesn't skip anything....
diff --git a/util/str.rs b/util/str.rs index 78a444be0..e2759e936 100644 --- a/util/str.rs +++ b/util/str.rs @@ -329,8 +329,8 @@ pub unsafe fn c_str_to_string(s: *const c_char) -> String { pub fn str_join<I, T>(strs: I, join: &str) -> String where I: IntoIterator<Item=T>, T: AsRef<str>, { - strs.into_iter().f...
1
2
2
24f7eddbdae68e08bb1135093ea8d956b4faf429
Philipp Hartwig
2015-10-01T01:06:18
servo: Merge #7801 - Refactor FormControl trait (from aopicier:refactor_formcontrol); r=Manishearth The trait is now implemented for HTMLFooElement instead of &HTMLFooElement and does no longer require an impl body. Suggested by @Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 94e85a5226fe5b...
diff --git a/script/dom/htmlbuttonelement.rs b/script/dom/htmlbuttonelement.rs index 7023a8ffd..8406fa2f8 100644 --- a/script/dom/htmlbuttonelement.rs +++ b/script/dom/htmlbuttonelement.rs @@ -191,11 +191,7 @@ impl VirtualMethods for HTMLButtonElement { } } -impl<'a> FormControl<'a> for &'a HTMLButtonElement { ...
9
24
54
1f7b4c03d318e6251564535c3a6633ee5330833d
Martin Robinson
2015-10-01T00:11:29
servo: Merge #7804 - Simplify stacking context creation (from mrobinson:cleanup-stacking-context-creation); r=pcwalton Have Fragment::create_stacking_context understand which stacking contexts need layers and which do not. This simplifies the way it is called and eliminates a bunch of code. Source-Repo: https://githu...
diff --git a/layout/block.rs b/layout/block.rs index 8203acaf8..a0768b9d9 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -51,7 +51,7 @@ use layout_debug; use layout_task::DISPLAY_PORT_SIZE_FACTOR; use model::{CollapsibleMargins, MaybeAuto, specified, specified_or_none}; use model::{IntrinsicISizes, MarginColl...
3
67
94