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
f5655cef93fe51237298cb1057a6fe2780a87ca9
Christian Sonne
2016-08-22T13:46:34
servo: Merge #12969 - Track only the number of important declarations in a declaration block (from cers:master); r=nox <!-- Please describe your changes on the following line: --> Track only the number of important declarations in a declaration block --- <!-- Thank you for contributing to Servo! Please replace each `...
diff --git a/script/dom/element.rs b/script/dom/element.rs index 26ad3eaee..9c5b80fb1 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -774,8 +774,6 @@ impl Element { Arc::make_mut(&mut declarations.declarations).remove(index); if importance.unwrap().important(...
3
8
26
da093217dd0ed30f5061361ac96ec75c4bfe3474
Nazım Can Altınova
2016-08-22T11:57:57
servo: Merge #12930 - Fix wrong calculation of inline element's block size (from canaltinova:border-bottom); r=emilio Border, padding and margin properties' top and bottom values of inline elements were affecting the element's height. It shouldn't affect it normally. Fixed it and added a test. --- <!-- Thank you for ...
diff --git a/layout/fragment.rs b/layout/fragment.rs index bfef94fdd..dbf6307ba 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -2008,10 +2008,8 @@ impl Fragment { let font_derived_metrics = InlineMetrics::from_font_metrics(&info.run.font_metrics, line_height); ...
1
2
4
ea8979b7fd5d5f199e0c7e7d937ea33bbfdccf35
hsinewu
2016-08-22T11:01:03
servo: Merge #12918 - 12902 typedefs (from hsinewu:12902-typedefs); r=Manishearth <!-- Please describe your changes on the following line: --> Using type alias instead of newtype. Removing duplicated implementation, it's already inherited. No more type constructors and foo.0 --- <!-- Thank you for contributing to Serv...
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index 2c0063b7c..27ff1f7eb 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -520,9 +520,9 @@ impl FragmentDisplayListBuilding for Fragment { }; // Use `background-position` to get ...
4
11
49
f317bcf520ce008d3f81d03499fd4b7e43636c2b
Zhen Zhang
2016-08-22T08:09:28
servo: Merge #12898 - Burn SelectedFileId in fire (from izgzhen:burn-selected-file-id); r=Manishearth r? @Manishearth --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors Source-Repo: https://github.com/servo/servo Source-Revision: 43d4a459c0080215de10f43ea74b786...
diff --git a/net/Cargo.toml b/net/Cargo.toml index c87485fee..c2e1dee90 100644 --- a/net/Cargo.toml +++ b/net/Cargo.toml @@ -39,7 +39,7 @@ time = "0.1.17" unicase = "1.4.0" url = {version = "1.2", features = ["heap_size", "rustc-serialize"]} util = {path = "../util"} -uuid = {version = "0.3", features = ["v4"]} +uui...
11
71
100
4848815d795e160938d6aedac79c925ff6c6b77a
Ashwin R
2016-08-22T06:22:04
servo: Merge #12962 - Cached element class names in style sharing cache with lazy computation (from ashrko619:cache-element-classnames); r=notriddle <!-- Please describe your changes on the following line: --> Fixes #12912 Added a field to StyleSharingCandidate to lazily compute and cache the class names. --- <!-- Th...
diff --git a/style/matching.rs b/style/matching.rs index ffd69ebd5..9dc468098 100644 --- a/style/matching.rs +++ b/style/matching.rs @@ -186,6 +186,8 @@ struct StyleSharingCandidate { style: Arc<ComputedValues>, /// The cached common style affecting attribute info. common_style_affecting_attributes: Opti...
1
15
7
b75a46df2c4ca9e11ac54076cbb0ba6430cb7450
Glenn Watson
2016-08-21T22:05:55
servo: Merge #12932 - Update for webrender API change, and remove webrender specific hack (from glennw:update-wr2); r=ConnorGBrewster <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__...
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index 8133fd9dc..2c0063b7c 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -1314,7 +1314,7 @@ impl FragmentDisplayListBuilding for Fragment { -> Box<StackingContext> { ...
2
3
3
b33ca51feffbe11e2a794b06cba0e7578d05e794
Anthony Ramine
2016-08-21T05:47:10
servo: Merge #12955 - Use try_borrow instead of borrow_state (from nox:try-borrow); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 530c36a99ad7faad585bd9998de44b918aa737bc
diff --git a/script/dom/bindings/cell.rs b/script/dom/bindings/cell.rs index 37143165a..3eb2a978c 100644 --- a/script/dom/bindings/cell.rs +++ b/script/dom/bindings/cell.rs @@ -6,7 +6,7 @@ use dom::bindings::trace::JSTraceable; use js::jsapi::JSTracer; -use std::cell::{BorrowState, Ref, RefCell, RefMut}; +use std::...
2
32
45
44e0b70316bb188a139e033f51817cc8219de2af
Anthony Ramine
2016-08-20T18:35:04
servo: Merge #12861 - Clean up some iterators (from nox:impl-trait); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 8a75810eba22a76b78ca2ef4db64f946013f780f
diff --git a/layout/flow.rs b/layout/flow.rs index 29102690a..2b4295782 100644 --- a/layout/flow.rs +++ b/layout/flow.rs @@ -31,7 +31,7 @@ use context::LayoutContext; use display_list_builder::DisplayListBuildState; use euclid::{Point2D, Rect, Size2D}; use floats::{Floats, SpeculatedFloatPlacement}; -use flow_list::...
4
12
46
5aadd750ed45cb8c30b05a6bc9d26b63abd6a4c6
Anthony Ramine
2016-08-20T15:32:44
servo: Merge #12953 - Update Rust to 1.13.0-nightly (499484f56 2016-08-18) (from servo:rustup); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: ef2ee4646fedc45e37fdf16658a70c849744ed32
diff --git a/plugins/lints/unrooted_must_root.rs b/plugins/lints/unrooted_must_root.rs index fe4b44d07..4e4d23283 100644 --- a/plugins/lints/unrooted_must_root.rs +++ b/plugins/lints/unrooted_must_root.rs @@ -139,10 +139,8 @@ impl LateLintPass for UnrootedPass { } if !in_new_function { - ...
2
71
73
b71ddb19317b8e55c8783ef845132a33b44a45b3
Anthony Ramine
2016-08-20T10:55:00
servo: Merge #12947 - Update selectors to 0.11 (from nox:selectors); r=SimonSapin This brings :not() with proper list of complex selectors as argument. Source-Repo: https://github.com/servo/servo Source-Revision: 6d56b21adff2947eb63821b9b6bbc7872e7c2142
diff --git a/layout/Cargo.toml b/layout/Cargo.toml index 0ac6e8698..14585fcc4 100644 --- a/layout/Cargo.toml +++ b/layout/Cargo.toml @@ -33,7 +33,7 @@ range = {path = "../range"} rustc-serialize = "0.3" script_layout_interface = {path = "../script_layout_interface"} script_traits = {path = "../script_traits"} -selec...
7
38
38
105228747985e18fc8c22e8544459682f4508adc
Ms2ger
2016-08-19T21:21:31
servo: Merge #12903 - Remove unused imports (from servo:imports); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: bf8b7ba6b06729031886db285d54045a4b61ef0e
diff --git a/style/traversal.rs b/style/traversal.rs index 490e6a2f1..ed84fafa3 100644 --- a/style/traversal.rs +++ b/style/traversal.rs @@ -6,7 +6,7 @@ use animation; use context::{LocalStyleContext, SharedStyleContext, StyleContext}; -use dom::{OpaqueNode, TElement, TNode, TRestyleDamage, UnsafeNode}; +use dom::{...
1
1
2
62ca1d2cd17df6ba98aef4054022ecd655c1542d
Manish Goregaokar
2016-08-19T19:24:08
servo: Merge #12878 - stylo: Support clip-path (from Manishearth:clip-path); r=heycam Todo: - [x] `set_clip_path` (probably needs a bunch of gecko bindings for running constructors/destructors) - [ ] Ensure that I've ordered the coordinates correctly - [ ] Check that it works - [x] Might want to convert NS_STYLE_...
diff --git a/style/gecko_conversions.rs b/style/gecko_conversions.rs index ede574d18..4e3a5acf2 100644 --- a/style/gecko_conversions.rs +++ b/style/gecko_conversions.rs @@ -79,3 +79,182 @@ impl From<nsStyleCoord_CalcValue> for LengthOrPercentage { } } } + +pub mod basic_shape { + use euclid::size::Siz...
7
585
5
b017e4442219343bfc3a733dd8cbbd71ce52f83b
Simon Sapin
2016-08-19T18:01:29
servo: Merge #12924 - Update selectors to 0.10, with ToCss serialization (from servo:selectors-ser); r=nox <!-- Please describe your changes on the following line: --> r? @emilio --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropria...
diff --git a/layout/Cargo.toml b/layout/Cargo.toml index 5b6baf338..0ac6e8698 100644 --- a/layout/Cargo.toml +++ b/layout/Cargo.toml @@ -33,7 +33,7 @@ range = {path = "../range"} rustc-serialize = "0.3" script_layout_interface = {path = "../script_layout_interface"} script_traits = {path = "../script_traits"} -selec...
12
117
37
94f5eb67905c0ee2319ede12b49ddcb3dbd46b20
Emilio Cobos Álvarez
2016-08-18T23:39:32
servo: Merge #12895 - stylo: Improve pseudo element restyling and support the content property (from emilio:stylo-pseudos); r=bholley <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__...
diff --git a/style/gecko_selector_impl.rs b/style/gecko_selector_impl.rs index 7002483e9..d78349af2 100644 --- a/style/gecko_selector_impl.rs +++ b/style/gecko_selector_impl.rs @@ -34,7 +34,7 @@ pub struct PseudoElement(Atom, bool); impl PseudoElement { #[inline] - fn as_atom(&self) -> &Atom { + pub fn as...
2
89
2
939ab58299e28756ad65a3a10d62e560965d4f6a
Anthony Ramine
2016-08-18T18:30:12
servo: Merge #12925 - Update to webrender 0.4.0 (from nox:wr-merge); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: c769db69108c6dc50492abeaf1cd4de1653a04c9
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index 7475dc720..0dce4c0a8 100644 --- a/canvas/Cargo.toml +++ b/canvas/Cargo.toml @@ -23,6 +23,6 @@ plugins = {path = "../plugins"} util = {path = "../util"} [dependencies.webrender_traits] -git = "https://github.com/servo/webrender_traits" +git = "https://github.c...
13
32
32
e231785a2fad4dfff1139c8489024993af18a8bc
Emilio Cobos Álvarez
2016-08-18T16:22:06
servo: Merge #12863 - script: Disable our dependency in ffmpeg until the media madness is over (from emilio:disable-media); r=larsbergstrom <!-- Please describe your changes on the following line: --> r? @larsbergstrom --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is ...
diff --git a/script/Cargo.toml b/script/Cargo.toml index 135ead857..1109e977e 100644 --- a/script/Cargo.toml +++ b/script/Cargo.toml @@ -20,9 +20,6 @@ cmake = "0.1" [target.'cfg(any(target_os = "macos", target_os = "linux", target_os = "windows"))'.dependencies] tinyfiledialogs = {git = "https://github.com/jdm/tinyfi...
4
3
42
136f14f3cd5cd08d877049aa5d7a8165d8dd5b11
Connor Brewster
2016-08-18T03:11:59
servo: Merge #12909 - Add FrameState (from cbrewster:framestate); r=asajeffrey <!-- Please describe your changes on the following line: --> r? @asajeffrey Might as well get this in now, since it may be a while before I can figure out what is causing the panics on the pending pipelines PR. --- <!-- Thank you for contr...
diff --git a/constellation/constellation.rs b/constellation/constellation.rs index 6f421e1a8..cd2df073d 100644 --- a/constellation/constellation.rs +++ b/constellation/constellation.rs @@ -219,12 +219,29 @@ pub struct InitialConstellationState { pub webrender_api_sender: Option<webrender_traits::RenderApiSender>, ...
1
66
49
4fde277b615e2c3d5e6bf94880b314e6c6560610
Manish Goregaokar
2016-08-17T12:35:43
servo: Merge #12826 - Add safer bindings for dealing with owned Arcs over FFI (from Manishearth:addref); r=emilio,bholley Not yet ready to land, since I need to implement the logic for borrowed refs too. Ready for review for the first part. The corresponding gecko changes are at https://github.com/servo/gecko-dev/com...
diff --git a/style/gecko_conversions.rs b/style/gecko_conversions.rs index 56e2e3bbc..ede574d18 100644 --- a/style/gecko_conversions.rs +++ b/style/gecko_conversions.rs @@ -6,10 +6,23 @@ //! Ideally, it would be in geckolib itself, but coherence //! forces us to keep the traits and implementations here +#![allow(un...
5
19
72
df5fe39719778d4917c69935d66c4e7a60fb565d
Zhen Zhang
2016-08-17T11:38:34
servo: Merge #12897 - Improve File API related comments (from izgzhen:improve-file-api-comments); r=Manishearth r? @Manishearth --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors Source-Repo: https://github.com/servo/servo Source-Revision: f4f212fd18290eab51eaa...
diff --git a/net/filemanager_thread.rs b/net/filemanager_thread.rs index 5f9e6654b..4bfa44e87 100644 --- a/net/filemanager_thread.rs +++ b/net/filemanager_thread.rs @@ -23,7 +23,7 @@ use util::prefs::PREFS; use util::thread::spawn_named; use uuid::Uuid; -/// Trait that provider of file-dialog UI should implement. +...
3
18
20
ac657667f62619af4dfbc08b0d2d1d6f339f545f
Zhen Zhang
2016-08-17T09:52:42
servo: Merge #12896 - Improve Blob.Size() speed by avoid reading content (from izgzhen:fix-blob-size); r=Manishearth r? @Manishearth --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors Source-Repo: https://github.com/servo/servo Source-Revision: 2eb0328738834651...
diff --git a/script/dom/blob.rs b/script/dom/blob.rs index 4711da800..11f323af6 100644 --- a/script/dom/blob.rs +++ b/script/dom/blob.rs @@ -357,11 +357,12 @@ pub fn blob_parts_to_bytes(blobparts: Vec<BlobOrString>) -> Result<Vec<u8>, ()> impl BlobMethods for Blob { // https://w3c.github.io/FileAPI/#dfn-size ...
1
6
5
88aa49aa35d101487e601bcaa1b7073ecdb00785
Emilio Cobos Álvarez
2016-08-17T05:35:16
servo: Merge #12843 - layout: Make the stacking context take into account the children transform when calculating overflow areas (from emilio:transforms); r=glennw <!-- Please describe your changes on the following line: --> This is a potential fix for #12842. I have done only the math to handle simple transforms b...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 17f9be5b4..d9befc61f 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -360,7 +360,7 @@ impl DisplayList { return Some(stacking_context); } - for kid in stacking_context.children.iter() { ...
5
85
32
0c88851fe09f0b2e1414ca7d5b5b024e8f375f31
Glenn Watson
2016-08-17T03:50:35
servo: Merge #12887 - Update webrender + shaders (from glennw:wr2-update); r=pcwalton <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [ ] `./mach build...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index a31a5594e..38eaf2274 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2593,7 +2593,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.2.0" -source = "git+https://github.com/servo/webrender#c84b6eb466dc6802b2b85cff481a5a08a9efadc1" +source ...
1
1
1
d360efe773aa63300d8a57f9fb239e93d88147be
Emilio Cobos Álvarez
2016-08-16T18:48:20
servo: Merge #12838 - Fix restyling on viewport resize (from emilio:viewport); r=SimonSapin <!-- Please describe your changes on the following line: --> Fixes https://github.com/servo/servo/issues/12835 --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and re...
diff --git a/layout_thread/lib.rs b/layout_thread/lib.rs index acc1daca8..f9389fc1e 100644 --- a/layout_thread/lib.rs +++ b/layout_thread/lib.rs @@ -1114,6 +1114,14 @@ impl LayoutThread { if node.needs_dirty_on_viewport_size_changed() { // NB: The dirty bit is propagated do...
12
181
46
8ef450b9fbd8469c5fbdb130c3c6a446fadef20f
Emilio Cobos Álvarez
2016-08-16T17:50:29
servo: Merge #12815 - stylo: Use atoms as the pseudo-element back-end (from emilio:stylo-atoms); r=bholley <!-- Please describe your changes on the following line: --> A bit of work left, and we can uber-optimize this (left comments, will fill follow-ups), but this is a decent refactor so I thought I'd rather get som...
diff --git a/style/gecko_selector_impl.rs b/style/gecko_selector_impl.rs index 055bf5f7f..7002483e9 100644 --- a/style/gecko_selector_impl.rs +++ b/style/gecko_selector_impl.rs @@ -12,104 +12,85 @@ use stylesheets::Stylesheet; #[derive(Debug, Clone, PartialEq, Eq)] pub struct GeckoSelectorImpl; +/// NOTE: The boole...
4
378
289
fd44022aa05104a6ddb19dd991362b80fb44e2d1
Ms2ger
2016-08-16T16:10:11
servo: Merge #12893 - Update glutin (from servo:glutinup); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: e5391554e0444a9ea48bfd4556226bcc68f16d14
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 6cc998d5f..a31a5594e 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2,7 +2,7 @@ name = "servo" version = "0.0.1" dependencies = [ - "android_glue 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "android_glue 0.2.0 (registry+https://gi...
2
13
14
e600b6c8fe5e4a31728acfc739fec5ee8751f549
Anthony Ramine
2016-08-16T10:19:37
servo: Merge #12890 - Lessen pressure on the thread-local RNG (from nox:rng-pressure); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 2b74e94b730cfbf35dda7d5bc5775810a578eebc
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index e38d434b2..aa07b1d08 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -34,6 +34,7 @@ use std::fs::File; use std::io::Read; use std::iter::FromIterator; use std::mem::swap; +use std::ops::Deref; use std::rc::Rc; use std::sync::mpsc::{chan...
2
16
10
d8e705316173b312cb8185fadb08d5f831f8c656
Shing Lyu
2016-08-15T13:19:04
servo: Merge #12873 - Fix absolute-flow's auto positioning (from shinglyu:abs-margin-patch); r=notriddle,emilio <!-- Please describe your changes on the following line: --> If an absolute positioned flow has no top, bottom, left, right property, its hypothetical box position should be the margin-end of its previous si...
diff --git a/layout/block.rs b/layout/block.rs index 1dcadb832..178e0294e 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -817,11 +817,14 @@ impl BlockFlow { for (child_index, kid) in self.base.child_iter_mut().enumerate() { if flow::base(kid).flags.contains(IS_ABSOLUTELY_POSITIONED)...
1
5
2
911e7b26d8610bd715fe090e82a0b3582b6bfb62
Patrick Trottier
2016-08-14T17:48:06
servo: Merge #12849 - Fix GFX Warnings (from Coder206:gfxWarnings); r=Wafflespeanut <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -...
diff --git a/gfx/text/glyph.rs b/gfx/text/glyph.rs index 9e5e7cf73..26b5a5a0e 100644 --- a/gfx/text/glyph.rs +++ b/gfx/text/glyph.rs @@ -22,7 +22,7 @@ pub use gfx_traits::ByteIndex; /// glyph offsets), we pack the glyph count into GlyphEntry, and store the other glyph information /// in DetailedGlyphStore. #[derive(...
1
2
2
81f7b69f2c7e823480ab3849a17a3b2e6b0c4154
Anthony Ramine
2016-08-14T13:26:21
servo: Merge #12854 - Use impl Trait syntax for Node::child_elements (from nox:impl-trait); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 27d082e5779904a5e68e99841ae1511ff126bacd
diff --git a/script/dom/node.rs b/script/dom/node.rs index 2769b7503..34e69552f 100644 --- a/script/dom/node.rs +++ b/script/dom/node.rs @@ -70,7 +70,7 @@ use std::borrow::ToOwned; use std::cell::{Cell, UnsafeCell}; use std::cmp::max; use std::default::Default; -use std::iter::{self, FilterMap, Peekable}; +use std::...
2
6
9
4444e024baa2e04109e0ee9b3f14c0b6fb3969fb
Eric Anholt
2016-08-14T09:46:17
servo: Merge #12857 - Implement GL_FRAMEBUFFER_BINDING (and fix a VertexAttrib1fv typo) (from anholt:webgl-framebuffer-binding-2); r=emilio <!-- Please describe your changes on the following line: --> This PR fixes many webgl conformance test failures due to missing support for a getParameter() call in the webgl test ...
diff --git a/script/dom/webglrenderingcontext.rs b/script/dom/webglrenderingcontext.rs index a7418921e..4db5654d7 100644 --- a/script/dom/webglrenderingcontext.rs +++ b/script/dom/webglrenderingcontext.rs @@ -82,6 +82,7 @@ pub struct WebGLRenderingContext { #[ignore_heap_size_of = "Defined in webrender_traits"] ...
1
25
1
75ac8fe6ff6e82d5084c69a6b4066e928ad73b38
Michael Howell
2016-08-14T07:27:19
servo: Merge #12839 - Fix a cached style cascade bug that only manifested in sequential mode (from notriddle:11818_sequential_layout_bug); r=emilio When copying cached styles, keep the `writing_mode` up to date. --- - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any error...
diff --git a/constellation/pipeline.rs b/constellation/pipeline.rs index 677068b2d..efd5c3778 100644 --- a/constellation/pipeline.rs +++ b/constellation/pipeline.rs @@ -162,7 +162,7 @@ impl Pipeline { pipeline_port: pipeline_port, layout_to_constellation_chan: state.layout_to_c...
3
22
15
322023ad2e7ff868e051b0adf50543e2e522d425
Jeena Lee
2016-08-13T20:26:15
servo: Merge #12851 - Fix step 31 of the Request constructor (from jeenalee:request); r=nox <!-- Please describe your changes on the following line: --> This PR fixes the step 31 of the Request constructor to fill Request's Headers object and rethrow any exceptions. Additionally, it removes unnecessary line breaks, co...
diff --git a/script/dom/request.rs b/script/dom/request.rs index 7f6121575..c396c0d36 100644 --- a/script/dom/request.rs +++ b/script/dom/request.rs @@ -32,7 +32,7 @@ use net_traits::request::Request as NetTraitsRequest; use net_traits::request::RequestMode as NetTraitsRequestMode; use net_traits::request::Type as Ne...
1
3
15
9fbaa02773855b4487311327c29edd97dd946a3f
Anthony Ramine
2016-08-13T18:37:37
servo: Merge #12846 - Update Rust to 1.12.0-nightly (1deb02ea6 2016-08-12) (from servo:rustup); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 476df170453d2805ba4b9d138804c0b189679dc8
diff --git a/layout/fragment.rs b/layout/fragment.rs index 254ed8d41..bfef94fdd 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -23,7 +23,7 @@ use inline::{InlineMetrics, LAST_FRAGMENT_OF_ELEMENT}; use ipc_channel::ipc::IpcSender; #[cfg(debug_assertions)] use layout_debug; -use model::{self, Direction, I...
7
15
27
9841bacfe759d2fed23ec999a68ea423839ddc05
Michael Howell
2016-08-13T01:55:27
servo: Merge #12831 - Add a flag to dump the computed style values (from notriddle:master); r=Manishearth I used this to trace #11818 to a style bug, rather than a layout bug. --- - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes do not fix any...
diff --git a/layout_thread/lib.rs b/layout_thread/lib.rs index 16b3b9e57..acc1daca8 100644 --- a/layout_thread/lib.rs +++ b/layout_thread/lib.rs @@ -1187,6 +1187,10 @@ impl LayoutThread { self.root_flow = self.try_get_layout_root(node); } + if opts::get().dump_style_tree { + no...
4
48
0
98691360bd73d18fd174855b6180d4e692ca55c0
David Tolnay
2016-08-13T00:01:28
servo: Merge #12834 - Remove #[serde(bound = "")] attributes (from dtolnay:bound); r=nox These were fixed in serde_codegen 0.8.0 by serde-rs/serde#456. cc @nox - [ ] `./mach build -d` does not report any errors - [ ] `./mach test-tidy` does not report any errors - [x] These changes do not require tests because: the ...
diff --git a/canvas_traits/lib.rs b/canvas_traits/lib.rs index 3682d2523..db945750a 100644 --- a/canvas_traits/lib.rs +++ b/canvas_traits/lib.rs @@ -74,7 +74,6 @@ pub enum FromLayoutMsg { } #[derive(Clone, Deserialize, Serialize)] -#[serde(bound = "")] // Prevent serde from generating cyclic bounds. pub enum Canva...
3
0
3
aa88cdd6066e9f4baefb22540a18998c63dfe432
Ms2ger
2016-08-12T23:10:03
servo: Merge #12822 - Update shared_library (from servo:shared_library); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 7a30eaae23a4e22cdfd5425f88bb22018fb712f4
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 3b1678bd7..7351981ff 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -1653,7 +1653,7 @@ version = "0.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-ind...
1
4
4
29111001c7fca2ea371a24341591677794f09c86
Ravi Shankar
2016-08-12T03:02:01
servo: Merge #12795 - Support 'word-spacing' for geckolib (from Wafflespeanut:word_spacing); r=Manishearth **These changes haven't been tested yet!** --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [ ] There are tests for these changes Source-Repo: https:...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 4ebe4a5a1..f1014308e 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -1173,7 +1173,7 @@ fn static_assert() { </%self:impl_trait> <%self:impl_trait style_struct_name="InheritedText" - ...
1
17
1
9baa02819944fa80525f18d030c9690cafc95c5d
Emilio Cobos Álvarez
2016-08-11T10:34:27
servo: Merge #12813 - dom: getElementsFromPoint does the hit testing on viewport coordinates (from emilio:hit-test); r=notriddle <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` wit...
diff --git a/layout/query.rs b/layout/query.rs index d87429734..3f45941e9 100644 --- a/layout/query.rs +++ b/layout/query.rs @@ -148,7 +148,9 @@ impl LayoutRPC for LayoutRPCImpl { let result = match rw_data.display_list { None => panic!("Tried to hit test without a DisplayList"), ...
2
8
6
8e5aa3f0cf32f6a8640ab555a5399acce0b2931e
Alexandrov Sergey
2016-08-11T08:38:14
servo: Merge #12669 - Inline pseudo elements layout#12367 (from splav:inline_pseudo_elements_layout#12367); r=notriddle <!-- Please describe your changes on the following line: --> This PR fixes ignored paddings and margins for inline pseudo elements. --- <!-- Thank you for contributing to Servo! Please replace each ...
diff --git a/layout/construct.rs b/layout/construct.rs index 33b88f6b8..bb7f03721 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -714,7 +714,11 @@ impl<'a, ConcreteThreadSafeLayoutNode: ThreadSafeLayoutNode> } let mut style = (*style).clone(); - properties::modify_style_for_tex...
2
14
2
97d04d8bc0a3aaa261a34608e9c6d89d605863f6
Ms2ger
2016-08-11T07:16:17
servo: Merge #12816 - Update ordered-float (from servo:always-be-updating); r=Wafflespeanut Source-Repo: https://github.com/servo/servo Source-Revision: ef442556c2f420ea8f9011df0a9e1b7a55c8b238
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 126dcf452..26573a2b5 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -766,7 +766,7 @@ dependencies = [ "mime 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", - "ordered-float 0.2.2 (registry+https://gith...
1
6
19
1a0c66d46d67208fc6c2d7e366b2fb47379d08cd
Paul Rouget
2016-08-11T04:00:14
servo: Merge #12812 - browserhtml update (from paulrouget:bhtmlup); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 2f8eebb2525d56b7242a4be5365a1f68a049845e
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 3f8ec6e3a..126dcf452 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -193,7 +193,7 @@ dependencies = [ [[package]] name = "browserhtml" version = "0.1.15" -source = "git+https://github.com/browserhtml/browserhtml?branch=crate#702f464d19848147636369331508...
1
1
1
6856cb4f0ac96b8303d2b19de3f5ba2c8154f5be
Emilio Cobos Álvarez
2016-08-11T02:02:30
servo: Merge #12757 - stylo: Stop restyling display: none elements, remove the has_changed hack that made us use ReconstructFrame unconditionally (from emilio:stylo); r=bholley,pcwalton <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]`...
diff --git a/layout/animation.rs b/layout/animation.rs index 5222d4ba7..71a388dcf 100644 --- a/layout/animation.rs +++ b/layout/animation.rs @@ -135,7 +135,7 @@ pub fn recalc_style_for_animations(context: &SharedLayoutContext, update_style_for_animation(&context.style_context, ...
13
464
161
4270d3487c07f36415b1eb8da81cea3d099a1f64
Alan Jeffrey
2016-08-11T01:02:53
servo: Merge #12657 - Print backtraces for panics, even if the constellation has closed (from asajeffrey:panic-backtrace-println); r=nox <!-- Please describe your changes on the following line: --> At the moment, threads rely on the constellation to print out the reason for a panic, so panics that happen after the co...
diff --git a/constellation/constellation.rs b/constellation/constellation.rs index 291ed48dd..fcf174cc8 100644 --- a/constellation/constellation.rs +++ b/constellation/constellation.rs @@ -1090,7 +1090,7 @@ impl<Message, LTF, STF> Constellation<Message, LTF, STF> if opts::get().hard_fail { // It's...
2
12
5
37aac4041b28cb8d66b62cdf990e385db62c814b
Emilio Cobos Álvarez
2016-08-10T23:50:33
servo: Merge #12777 - layout: Take into account the client point for fixed positioned stacking contexts (from emilio:hit-test); r=pcwalton <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replac...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index c7143457d..2942c75ac 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -61,7 +61,7 @@ pub static BLUR_INFLATION_FACTOR: i32 = 3; /// LayerInfo is used to store PaintLayer metadata during DisplayList construction. /// It is also u...
7
79
45
37b231314534652da38bb75ebbed9e0cbd6be697
Eric Anholt
2016-08-10T10:40:19
servo: Merge #12794 - webgl: Validate that depthRange near <= far (from anholt:webgl-depthrange-validate); r=emilio <!-- Please describe your changes on the following line: --> Add a check for one of the subcases of webgl-specific.html. I added a longer comment citing the spec than is common in the file -- we've fou...
diff --git a/script/dom/webglrenderingcontext.rs b/script/dom/webglrenderingcontext.rs index dbb774ad8..a7418921e 100644 --- a/script/dom/webglrenderingcontext.rs +++ b/script/dom/webglrenderingcontext.rs @@ -987,6 +987,15 @@ impl WebGLRenderingContextMethods for WebGLRenderingContext { // https://www.khronos.or...
1
9
0
f9abd8fbebec87e55ce50625938f044f7de52d34
Alexandrov Sergey
2016-08-09T16:05:57
servo: Merge #12760 - Inline split fixes#12699 (from splav:inline_split_fixes#12699); r=notriddle <!-- Please describe your changes on the following line: --> Fix fragment splitting algorithm to set FIRST/LAST_FRAGMENT_OF_ELEMENT flag correctly, account for border_padding for border_box and set zero border_padding bet...
diff --git a/layout/fragment.rs b/layout/fragment.rs index 0ddb083c1..254ed8d41 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -1644,7 +1644,7 @@ impl Fragment { _ => return None, }; - let mut remaining_inline_size = max_inline_size; + let mut remaining_inline_size =...
2
18
2
cd9f81906d2c9d0ef3341ce8eb5429dbb5d18578
Ravi Shankar
2016-08-09T15:13:30
servo: Merge #12783 - Prefer length and percentage for word spacing (from Wafflespeanut:word_spacing); r=Manishearth <!-- Please describe your changes on the following line: --> The goal is to make use of `LengthOrPercentage` for word spacing in `ShapingOptions`, but since it makes use of `f32` which doesn't implement...
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index 450c95788..62e5927e4 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -28,6 +28,7 @@ log = "0.3.5" mime = "0.2" msg = {path = "../msg"} net_traits = {path = "../net_traits"} +ordered-float = "0.2.2" plugins = {path = "../plugins"} profile_traits = {path = "../p...
12
59
9
491d863ee33ff0bd8f158af9014cd7aa12284bc3
Anthony Ramine
2016-08-09T14:03:10
servo: Merge #12768 - Fix interpolation of CalcLengthOrPercentage (fixes #12765) (from nox:fix-transition); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 44ebbfc20de186f66eb39f6c076b369ed4e3c8ed
diff --git a/style/properties/helpers/animated_properties.mako.rs b/style/properties/helpers/animated_properties.mako.rs index c9a3ab8cb..be4a26305 100644 --- a/style/properties/helpers/animated_properties.mako.rs +++ b/style/properties/helpers/animated_properties.mako.rs @@ -326,9 +326,25 @@ impl Interpolate for CSSPa...
2
20
5
3398ac97136a7d119c6aaafd5208bc8096b51578
Glenn Watson
2016-08-08T21:39:08
servo: Merge #12779 - Remove some unused WR1 shaders, copy new shaders, update WR hash (from glennw:wr-shaders-tidy); r=pcwalton <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` wit...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 6a1927a08..9077a2cd2 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2554,7 +2554,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.1.0" -source = "git+https://github.com/servo/webrender#66b7134918a56c561cbdf72ab284f5da83459ec4" +source ...
1
1
1
2974d83d1e93867b840f0dcf8ffe9f25c962f710
Anthony Ramine
2016-08-08T14:59:40
servo: Merge #12770 - Use expect calls to investigate #12540 and #12288 (from nox:intermittent-study); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: c420a870c1b1bca7e740e8bb737ef2bcdb1a139d
diff --git a/gfx/font_cache_thread.rs b/gfx/font_cache_thread.rs index 314def3b2..4ba4af2b3 100644 --- a/gfx/font_cache_thread.rs +++ b/gfx/font_cache_thread.rs @@ -423,10 +423,13 @@ impl FontCacheThread { pub fn find_font_template(&self, family: FontFamily, desc: FontTemplateDescriptor) ...
1
12
6
68888fcf0887d78cf5f446cca48c89638b4b8c24
Martin Robinson
2016-08-08T13:41:49
servo: Merge #12742 - Simplify and extend trans-stacking-context subpixel accumulation (from mrobinson:off-by-one-ng-2); r=pcwalton <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` ...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 0073b1b0a..c7143457d 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -18,7 +18,7 @@ use app_units::Au; use azure::azure::AzFloat; use azure::azure_hl::Color; use euclid::approxeq::ApproxEq; -use euclid::num::Zero; +use euclid:...
2
40
23
cbdc23b0a873492dde9072f3dabda0a711b048a3
Pu Xingyu
2016-08-08T05:39:05
servo: Merge #12754 - Fix unexpected freeze of flex item (from stshine:no-divide-by-zero); r=pcwalton <!-- Please describe your changes on the following line: --> Fix the currently logic that a item will freeze if it should grow(shrink) and its basesize is less(more) than its min(max) size. This also fix the divide b...
diff --git a/layout/flex.rs b/layout/flex.rs index f591f023f..64cc24a07 100644 --- a/layout/flex.rs +++ b/layout/flex.rs @@ -276,9 +276,8 @@ impl FlexLine { // https://drafts.csswg.org/css-flexbox/#resolve-flexible-lengths for item in items.iter_mut().filter(|i| !(i.is_strut && collapse)) { ...
1
3
4
6f7e275d24c2e8c0620c703673b5a5c3e44264b1
Bobby Holley
2016-08-06T14:59:37
servo: Merge #12750 - stylo: Use AtomicUsize to store our initial computed values (from bholley:atomic_ptr); r=Manishearth This addresses the discussion in https://github.com/servo/servo/pull/12725/files/b916ad0a85b88eb40d919986cdc0c6b7420a4fab#r73459385 Source-Repo: https://github.com/servo/servo Source-Revision: 84...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index f1451c319..3037f78cd 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -36,6 +36,8 @@ use properties::CascadePropertyFn; use properties::longhands; use std::fmt::{self, Debug}; use std::mem::{transmut...
1
20
8
81c8c32ebe290cd1f690bafac12f91a4d3d31489
Mason Chang
2016-08-05T15:33:08
servo: Merge #12741 - update servo to use webrender shaders (from changm:shader); r=ConnorGBrewster <!-- Please describe your changes on the following line: --> Pulls shaders from webrender and update the webrender commit. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step i...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 599a76976..6a1927a08 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2554,7 +2554,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.1.0" -source = "git+https://github.com/servo/webrender#eebe599cab295271900d7fbbe3017232dcbba867" +source ...
1
1
1
bbd10ff6c53be98bc58fc33f0bba5383eed1dac9
Anthony Ramine
2016-08-05T12:46:27
servo: Merge #12712 - Update Rust to 1.12.0-nightly (545a3a94f 2016-08-04) (from servo:rustup); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 414204c909e316ca0775881eb3a65875bf81500f
diff --git a/layout/table_cell.rs b/layout/table_cell.rs index f012121f5..a7778738d 100644 --- a/layout/table_cell.rs +++ b/layout/table_cell.rs @@ -19,7 +19,6 @@ use gfx_traits::StackingContextId; use gfx_traits::print_tree::PrintTree; use layout_debug; use model::MaybeAuto; -use script_layout_interface::restyle_da...
5
6
8
e84c2826ed558881d7c82e1ad49bc177236928c8
Manish Goregaokar
2016-08-05T11:27:24
servo: Merge #12680 - style: Add support for parsing and serialization of <basic-shape>s (from Manishearth:basic-shape); r=SimonSapin Still WIP: I still need to use this somewhere and make serialization minimal. I'm not sure if I should do either in this PR. The only other browser that handles basic shapes doesn't ser...
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index 58ff6d23e..229f826b4 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -520,9 +520,9 @@ impl FragmentDisplayListBuilding for Fragment { }; // Use `background-position` to get ...
12
981
181
e5e90ff67a7e2893bd9bcc64474d1833329a5b58
Anthony Ramine
2016-08-04T15:02:42
servo: Merge #12733 - Print thread name and file location when panicking (from nox:panic-location); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: aced80b56de7921faec73cc1d0fd92c0dd4aa325
diff --git a/servo/main.rs b/servo/main.rs index 64112fde5..7da24dd1d 100644 --- a/servo/main.rs +++ b/servo/main.rs @@ -41,6 +41,7 @@ use servo::util::servo_version; use std::panic; use std::process; use std::rc::Rc; +use std::thread; pub mod platform { #[cfg(target_os = "macos")] @@ -107,7 +108,13 @@ fn ma...
1
8
1
304551c7c95ba8f3b65c0cf3b15c714359593211
Paul Rouget
2016-08-04T10:33:40
servo: Merge #12731 - Browserhtml update (from paulrouget:bhtmlupdate); r=nox We also changed the branch name. Fix #12012 Source-Repo: https://github.com/servo/servo Source-Revision: 41cb4f4c77e8873a291218284db41118da43f708
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index a5970caa2..599a76976 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)", "backtrace 0.2.2 (registry+https://github.com/rust-lang/c...
2
3
3
c48664aadae165280c228169ecbd2edc66bdfe6a
Xidorn Quan
2016-08-04T09:27:55
servo: Merge #12728 - Remove unused libc dependency for windows in style (from upsuper:fix-libc-unused); r=emilio <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate d...
diff --git a/style/Cargo.toml b/style/Cargo.toml index 71898ea32..d0e5daddb 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -31,7 +31,6 @@ gecko_bindings = {path = "../../ports/geckolib/gecko_bindings", optional = true} heapsize = {version = "0.3.0", optional = true} heapsize_plugin = {version = "0.1.2", opti...
3
6
5
dbb5f0ac73bef9d1803f80434675f4d08c5578bb
Mitchell Hentges
2016-08-04T07:27:20
servo: Merge #11318 - Compute tag_name a maximum of once per document owner (from mitchhentges:1471-cache-tag-name); r=nox Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: - [x] `./mach build -d` does not report any errors - [X] ...
diff --git a/script/dom/element.rs b/script/dom/element.rs index c0affb40a..b9b021837 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -103,6 +103,7 @@ use style::values::specified::{self, CSSColor, CSSRGBA, LengthOrPercentage}; pub struct Element { node: Node, local_name: Atom, + tag_nam...
1
59
11
4404abbce5f417febf0a53773533ae92094f3a94
Rahul Sharma
2016-08-04T06:25:23
servo: Merge #12682 - Dispatch lifecycle events to service worker object and refactor html tests (from creativcoder:fire-fetch); r=jdm <!-- Please describe your changes on the following line: --> Changes introduced to dispatch `controllerchange`, `activate` and `fetch` simple events to Service Worker interfaces. The ...
diff --git a/script/dom/serviceworkercontainer.rs b/script/dom/serviceworkercontainer.rs index 17fea7100..4487c064f 100644 --- a/script/dom/serviceworkercontainer.rs +++ b/script/dom/serviceworkercontainer.rs @@ -6,6 +6,7 @@ use dom::bindings::codegen::Bindings::ServiceWorkerContainerBinding::Registratio use dom::bind...
2
9
4
e97aea42b0e829c67eff22edad005a9183903d9b
Mason Chang
2016-08-04T04:19:57
servo: Merge #12723 - Update cargo webrender dependencies to include fixed border colors (from changm:cargo); r=glennw <!-- Please describe your changes on the following line: --> Updates cargo webrender dependency to include fixed border colors. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` ...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 3d91b0b70..a5970caa2 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2554,7 +2554,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.1.0" -source = "git+https://github.com/servo/webrender#b87a4c6a702742d73b34adc9a7d84a8577f8049f" +source ...
1
1
1
0b420e427af87f9eff465a268ce01a4a7df3d240
Bobby Holley
2016-08-04T01:20:21
servo: Merge #12725 - stylo: fix leaks, and accept null in Servo_InheritComputedValues (from bholley:fix_leaks); r=emilio This corresponds to changes in: https://bugzilla.mozilla.org/show_bug.cgi?id=1291885 and https://bugzilla.mozilla.org/show_bug.cgi?id=1291891 Source-Repo: https://github.com/servo/servo Source-Re...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 24893da9f..8fd16e33c 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -100,7 +100,30 @@ impl ComputedValues { ComputedValues::inherit_from(parent) } - pub fn initial_values() -> &'sta...
1
26
13
721dd0b7dd6c238ba7b03c388169bd893a2b17ce
Emilio Cobos Álvarez
2016-08-04T00:02:26
servo: Merge #12645 - stylo: Allow computing change hints during the traversal (from emilio:stylo); r=bholley <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data...
diff --git a/layout/animation.rs b/layout/animation.rs index 5a67b1af5..5222d4ba7 100644 --- a/layout/animation.rs +++ b/layout/animation.rs @@ -14,6 +14,7 @@ use script_traits::{AnimationState, LayoutMsg as ConstellationMsg}; use std::collections::HashMap; use std::sync::mpsc::Receiver; use style::animation::{Anima...
10
93
39
4e7136b467e14141a166693cdf17cd0d6bf6afbd
Mike MacDonald (crazymykl)
2016-08-03T22:47:45
servo: Merge #11919 - Fire load event for external stylesheets, enforce Content-Type checks (from crazymykl:fix-style-load-events); r=Ms2ger <!-- Please describe your changes on the following line: --> Fire load event for external stylesheets --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by ...
diff --git a/script/dom/htmllinkelement.rs b/script/dom/htmllinkelement.rs index d089caed3..0d5ae4ee1 100644 --- a/script/dom/htmllinkelement.rs +++ b/script/dom/htmllinkelement.rs @@ -22,6 +22,7 @@ use dom::virtualmethods::VirtualMethods; use encoding::EncodingRef; use encoding::all::UTF_8; use hyper::header::Conte...
1
15
4
5926534feb665b216b9220e9a4348352aaa9c24c
Steve Melia
2016-08-03T19:53:30
servo: Merge #11726 - Issue 7720: Add target selector and update when scrolling to fragment (from sjmelia:7720_add_target_selector); r=mbrubeck <!-- Please describe your changes on the following line: --> Add the target pseudo selector and set/unset it during scrolling to fragment. This change is not complete as no re...
diff --git a/script/dom/document.rs b/script/dom/document.rs index 78ccbbdf1..e70501d37 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -241,6 +241,8 @@ pub struct Document { referrer_policy: Cell<Option<ReferrerPolicy>>, /// https://html.spec.whatwg.org/multipage/#dom-document-referrer ...
6
54
9
cac327c6a9cbc49efdaa96349f02ffdaebb16367
Glenn Watson
2016-08-03T17:42:47
servo: Merge #12716 - Update WR to fix extra printlns (from glennw:update-wr); r=larsbergstrom <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [ ] `./m...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 55e2ebc8d..3d91b0b70 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2554,7 +2554,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.1.0" -source = "git+https://github.com/servo/webrender#79b807160ea3c3cf558072813c51a59bbaccb8dd" +source ...
1
1
1
e3ecb8ce3dff786221661164239d73ebec5f8921
Pu Xingyu
2016-08-03T14:24:31
servo: Merge #12330 - Implement flexible box layout for row container (from stshine:flexitem); r=pcwalton <!-- Please describe your changes on the following line: --> This pull requests implements basic flexible box layout for row container. It has implemented most basic flexbox features, including grow, shrink, mul...
diff --git a/layout/block.rs b/layout/block.rs index c7407f1d7..62365478d 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -487,6 +487,7 @@ pub enum BlockType { FloatNonReplaced, InlineBlockReplaced, InlineBlockNonReplaced, + FlexItem, } #[derive(Clone, PartialEq)] @@ -521,7 +522,9 @@ pub str...
4
619
120
f72210f234ebb542ad79de37b9121836c2a7ab8a
Glenn Watson
2016-08-03T12:50:06
servo: Merge #12711 - Update webrender, copy new shaders, pin ipc-channel (from servo:wr-wr-next); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: e2d4ff5b62aff7fc6f40460270af44e1ab5283d4
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index e9803a764..d51f75fc1 100644 --- a/canvas/Cargo.toml +++ b/canvas/Cargo.toml @@ -15,7 +15,7 @@ canvas_traits = {path = "../canvas_traits"} euclid = "0.7.1" gfx_traits = {path = "../gfx_traits"} gleam = "0.2.8" -ipc-channel = {git = "https://github.com/servo/ipc...
24
61
51
a72f6d3bf77bc96564fb2ea8905bd8e51dfe16a4
Zhen Zhang
2016-08-02T21:57:46
servo: Merge #12684 - Add cancellability to file manager load and related refactoring (from izgzhen:cancel-file-manager); r=Manishearth Fixes #12589. r? @Manishearth --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes fix #12589 - [x] There a...
diff --git a/constellation/constellation.rs b/constellation/constellation.rs index 12e4d9916..dc28056e8 100644 --- a/constellation/constellation.rs +++ b/constellation/constellation.rs @@ -30,7 +30,6 @@ use msg::constellation_msg::{Key, KeyModifiers, KeyState, LoadData}; use msg::constellation_msg::{PipelineNamespace,...
10
124
161
2b037c884cb9b6d437ae30156ec81b41a1686e66
Ms2ger
2016-08-02T16:30:20
servo: Merge #12692 - Simplify add_or_replace_pipeline_in_frame_tree (from Ms2ger:add_or_replace_pipeline_in_frame_tree); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: e43d0e45d53800421b6c7d6b46ab2511a4758056
diff --git a/constellation/constellation.rs b/constellation/constellation.rs index 2006efd3c..12e4d9916 100644 --- a/constellation/constellation.rs +++ b/constellation/constellation.rs @@ -1886,18 +1886,16 @@ impl<Message, LTF, STF> Constellation<Message, LTF, STF> // Remove paint permissions for the pipel...
1
8
10
b4c31ccd4a82423ff3eb4d57f191e7792cc3e287
Zhen Zhang
2016-08-02T15:04:46
servo: Merge #12536 - Add form submission for file type input and related fixings (from izgzhen:form-file); r=Manishearth r? @Manishearth --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does...
diff --git a/script/dom/filelist.rs b/script/dom/filelist.rs index 96bfc4ce0..4f8e976f5 100644 --- a/script/dom/filelist.rs +++ b/script/dom/filelist.rs @@ -9,6 +9,7 @@ use dom::bindings::js::{JS, Root}; use dom::bindings::reflector::{Reflector, reflect_dom_object}; use dom::file::File; use dom::window::Window; +use...
3
149
89
45679fab5f714fd79db305f538fddca825ec7029
Rahul Sharma
2016-08-02T13:05:16
servo: Merge #12557 - Bring back run_with_memory_reporting in serviceworkerglobalscope (from creativcoder:sw-scope); r=nox <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appr...
diff --git a/script/dom/dedicatedworkerglobalscope.rs b/script/dom/dedicatedworkerglobalscope.rs index d997a33eb..dfe385f06 100644 --- a/script/dom/dedicatedworkerglobalscope.rs +++ b/script/dom/dedicatedworkerglobalscope.rs @@ -218,7 +218,7 @@ impl DedicatedWorkerGlobalScope { scope.execute_script(DOM...
2
9
6
94c7b12715ce5ac510986a249a7a4b8c85e9bd67
Zhen Zhang
2016-08-02T08:03:47
servo: Merge #12579 - Fix FileAPI's refcount implementation (from izgzhen:fix-fileapi-ref); r=Manishearth Revise several intricate parts of FileAPI's internal refcounting-related implementation. Goal: Get it done right once and for all. r? @Manishearth <!-- Please describe your changes on the following line: --> -...
diff --git a/net/filemanager_thread.rs b/net/filemanager_thread.rs index 4b1734613..10989f1a0 100644 --- a/net/filemanager_thread.rs +++ b/net/filemanager_thread.rs @@ -176,7 +176,7 @@ impl<UI: 'static + UIProvider> FileManager<UI> { if let Ok(id) = Uuid::parse_str(&id.0) { ...
3
120
91
3cab23a88e84f35df70f8c2fe03ea23af33c3b34
Cameron McCormack
2016-08-02T07:01:27
servo: Merge #12689 - Fix unused variable warning (from heycam:warning-fix); r=Ms2ger <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [ ] `./mach build...
diff --git a/style/values/specified/mod.rs b/style/values/specified/mod.rs index f8775c4d9..93b270bc1 100644 --- a/style/values/specified/mod.rs +++ b/style/values/specified/mod.rs @@ -1239,7 +1239,7 @@ pub struct UrlExtraData { impl UrlExtraData { #[cfg(feature = "servo")] - pub fn make_from(content: &Parse...
1
1
1
f8157577ebedef6930145a5c7f02096572cd16ca
Cameron McCormack
2016-08-02T01:41:56
servo: Merge #12651 - Add support for background-position in geckolib (from heycam:background-position); r=Manishearth <!-- Please describe your changes on the following line: --> r? @Manishearth --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `...
diff --git a/style/gecko_conversions.rs b/style/gecko_conversions.rs index 95ab9eb8b..56e2e3bbc 100644 --- a/style/gecko_conversions.rs +++ b/style/gecko_conversions.rs @@ -8,7 +8,7 @@ use app_units::Au; use gecko_bindings::structs::nsStyleCoord_CalcValue; -use values::computed::CalcLengthOrPercentage; +use values:...
2
58
2
9b212d4007a3645e339947e23d51558121b56f31
Guillaume Gomez
2016-08-01T21:11:47
servo: Merge #12683 - Update video-metadata crate version (pkg-config support) (from GuillaumeGomez:up_crate); r=larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: 4fc4232489930063eff20b5585aad1ea25aace77
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 6dc567535..7cc95c6df 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -1903,7 +1903,7 @@ dependencies = [ "url 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "uuid 0.2.2 (registry+https://github.com/rust-lang/crates.io-in...
1
4
3
c5d8ae97c49fac5a2330fdef9a94c62af99f71c4
Johann Hofmann
2016-08-01T18:27:46
servo: Merge #12679 - Prevent injection vulnerability in image page (from johannhof:image-inject); r=Manishearth This is taking up nox' suggestion from #12542 and creates an img element using Rust code instead of escaping the URL. I will look at the neterror.html URL strings separately, we might do those in a similar ...
diff --git a/script/dom/servohtmlparser.rs b/script/dom/servohtmlparser.rs index a28612416..09ee38a12 100644 --- a/script/dom/servohtmlparser.rs +++ b/script/dom/servohtmlparser.rs @@ -7,13 +7,18 @@ use document_loader::LoadType; use dom::bindings::cell::DOMRefCell; +use dom::bindings::codegen::Bindings::DocumentBi...
1
14
2
b715ab0152a3267f55de9aabc53e8e06da2170b0
Ms2ger
2016-08-01T16:52:09
servo: Merge #12678 - Update png (from servo:always-be-updating); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 7f79261d4d1a0bdabf0cb6145b4cf0f26307016f
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index f73de7876..6dc567535 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -997,7 +997,7 @@ dependencies = [ "num-iter 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "num-rational 0.1.32 (registry+https://github.com/rust-lang/crates.io-index...
1
2
3
98ef15f8c542f1cf5ff13207e0329fa4ad1ad42a
Ms2ger
2016-08-01T13:04:30
servo: Merge #12677 - Remove unused inline_size_of_preceding_{left,right}_floats fields from BlockFlow (from Ms2ger:unused-float-sizes); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: e9d647ca5401f9603295882fe647a53c4ee88d14
diff --git a/layout/block.rs b/layout/block.rs index 4f6bf2800..c7407f1d7 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -511,14 +511,6 @@ pub struct BlockFlow { /// The associated fragment. pub fragment: Fragment, - /// The sum of the inline-sizes of all logically left floats that precede this bl...
1
0
10
f7405db5c251477e512f6e0e7bfa56ce26633849
Samuel Harrington
2016-07-31T06:46:47
servo: Merge #12667 - Remove dead code from table_cell.rs (from samlh:patch-1); r=emilio <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [ ] `./mach bu...
diff --git a/layout/table_cell.rs b/layout/table_cell.rs index 18ff88e10..f012121f5 100644 --- a/layout/table_cell.rs +++ b/layout/table_cell.rs @@ -77,9 +77,6 @@ impl TableCellFlow { None, MarginsMayCollapseFlag::MarginsMayNotCollapse); debug_assert!(remaining.is_none()); - if...
1
0
3
ec59cf8f814c2dc500b296d9b3aaec57893378e5
Guillaume Gomez
2016-07-29T22:46:42
servo: Merge #12186 - Implement video-metadata check (from GuillaumeGomez:video-metadata); r=larsbergstrom,jdm,KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: d053fb16f6519726c14ac4580301df4883e4af23
diff --git a/script/Cargo.toml b/script/Cargo.toml index 72c436fce..8842ba7a8 100644 --- a/script/Cargo.toml +++ b/script/Cargo.toml @@ -17,6 +17,9 @@ debugmozjs = ['js/debugmozjs'] [target.'cfg(any(target_os = "macos", target_os = "linux", target_os = "windows"))'.dependencies] tinyfiledialogs = {git = "https://gith...
5
65
7
31d12177a9e50d0f898e801e8d71195b15496535
Michael Howell
2016-07-29T18:53:13
servo: Merge #12642 - Use explicit height of inline-block fragments (from notriddle:textarea_height); r=asajeffrey When an explicit height is used for inline-block fragments, the line spacing algorithm should use that for the height above the baseline, instead of the intrinsic one. --- - [X] `./mach build -d` does n...
diff --git a/layout/fragment.rs b/layout/fragment.rs index 48499d7e3..0fb5c6579 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -2005,9 +2005,10 @@ impl Fragment { // See CSS 2.1 § 10.8.1. let flow = &info.flow_ref; let block_flow = flow.as_block(); + ...
1
3
2
c3da228eaf90727b1210aa5d01870fcc36f37fdd
Alan Jeffrey
2016-07-29T17:49:08
servo: Merge #12637 - Replaced mutex in constellation logging by a reentrant mutex (from asajeffrey:constellation-use-reentrant-logging-mutex); r=emilio <!-- Please describe your changes on the following line: --> The double-panic in #12553 may be caused by using a non-reentrant lock, which panics on reetry. This PR ...
diff --git a/constellation/constellation.rs b/constellation/constellation.rs index 2017f0b4b..2006efd3c 100644 --- a/constellation/constellation.rs +++ b/constellation/constellation.rs @@ -54,8 +54,8 @@ use std::iter::once; use std::marker::PhantomData; use std::mem::replace; use std::process; +use std::sync::Arc; ...
4
229
5
d89c41f575759f40dbd12952a8dae54d0576042c
ddh
2016-07-29T16:44:20
servo: Merge #12502 - Added devtools support to fetch for XHR (from avadacatavra:devtools); r=jdm <!-- Please describe your changes on the following line: --> Added devtools support for fetch for XHR, but devtools can't show the request in the XHR tab. I've attached a picture of an XHR request in devtools. <img widt...
diff --git a/devtools/actors/network_event.rs b/devtools/actors/network_event.rs index 38f7d5767..ba2793af8 100644 --- a/devtools/actors/network_event.rs +++ b/devtools/actors/network_event.rs @@ -43,6 +43,7 @@ pub struct NetworkEventActor { pub name: String, request: HttpRequest, response: HttpResponse,...
7
76
24
7bcf9dd230e01944525e1ab624a4eccd20450ca0
nc4rrillo
2016-07-29T11:43:19
servo: Merge #12635 - Extracted common parts of the starting content process (from nc4rrillo:refactor-spawn-multiprocess); r=Manishearth <!-- Please describe your changes on the following line: --> --- I implemented a trait for both `process::Command` and `sandbox::Command` in order to constrain my generic `setup_com...
diff --git a/constellation/pipeline.rs b/constellation/pipeline.rs index 70ec20cbd..a75d083db 100644 --- a/constellation/pipeline.rs +++ b/constellation/pipeline.rs @@ -28,6 +28,8 @@ use script_traits::{ConstellationControlMsg, InitialScriptState, MozBrowserEvent use script_traits::{LayoutControlMsg, LayoutMsg, NewLay...
1
49
20
6aeeb0e5e43bd80afd62ad628062f44a5b1838bd
Ms2ger
2016-07-29T09:42:18
servo: Merge #12649 - Some fixes to the script crate (from Ms2ger:update-script); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 74d3b87c3e79abaf5c64e6e3f06e8a00148ea19d
diff --git a/script/dom/bindings/error.rs b/script/dom/bindings/error.rs index bd63ba84f..c4bda97e5 100644 --- a/script/dom/bindings/error.rs +++ b/script/dom/bindings/error.rs @@ -178,7 +178,7 @@ impl ErrorInfo { }) } - fn from_dom_exception(cx: *mut JSContext, object: HandleObject) -> Option<ErrorI...
3
6
7
596057ca1ba59fa64b3cbd3045f20b9a1bc80d24
Manish Goregaokar
2016-07-29T08:38:14
servo: Merge #12631 - stylo: Use unsafe accessors for coord data (from Manishearth:stylo-unsafe-coord); r=bholley depends on https://bugzilla.mozilla.org/show_bug.cgi?id=1290061 r? @bholley Source-Repo: https://github.com/servo/servo Source-Revision: 7e39efa2dfb37a87745c1548e313527806891777
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index d4dfa3bc8..074e4e085 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -661,9 +661,10 @@ fn static_assert() { use gecko_bindings::structs::nsStyleUnit; // z-index is never a calc(). If ...
1
4
3
be92ff90a9ad4fc845187716ea7d8ede85a394dc
Cameron McCormack
2016-07-29T07:26:25
servo: Merge #12648 - Store UrlExtraData in {specified,computed}::Image::Url (from heycam:store-extra-data); r=Manishearth <!-- Please describe your changes on the following line: --> This stores a `UrlExtraData` object in `specified::Image::Url` and `computed::Image::Url`, so that geckolib can use the base/principal...
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index 8d036dfc9..58ff6d23e 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -398,7 +398,7 @@ impl FragmentDisplayListBuilding for Fragment { ...
6
64
20
cf47af5d6cdc3d71b2559b119851a01bf344d149
Alan Jeffrey
2016-07-28T23:00:41
servo: Merge #12639 - Send logging messages even if the channel lock is poisoned (from asajeffrey:constellation-logging-when-poisoned); r=metajack <!-- Please describe your changes on the following line: --> Send panic and logging messages to the contellation even if the channel lock is poisoned. --- <!-- Thank you ...
diff --git a/constellation/constellation.rs b/constellation/constellation.rs index d2f045de0..2017f0b4b 100644 --- a/constellation/constellation.rs +++ b/constellation/constellation.rs @@ -342,9 +342,8 @@ impl Log for FromScriptLogger { let pipeline_id = PipelineId::installed(); let thread_nam...
1
4
6
eae754174223c100563ead953b41034f801873e5
Bob
2016-07-28T21:56:43
servo: Merge #12632 - account for sign in double parsing (from bobthekingofegypt:signed_parse_double); r=KiChjang <!-- Please describe your changes on the following line: --> account for sign in double parsing inside styles attr.rs --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when ...
diff --git a/style/attr.rs b/style/attr.rs index af7cfa015..fc741d615 100644 --- a/style/attr.rs +++ b/style/attr.rs @@ -92,17 +92,17 @@ pub fn parse_double(string: &str) -> Result<f64, ()> { let trimmed = string.trim_matches(HTML_SPACE_CHARACTERS); let mut input = trimmed.chars().peekable(); - let (valu...
1
6
6
bd19e205057e7bf94941cc0eb790da1ad1f83008
Michael Howell
2016-07-28T19:54:36
servo: Merge #12623 - Complete animations whether or not cascade needs done (from notriddle:master); r=emilio - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #12554 (github issue number if applicable). - [x] There are tests for these change...
diff --git a/style/animation.rs b/style/animation.rs index c36cde3ca..a46004180 100644 --- a/style/animation.rs +++ b/style/animation.rs @@ -668,3 +668,29 @@ where Damage: TRestyleDamage { } } } + +/// Update the style in the node when it finishes. +pub fn complete_expired_transitions(node: OpaqueNode, s...
3
37
19
6a9d31090749b063f795b1e16e29f16ec22391c0
Josh Matthews
2016-07-28T17:39:03
servo: Merge #12621 - Attach more signals to the backtrace signal handler (from jdm:sigabrt); r=emilio These changes should enable meaningful backtraces in more unusual situations where the program would otherwise exit almost silently. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` w...
diff --git a/servo/main.rs b/servo/main.rs index a13c2ca8b..64112fde5 100644 --- a/servo/main.rs +++ b/servo/main.rs @@ -70,7 +70,10 @@ fn install_crash_handler() { } } - signal!(Sig::SEGV, handler); + signal!(Sig::SEGV, handler); // handle segfaults + signal!(Sig::ILL, handler); // handle stac...
1
4
1
f167631a570ac70dcf5e5b5e36c4342eb81028ac
zakorgy
2016-07-28T08:33:08
servo: Merge #12538 - Refactor Bluetooth error handling (from szeged:error-refactor); r=nox <!-- Please describe your changes on the following line: --> Replace the error messages with an enum in `net/bluetooth_thread.rs`. Rename `bluetooth_blacklist.rs` to `bluetooth_utils.rs` and put the error conversion in it. With...
diff --git a/net/bluetooth_thread.rs b/net/bluetooth_thread.rs index 1b8827639..3c2538b1f 100644 --- a/net/bluetooth_thread.rs +++ b/net/bluetooth_thread.rs @@ -12,7 +12,7 @@ use ipc_channel::ipc::{self, IpcReceiver, IpcSender}; use net_traits::bluetooth_scanfilter::{BluetoothScanfilter, BluetoothScanfilterSequence, R...
7
76
62
6fd2bc502910ab9d4ec4486354be6528fdae0ba0
Anthony Ramine
2016-07-28T03:36:53
servo: Merge #12615 - Remove use of opts::use_webrender in layout_thread (from nox:die-opts-die); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: a0c502261dc2bd710e31dcbbbd2d81d2a2c53724
diff --git a/layout_thread/lib.rs b/layout_thread/lib.rs index 31432d896..403f30a96 100644 --- a/layout_thread/lib.rs +++ b/layout_thread/lib.rs @@ -969,7 +969,7 @@ impl LayoutThread { self.epoch.next(); - if opts::get().use_webrender { + if let Some(ref mut webrender_...
1
11
12
2ac918aaaff803cac4c1e0fa6572b905f5fb85ed
zakorgyula
2016-07-28T02:28:17
servo: Merge #12603 - WebBluetooth writeValue new Step (from zakorgy:write-value); r=KiChjang <!-- Please describe your changes on the following line: --> There is a new step in the writeValue function of the BluetoothRemoteGATTCharacteristic: https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothremotegattchar...
diff --git a/script/dom/bluetoothremotegattcharacteristic.rs b/script/dom/bluetoothremotegattcharacteristic.rs index e3e17b4a0..8c520d7d4 100644 --- a/script/dom/bluetoothremotegattcharacteristic.rs +++ b/script/dom/bluetoothremotegattcharacteristic.rs @@ -195,6 +195,12 @@ impl BluetoothRemoteGATTCharacteristicMethods ...
1
6
0
4e1c4bf8e159afb2e7b7af9e657c714474dcfdfc
Sergey Alexandrov
2016-07-27T23:54:32
servo: Merge #11850 - Fix PaintContext page_rect due to display list origin (from splav:box-shadow#11662); r=glennw Fix PaintContext page_rect due to non zero display list origin. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropri...
diff --git a/gfx/paint_thread.rs b/gfx/paint_thread.rs index 27a4231f2..a06ef7ee7 100644 --- a/gfx/paint_thread.rs +++ b/gfx/paint_thread.rs @@ -684,7 +684,7 @@ impl WorkerThread { let mut paint_context = PaintContext { draw_target: draw_target.clone(), font_context: &mut ...
1
1
1
17b70c74d217be1af21f95d58564f0973911cabb
Emilio Cobos Álvarez
2016-07-27T22:56:26
servo: Merge #12563 - stylo: Improve restyling performance (from emilio:stylo); r=bholley,jdm,pcwalton This commit adds hooks to the Servo style traversal to avoid traversing all the DOM for every restyle. Additionally it changes the behavior of the dirty flag to be propagated top down, to prevent extra overhead when ...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index da9272d08..60b64a030 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -2114,7 +2114,7 @@ impl<Window: WindowMethods> IOCompositor<Window> { } // Check if there are any pending frames. If...
17
186
168
c4db223ef41838942f7a774697183a19007bcd26
mrmiywj
2016-07-27T18:48:32
servo: Merge #11889 - send requests that are redirected to devtools (from mrmiywj:report-redirected-request); r=jdm <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate...
diff --git a/net/http_loader.rs b/net/http_loader.rs index a144721ff..e8d686e95 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -622,18 +622,16 @@ fn send_request_to_devtools(msg: ChromeToDevtoolsControlMsg, devtools_chan.send(DevtoolsControlMsg::FromChrome(msg)).unwrap(); } -fn send_response_to_dev...
1
19
17
ca4eae54e91eedddf4fb3e129fa5caa81c0ad707
Martin Robinson
2016-07-27T10:17:22
servo: Merge #12543 - Accumulate subpixels through stacking contexts (from mrobinson:off-by-one-ng); r=pcwalton <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate dat...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 1d67ceddd..0073b1b0a 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -382,7 +382,11 @@ impl DisplayList { current_item_index: start, last_item_index: end, }; - self.draw_stacking_context(...
3
56
22