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
62fced3a4657a6a97742406536319b127c0d734b
lucantrop
2017-03-13T17:01:16
servo: Merge #15927 - added tidiness check for "-> ()" (from lucantrop:master); r=Ms2ger <!-- Please describe your changes on the following line: --> I added the check, modified the tests and removed all instances of "-> ()" that were already there. --- <!-- Thank you for contributing to Servo! Please replace each `[...
diff --git a/devtools/actors/timeline.rs b/devtools/actors/timeline.rs index 1fdb7b0c4..0ea57ad8d 100644 --- a/devtools/actors/timeline.rs +++ b/devtools/actors/timeline.rs @@ -288,7 +288,7 @@ impl Emitter { } } - fn send(&mut self, markers: Vec<TimelineMarkerReply>) -> () { + fn send(&mut self, m...
7
18
18
b5f356d1791166d71da3e5d38245351be67c5fea
ak1t0
2017-03-13T14:47:56
servo: Merge #15882 - Clean up HTMLImageElement::areas (from ak1t0:clean-up-htmlimageelement); 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: --> -...
diff --git a/script/dom/htmlimageelement.rs b/script/dom/htmlimageelement.rs index a0119f1ae..321b50415 100644 --- a/script/dom/htmlimageelement.rs +++ b/script/dom/htmlimageelement.rs @@ -413,24 +413,17 @@ impl HTMLImageElement { } pub fn areas(&self) -> Option<Vec<Root<HTMLAreaElement>>> { let elem...
1
9
16
1cbbd57a8453bc444da538690dff173d0ce357bf
SendilKumar N
2017-03-13T14:01:52
servo: Merge #15874 - apply user scripts correctly (from sendilkumarn:user-script); 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 appropriate data: --> - [x] `./mach b...
diff --git a/script/dom/userscripts.rs b/script/dom/userscripts.rs index 66758afaa..fd5ae5f02 100644 --- a/script/dom/userscripts.rs +++ b/script/dom/userscripts.rs @@ -2,25 +2,25 @@ * 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/. */ ...
1
12
14
afbf4aa8fbef1d01a27a8344a90190f22fbdb185
Xidorn Quan
2017-03-13T06:55:46
servo: Merge #15924 - Implement access to CSSMediaRule for stylo (from upsuper:bug1315601); r=heycam,Manishearth This is the Servo part of [bug 1315601](https://bugzilla.mozilla.org/show_bug.cgi?id=1315601). Source-Repo: https://github.com/servo/servo Source-Revision: cc9fb0ba59181d478eabb64e942b9342a4879a73
diff --git a/style/gecko/arc_types.rs b/style/gecko/arc_types.rs index 72f044c1c..95eff6431 100644 --- a/style/gecko/arc_types.rs +++ b/style/gecko/arc_types.rs @@ -8,14 +8,16 @@ #![allow(non_snake_case, missing_docs)] +use gecko_bindings::bindings::{RawServoMediaList, RawServoMediaRule}; use gecko_bindings::bind...
4
123
4
f4d4f3b94ae9df2beb5c44cfaa687e572c2775ea
Hiroyuki Ikezoe
2017-03-13T04:40:14
servo: Merge #15923 - Fill animation properties in the case where the length of the animation property is shorter than the length of animation-name property (from hiikezoe:animation-properties); r=heycam <!-- Please describe your changes on the following line: --> PR for https://bugzilla.mozilla.org/show_bug.cgi?id=13...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 2f7cc0945..aa059acb2 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -1312,18 +1312,19 @@ fn static_assert() { #[allow(non_snake_case)] pub fn set_${type}_${ident}(&mut self, v: longhands::${...
2
23
17
10107c70a122d82546ffe6ddad4088fbc6663e13
Emilio Cobos Álvarez
2017-03-11T23:01:13
servo: Merge #15917 - Simplify some -moz-fixed handling code (from emilio:moz-fixes); r=Manishearth This was introduced in #15916, but most of it is actually unreachable. Source-Repo: https://github.com/servo/servo Source-Revision: 430c7d924d51aad5d1093d38d4b3de10e09ec825
diff --git a/style/properties/longhand/font.mako.rs b/style/properties/longhand/font.mako.rs index a113186ca..a62da4290 100644 --- a/style/properties/longhand/font.mako.rs +++ b/style/properties/longhand/font.mako.rs @@ -57,9 +57,6 @@ atom!("sans-serif") | atom!("cursive") | ...
1
2
9
31ba9935c03193a976396b83619420a5f9bd66e8
Nazım Can Altınova
2017-03-11T22:03:40
servo: Merge #15916 - Stylo: Add support for "font-family: -moz-fixed" (from canaltinova:moz-fixed); r=Manishearth Added support for "font-family: -moz-fixed" for stylo --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -...
diff --git a/style/gecko_string_cache/atom_macro.rs b/style/gecko_string_cache/atom_macro.rs index 3349689d1..5036173d4 100644 --- a/style/gecko_string_cache/atom_macro.rs +++ b/style/gecko_string_cache/atom_macro.rs @@ -4296,6 +4296,8 @@ cfg_if! { pub static nsGkAtoms_fantasy: *mut nsIAtom; #...
3
29
1
3d9fbb1e7ce6fa51b1916ddbb0066e269fb9bda4
Manish Goregaokar
2017-03-11T20:08:49
servo: Merge #15915 - stylo: Make URLs work in inline style (from Manishearth:stylo-style-attr); r=emilio r=emilio https://bugzilla.mozilla.org/show_bug.cgi?id=1341690 Source-Repo: https://github.com/servo/servo Source-Revision: c9310ab144506e152131faecfa79d109822e9a8d
diff --git a/style/gecko/wrapper.rs b/style/gecko/wrapper.rs index d4d0c2dd3..85ed91525 100644 --- a/style/gecko/wrapper.rs +++ b/style/gecko/wrapper.rs @@ -296,13 +296,10 @@ impl<'le> fmt::Debug for GeckoElement<'le> { impl<'le> GeckoElement<'le> { /// Parse the style attribute of an element. - pub fn parse...
2
7
8
993537c0f125910bae1ca3ade2c8467c8158e626
Emilio Cobos Álvarez
2017-03-11T12:40:31
servo: Merge #15913 - Use the proper viewport size for stylo (from emilio:viewport-size); r=heycam,hiro Reviewed upstream at [bug 1303229](https://bugzil.la/1303229). Source-Repo: https://github.com/servo/servo Source-Revision: 06f99c13f233bad71a42affccb10c86295ff014b
diff --git a/layout/block.rs b/layout/block.rs index e2818e1a7..4bfef78cb 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -713,7 +713,7 @@ impl BlockFlow { // infrastructure to make it scrollable. let viewport_size = LogicalSize::from_physical(self.fragment.style.writing_mode, - ...
8
24
22
9dc6407769ef266f87b1564169aa61a34b8c078f
Emilio Cobos Álvarez
2017-03-11T10:31:25
servo: Merge #15891 - style: Iterate the LRU cache contents from back to front (from emilio:lru-back-to-front); r=bholley,mbrubeck This is on top of #15888. Only the second commit needs review. We put the more recently used item last, so iterating then from left to right is pointless. Source-Repo: https://github.com...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index ac2ad50e1..04fcf7b36 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -1222,7 +1222,11 @@ impl fmt::Debug for DisplayItem { solid_color.color.g, solid_color.color.b, ...
7
90
46
019a61dcec7deb9e1d8f72d3e046d20588bde349
Cameron McCormack
2017-03-11T01:37:31
servo: Merge #15909 - stylo: Align eRestyle_Subtree value with RESTYLE_DESCENDANTS (from heycam:hint-subtree); r=bholley Handle the translation of eRestyle_Subtree into (RESTYLE_SELF | RESTYLE_DESCENDANTS) in the From impl, too. Source-Repo: https://github.com/servo/servo Source-Revision: 2f8cf6afc32a61d7eb5139ce4106...
diff --git a/style/restyle_hints.rs b/style/restyle_hints.rs index 00a39b995..7b744284e 100644 --- a/style/restyle_hints.rs +++ b/style/restyle_hints.rs @@ -41,7 +41,7 @@ bitflags! { /// /// NB: In Gecko, we have RESTYLE_SUBTREE which is inclusive of self, /// but heycam isn't aware of a good...
1
14
9
8e7ffe751e6401f7270a884318a5833834986d7a
Fernando Jiménez Moreno
2017-03-10T15:49:35
servo: Merge #15889 - Allow for redirects after a CORS-preflight (from ferjm:issue-14519-cors-preflight); r=avadacatavra ~Continue the work done in #14811 and #15547~. And applies the Fetch [spec change](https://github.com/whatwg/fetch/commit/0d9a4db8bc02251cc9e391543bb3c1322fb882f2) about [allowing redirects after CO...
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index fe04acc35..ec9b4444e 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -17,7 +17,7 @@ use hyper::mime::{Mime, SubLevel, TopLevel}; use hyper::status::StatusCode; use mime_guess::guess_mime_type; use net_traits::{FetchTaskTarget, NetworkErro...
2
2
7
bf270d1529dc21f69f40191f09979b1823ffbec3
Nazım Can Altınova
2017-03-10T14:52:51
servo: Merge #15908 - Fix wrong initial values in various single keyword properties (from canaltinova:single-keywords); r=emilio In `single_properties` helper, first values set as initial value. But it seems like a problem here because it's not clear to anyone who don't know the working mechanism of this helper or it ...
diff --git a/style/properties/longhand/column.mako.rs b/style/properties/longhand/column.mako.rs index b3c782e5c..abba0e787 100644 --- a/style/properties/longhand/column.mako.rs +++ b/style/properties/longhand/column.mako.rs @@ -114,9 +114,9 @@ ${helpers.predefined_type("column-gap", animatab...
6
11
11
894147a4fac27586782d06d31a193238f1a375be
Hugh Gallagher
2017-03-10T13:51:45
servo: Merge #15892 - Change while loop in HTMLImageElement::handle_event to for loop (from hgallagher1993:local_branch); 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 `__` w...
diff --git a/script/dom/htmlimageelement.rs b/script/dom/htmlimageelement.rs index ecf637208..a0119f1ae 100644 --- a/script/dom/htmlimageelement.rs +++ b/script/dom/htmlimageelement.rs @@ -658,7 +658,7 @@ impl VirtualMethods for HTMLImageElement { } fn handle_event(&self, event: &Event) { - if (event....
1
9
8
e51ad561353d25d663a3e9e60285629667d3a5e9
Glenn Watson
2017-03-10T10:27:23
servo: Merge #15899 - Update WR (pre-multiplied alpha) (from glennw:wr-update-premultiply); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: b97b0fd7cc02bff8ba78a7dfaee036752a0253db
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 12f742e12..bbdf18638 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -1327,7 +1327,7 @@ impl<Window: WindowMethods> IOCompositor<Window> { } fn update_page_zoom_for_webrender(&mut self) { - let page_zoo...
3
20
1
1f79e1f8b003d433af7e900a3af851dea1b96302
Sam Giles
2017-03-10T06:15:11
servo: Merge #15903 - Set Origin header in http_network_or_cache_fetch (from servo:set-origin-header); r=Wafflespeanut Source-Repo: https://github.com/servo/servo Source-Revision: a11a3fe68bad97970568f7d785a41bd00b707e92
diff --git a/net/http_loader.rs b/net/http_loader.rs index 91bf0b643..9ffc95b86 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -22,6 +22,7 @@ use hyper::header::{Authorization, Basic, CacheControl, CacheDirective, ContentE use hyper::header::{ContentLength, Encoding, Header, Headers, Host, IfMatch, IfRang...
1
20
4
03a0873047e7b19c4d4ba23c0d499aa3907372c3
Xidorn Quan
2017-03-10T05:03:10
servo: Merge #15901 - Restore text-align-last removed in #15839 by mistake (from upsuper:text-align-last); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 72128de68189a9cd03050b3b0dc8278b4ca376e9
diff --git a/style/properties/longhand/inherited_text.mako.rs b/style/properties/longhand/inherited_text.mako.rs index 8a3444ab9..d8e3ac5d0 100644 --- a/style/properties/longhand/inherited_text.mako.rs +++ b/style/properties/longhand/inherited_text.mako.rs @@ -233,6 +233,13 @@ ${helpers.single_keyword("word-break", ...
1
7
0
03295cb124236efbf9f4b196f3f9bdd5fea66734
Nazım Can Altınova
2017-03-10T02:46:37
servo: Merge #15896 - Change the predefined type of flex-basis and make gecko glue auto-generate (from canaltinova:flex-basis); r=Manishearth Gecko [doesn't support](https://bugzilla.mozilla.org/show_bug.cgi?id=1105111) content value in flex-basis yet. We had to change the predefined type to `LengthOrPercentageOrAuto`...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 8e52d9d73..4b5e758e0 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -612,12 +612,6 @@ impl Debug for ${style_struct.gecko_struct_name} { # These have unusual representations in gecko. force_...
3
26
11
acf3802299d293f8d3688dae44ddbd160f7f77b7
Jeremy Chen
2017-03-10T01:57:15
servo: Merge #15839 - Stylo - gecko glue code for text-justify (from chenpighead:stylo-text-justify); r=upsuper <!-- Please describe your changes on the following line: --> Implement gecko glue for text-justify property. Gecko has supported text-justify in [Bug 276079](https://bugzilla.mozilla.org/show_bug.cgi?id=27...
diff --git a/style/properties/longhand/inherited_text.mako.rs b/style/properties/longhand/inherited_text.mako.rs index 637c2776a..8a3444ab9 100644 --- a/style/properties/longhand/inherited_text.mako.rs +++ b/style/properties/longhand/inherited_text.mako.rs @@ -192,18 +192,46 @@ ${helpers.single_keyword("word-break", ...
1
39
11
b2abd2138e70ab833c22951fdd3dee937d8cc453
Fernando Jiménez Moreno
2017-03-10T01:17:14
servo: Merge #15783 - Replace manual host parsing code with parse-host crate (from ferjm:issue15756-parse-hosts); r=avadacatavra This patch is replacing the code to parse the hosts file with the [parse-hosts](https://crates.io/crates/parse-hosts) crate. This crate has a [CC0 1.0 Universal License](https://creativecomm...
diff --git a/net_traits/Cargo.toml b/net_traits/Cargo.toml index 87dc784bb..cc4c03276 100644 --- a/net_traits/Cargo.toml +++ b/net_traits/Cargo.toml @@ -21,6 +21,7 @@ lazy_static = "0.2" log = "0.3.5" msg = {path = "../msg"} num-traits = "0.1.32" +parse-hosts = "0.3.0" serde = "0.9" serde_derive = "0.9" servo_con...
3
11
10
5dc9ee6fe840010458f8018d19b882e92f2ec0d2
Manish Goregaokar
2017-03-09T23:02:06
servo: Merge #15893 - Support SVG presentation attributes (from Manishearth:stylo-svg-pres); r=bz r=bz from https://bugzilla.mozilla.org/show_bug.cgi?id=1329093 Source-Repo: https://github.com/servo/servo Source-Revision: ee223798cc72bf81a4b2bb6849697de617c5f028
diff --git a/style/build_gecko.rs b/style/build_gecko.rs index 7b13ff0e1..e29d11172 100644 --- a/style/build_gecko.rs +++ b/style/build_gecko.rs @@ -317,6 +317,7 @@ mod bindings { "FontFamilyType", "FragmentOrURL", "FrameRequestCallback", + "GeckoParserExtraData", ...
5
104
8
aed82d6fa7e9fd4f37ea2f40a10e323dc16e5497
Emilio Cobos Álvarez
2017-03-09T19:33:33
servo: Merge #15888 - style: Simplify style sharing code (from emilio:caching); r=Ms2ger No functional changes, just some code cleanup. Source-Repo: https://github.com/servo/servo Source-Revision: 5c46e86546a607b7151758d8f18601febe4ce4f3
diff --git a/style/cache.rs b/style/cache.rs index 69be4a625..313f3ea19 100644 --- a/style/cache.rs +++ b/style/cache.rs @@ -11,14 +11,14 @@ use std::slice::{Iter, IterMut}; /// A LRU cache used to store a set of at most `n` elements at the same time. /// /// Currently used for the style sharing candidate cache. -pu...
2
17
39
52bc6757a6d7b1c9f4a5ee6c5a68018d0cbfd59d
#
2017-03-09T12:52:35
servo: Merge #15869 - Reject negative border radius (from Iakis:NegBordRad); r=Wafflespeanut Replacerd Parse in parse_one_set_of_border_values with parse_non_negative and added tests for it --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with...
diff --git a/style/values/specified/basic_shape.rs b/style/values/specified/basic_shape.rs index 8c1adef9e..45815eb7c 100644 --- a/style/values/specified/basic_shape.rs +++ b/style/values/specified/basic_shape.rs @@ -749,10 +749,10 @@ impl ToCss for BorderRadius { } impl Parse for BorderRadius { - fn parse(conte...
1
8
9
476fe00f8a4fe95e368c6b92bbb1c8f70c7b821b
Glenn Watson
2017-03-09T07:43:10
servo: Merge #15879 - Update WR (scroll root changes, border gradients, yuv updates) (from glennw:update-wr-scroll); r=mrobinson Source-Repo: https://github.com/servo/servo Source-Revision: 802440dbf05cf9f3679214107d388995e574d2c9
diff --git a/layout/webrender_helpers.rs b/layout/webrender_helpers.rs index 1a8b33e5e..63814f6f5 100644 --- a/layout/webrender_helpers.rs +++ b/layout/webrender_helpers.rs @@ -405,7 +405,7 @@ impl WebRenderDisplayItemConverter for DisplayItem { builder.push_scroll_layer(clip, ...
1
1
1
de80a52cfe02946e2f4a70cc26ea71247eabffc7
Michael Howell
2017-03-09T02:18:16
servo: Merge #15844 - Assert that `domain_match` is operating on lowercase text (from notriddle:domain_match_lowercase); r=nox > (Note that both the domain string and the string will have been > canonicalized to lower case at this point.) Related to #15789 Source-Repo: https://github.com/servo/servo Source-Revision:...
diff --git a/net/cookie.rs b/net/cookie.rs index c40bf909e..45fe1403e 100644 --- a/net/cookie.rs +++ b/net/cookie.rs @@ -139,6 +139,8 @@ impl Cookie { // http://tools.ietf.org/html/rfc6265#section-5.1.3 pub fn domain_match(string: &str, domain_string: &str) -> bool { + debug_assert!(string.to_lowerca...
1
2
0
b9ef53c168c7966c40e3caee0b4140008a5da53a
Glenn Watson
2017-03-09T00:33:34
servo: Merge #15862 - Update WR (types updates, stacking context culling) (from glennw:update-wr-types); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 28f871247c6461ccc8c254caba0d674ac4ddc545
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index a40613519..12f742e12 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -12,7 +12,7 @@ use euclid::point::TypedPoint2D; use euclid::rect::TypedRect; use euclid::scale_factor::ScaleFactor; use euclid::size::TypedSize2D; -u...
3
5
36
900c90235886cfa7c39d0a5e5a1f883a2fd01f1f
Simon Sapin
2017-03-08T21:35:40
servo: Merge #15872 - Fix debug assertion failure in gecko CI (from servo:dedup); r=emilio a=merge Source-Repo: https://github.com/servo/servo Source-Revision: 2565242665645e6a218f138e2b95d5a29f296104 MozReview-Commit-ID: Kd6ZOrODsGg
diff --git a/style/properties/declaration_block.rs b/style/properties/declaration_block.rs index 2cb5cba48..f10da7a7c 100644 --- a/style/properties/declaration_block.rs +++ b/style/properties/declaration_block.rs @@ -288,10 +288,15 @@ impl PropertyDeclarationBlock { } let important_count = &mut self.i...
1
7
3
be7fadadfde7dd9d994de75970354c6b83c7d246
Simon Sapin
2017-03-08T21:35:40
servo: Merge #15872 - Fix debug assertion failure in gecko CI (from servo:dedup); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 2565242665645e6a218f138e2b95d5a29f296104
diff --git a/style/properties/declaration_block.rs b/style/properties/declaration_block.rs index 2cb5cba48..f10da7a7c 100644 --- a/style/properties/declaration_block.rs +++ b/style/properties/declaration_block.rs @@ -288,10 +288,15 @@ impl PropertyDeclarationBlock { } let important_count = &mut self.i...
1
7
3
6c38f487c61328200569663627f0a88b34f5294e
Emilio Cobos Álvarez
2017-03-08T16:21:40
servo: Merge #15873 - style: Allow trailing whitespace in a calc expression (from emilio:calc); r=nox This should fix Gecko failures like: https://treeherder.mozilla.org/logviewer.html#?job_id=82470557&repo=autoland&lineNumber=1789 Source-Repo: https://github.com/servo/servo Source-Revision: 728a249dea74acde598edbcbd...
diff --git a/style/values/specified/length.rs b/style/values/specified/length.rs index 2b75773a6..1c3f7948f 100644 --- a/style/values/specified/length.rs +++ b/style/values/specified/length.rs @@ -585,33 +585,32 @@ impl CalcLengthOrPercentage { products.push(try!(CalcLengthOrPercentage::parse_product(input, ex...
1
22
23
05b4d312eba694267e3562017385275bf45419eb
Anthony Ramine
2017-03-08T14:12:54
servo: Merge #15866 - Require spaces around operators in calc() (fixes #15486) (from servo:whitespace); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: c11d398010f1c26622c64e076786a00776096b94
diff --git a/style/values/specified/length.rs b/style/values/specified/length.rs index 97ef54845..2b75773a6 100644 --- a/style/values/specified/length.rs +++ b/style/values/specified/length.rs @@ -584,19 +584,33 @@ impl CalcLengthOrPercentage { let mut products = Vec::new(); products.push(try!(CalcLen...
1
24
10
75cf48c06c2ae227a17a7dcba209d8caefa2c24d
Jason Tran
2017-03-08T13:28:59
servo: Merge #15867 - Reject negative factors in filter functions (fixes #15494) (from servo:negative); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 1f2e1e8b84ce89f3f3fa7a50c160ea116097e496
diff --git a/style/properties/longhand/effects.mako.rs b/style/properties/longhand/effects.mako.rs index 5c44a737b..cd7b61128 100644 --- a/style/properties/longhand/effects.mako.rs +++ b/style/properties/longhand/effects.mako.rs @@ -367,8 +367,8 @@ ${helpers.predefined_type("clip", fn parse_factor(input: &mut Pars...
1
2
2
e617ebef463cf2cb593a487bff3a80c2a3577cb4
Josh Matthews
2017-03-08T12:28:58
servo: Merge #15771 - Improve behaviour of image elements that perform multiple requests (from jdm:img-panic); r=nox This addresses cases where image elements end up making multiple requests, as well as makes the element respond to additional relevant mutations that trigger updating the image data. --- - [X] `./mach ...
diff --git a/script/document_loader.rs b/script/document_loader.rs index a4ce36a2f..611c469fa 100644 --- a/script/document_loader.rs +++ b/script/document_loader.rs @@ -120,7 +120,7 @@ impl DocumentLoader { } /// Initiate a new fetch that does not block the document load event. - pub fn fetch_async_backg...
5
80
33
a2d3e0fe50e02b98fcbcfede8622cbbe2e4e672f
Ms2ger
2017-03-08T10:08:19
servo: Merge #15849 - Remove unused content blocker code (from servo:content-blocker); r=nox I don't know what it is for, so I believe it would be better to remove it entirely until and unless we start using it. Source-Repo: https://github.com/servo/servo Source-Revision: 8b60a409c1f5f4dd069a04cc736643682dd4117b
diff --git a/net/Cargo.toml b/net/Cargo.toml index df7e7dc35..0751f05d2 100644 --- a/net/Cargo.toml +++ b/net/Cargo.toml @@ -11,7 +11,6 @@ path = "lib.rs" [dependencies] brotli = "1.0.6" -content-blocker = "0.2.3" cookie = "0.2.5" devtools_traits = {path = "../devtools_traits"} flate2 = "0.2.0" @@ -19,7 +18,6 @@...
5
0
41
5a970a2f873eb19d0325b52bb4d5b34edc2603e1
Xidorn Quan
2017-03-07T21:51:33
servo: Merge #15837 - Return true in set_property only when declaration block is changed (from upsuper:bug1344135); r=emilio This is [bug 1344135](https://bugzilla.mozilla.org/show_bug.cgi?id=1344135). Source-Repo: https://github.com/servo/servo Source-Revision: b11847d86c4983b76a8e8dc11716dc66b66148d7
diff --git a/script/dom/cssstyledeclaration.rs b/script/dom/cssstyledeclaration.rs index 4d81d457f..f658ed537 100644 --- a/script/dom/cssstyledeclaration.rs +++ b/script/dom/cssstyledeclaration.rs @@ -266,11 +266,9 @@ impl CSSStyleDeclaration { // Step 8 // Step 9 - // We could tr...
2
10
8
03e1b1ca5a44d54319bc0a1a82fe3f5ce49e4332
Fernando Jiménez Moreno
2017-03-07T17:38:44
servo: Merge #15855 - s/IframeLoadEventSteps/IFrameLoadEventSteps/g (from ferjm:IframeLoadEventSteps); r=Ms2ger All the other IFrame* names have the capital "I" and capital "F", so I'm changing this to keep uniformity. - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any err...
diff --git a/script/dom/htmliframeelement.rs b/script/dom/htmliframeelement.rs index b01edf0c4..dd8c13de4 100644 --- a/script/dom/htmliframeelement.rs +++ b/script/dom/htmliframeelement.rs @@ -196,7 +196,7 @@ impl HTMLIFrameElement { if mode == ProcessingMode::FirstTime && !self.upcast::<Element>().has_attribu...
1
7
7
10d19b93b833f91810c8975a51ef36c611b51fcc
Anthony Ramine
2017-03-07T12:47:37
servo: Merge #15851 - Remove obsolete step from Text::SplitText (from nox:splittext); r=Wafflespeanut https://github.com/whatwg/dom/pull/419 Source-Repo: https://github.com/servo/servo Source-Revision: 492757f1d3061248228beef005af54e9c2e9702e
diff --git a/script/dom/range.rs b/script/dom/range.rs index 8a6de0bc4..b5521e93d 100644 --- a/script/dom/range.rs +++ b/script/dom/range.rs @@ -1214,12 +1214,6 @@ impl WeakRangeVec { } } - /// Used for steps 9.1-2. when splitting a text node. - /// https://dom.spec.whatwg.org/#concept-text-split ...
2
3
12
5eb1865369c08e7b4398345d6a42814fc6b9179a
SendilKumar N
2017-03-07T09:40:39
servo: Merge #15833 - removing mutHeapJs references (from sendilkumarn:mut-js-heap); 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 appropriate data: --> - [x] `./mach ...
diff --git a/script/dom/bindings/callback.rs b/script/dom/bindings/callback.rs index c54eaade0..7e509edb3 100644 --- a/script/dom/bindings/callback.rs +++ b/script/dom/bindings/callback.rs @@ -5,7 +5,7 @@ //! Base classes to work with IDL callbacks. use dom::bindings::error::{Error, Fallible, report_pending_excepti...
7
23
67
d28c0251f93cc43a9d951e28190ac3c04ce6ac4a
Paul Rouget
2017-03-07T04:03:42
servo: Merge #15831 - introduce frame_size and window_rect (from paulrouget:winParams); r=glennw follow up of https://github.com/servo/webrender/pull/951 --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mac...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index dc3313fb5..a40613519 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -9,6 +9,7 @@ use compositor_thread::{InitialCompositorState, Msg, RenderListener}; use delayed_composition::DelayedCompositionTimerProxy; use euclid::...
2
35
10
4b3273934c92ef288ac0f8bfd921c7b80c46f2ea
Xidorn Quan
2017-03-07T03:24:01
servo: Merge #15836 - Fix animation shorthand parsing (again) (from upsuper:animation); r=emilio,bholley This is from [bug 1343168](https://bugzilla.mozilla.org/show_bug.cgi?id=1343168) and mostly same as #15793 which was backed out in #15814. Source-Repo: https://github.com/servo/servo Source-Revision: 1d497857e8a5c...
diff --git a/style/matching.rs b/style/matching.rs index 129b4884c..dd7719bdb 100644 --- a/style/matching.rs +++ b/style/matching.rs @@ -398,7 +398,7 @@ impl<E: TElement> StyleSharingCandidateCache<E> { return; } - if box_style.animation_name_count() > 0 { + if box_style.specifies_...
5
91
90
ee7ce8bbe7b5319582d34e018a645ba28e0584e6
SendilKumar N
2017-03-07T02:55:02
servo: Merge #15797 - ext. filtering for lang matching (from sendilkumarn:lang-algo); r=KiChjang <!-- Please describe your changes on the following line: --> This adds the extended algorithm to check the lang. This is my very first encounter with`rust`. Open to learn. --- <!-- Thank you for contributing to Servo! Plea...
diff --git a/script/dom/bindings/str.rs b/script/dom/bindings/str.rs index d5b10fcb0..e75958d97 100644 --- a/script/dom/bindings/str.rs +++ b/script/dom/bindings/str.rs @@ -113,6 +113,64 @@ pub fn is_token(s: &[u8]) -> bool { }) } +/// Returns whether the language is matched, as defined by +/// [RFC 4647](https...
3
62
4
853e49d5705dbac47e5f53e5de3578c4c6c05e7e
avinash
2017-03-06T15:11:51
servo: Merge #15751 - first stab. added ServoUrl as a parameter to report_error(...) of Par… (from avinash-vijayaraghavan:testing-csserror); r=cbrewster @jdm @SimonSapin <!-- Please describe your changes on the following line: --> 1. Added ServoUrl as a parameter to report_error(...) of ParseErrorReporter trait. 2. I...
diff --git a/script_layout_interface/reporter.rs b/script_layout_interface/reporter.rs index 4561f2d63..171f96d9d 100644 --- a/script_layout_interface/reporter.rs +++ b/script_layout_interface/reporter.rs @@ -7,6 +7,7 @@ use ipc_channel::ipc::IpcSender; use log; use msg::constellation_msg::PipelineId; use script_tra...
4
20
13
1b1eec1aa1de2d4794779cb5f2c1df8d63fda090
austinprete
2017-03-06T07:53:26
servo: Merge #15465 - Implement parsing/serialization for caret-color (from austinprete:caret-color); r=Wafflespeanut <!-- Please describe your changes on the following line: --> This pull request implements parsing and serialization for the caret-color CSS property, per issue #15309 . --- <!-- Thank you for contribu...
diff --git a/style/properties/helpers/animated_properties.mako.rs b/style/properties/helpers/animated_properties.mako.rs index 0a9e5cd3a..04af291b3 100644 --- a/style/properties/helpers/animated_properties.mako.rs +++ b/style/properties/helpers/animated_properties.mako.rs @@ -29,11 +29,12 @@ use std::fmt; use style_tr...
4
33
1
5865d0a59445cda6eb52e023673526248626aef9
Emilio Cobos Álvarez
2017-03-06T07:06:55
servo: Merge #15828 - style: Remove unneeded indirection in LonghandsToSerialize (from emilio:cleanup-all-day); r=Wafflespeanut Source-Repo: https://github.com/servo/servo Source-Revision: d4bdd33cd9816e2ceab9ddd9afd145cef8579087
diff --git a/style/properties/helpers.mako.rs b/style/properties/helpers.mako.rs index 861bcc2ea..b85f9de75 100644 --- a/style/properties/helpers.mako.rs +++ b/style/properties/helpers.mako.rs @@ -499,13 +499,8 @@ /// correspond to a shorthand. pub struct LonghandsToSerialize<'a> { % for ...
1
2
7
a21981d8ad5e6b66c06dd3b6f6d470e71e6e68c5
Jyotsna Prakash
2017-03-06T03:26:27
servo: Merge #15827 - replace match with if let (from moonlightdrive:use-iflet-not-match); r=mbrubeck <!-- Please describe your changes on the following line: --> Use `if let` instead of a `match` with a single pattern. I'm not clear if/how this needs to be tested (beyond what's been checked-off below), so please let...
diff --git a/style/properties/properties.mako.rs b/style/properties/properties.mako.rs index 4a7efc275..8b9ab40a4 100644 --- a/style/properties/properties.mako.rs +++ b/style/properties/properties.mako.rs @@ -1802,13 +1802,10 @@ pub fn apply_declarations<'a, F, I>(viewport_size: Size2D<Au>, let mut custom_properti...
1
4
7
97bead06bddb263137b41e6174d338e6ef5e5839
Glenn Watson
2017-03-05T22:23:41
servo: Merge #15826 - Update WR (overscroll support + fix viewport tests) (from glennw:update-wr-viewport); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: 6b28a18f45199cfd80a949178af810001fcb83e0
diff --git a/servo/lib.rs b/servo/lib.rs index 69b9bbece..40ffba9eb 100644 --- a/servo/lib.rs +++ b/servo/lib.rs @@ -172,6 +172,10 @@ impl<Window> Browser<Window> where Window: WindowMethods + 'static { None }; + let framebuffer_size = window.framebuffer_size(); + l...
1
5
1
92e4fd9f1e4ac0fa41173aeb119cb451545962e4
Patrick Walton
2017-03-05T13:14:45
servo: Merge #15816 - Improve performance of layout queries and requestAnimationFrame (from servo:raf-timer); r=jdm,emilio Part of #14442. Source-Repo: https://github.com/servo/servo Source-Revision: 72fd27bbccf9214cee11c78834ca1fbc96b3bf22
diff --git a/layout/construct.rs b/layout/construct.rs index afdf903c5..1125261dc 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -84,11 +84,7 @@ pub enum ConstructionResult { } impl ConstructionResult { - pub fn swap_out(&mut self) -> ConstructionResult { - if opts::get().nonincremental_lay...
4
95
29
f19190cb9f0b75d1a109f62cd685255c3f72ebce
shubDhond
2017-03-04T11:11:44
servo: Merge #15702 - Invalid three value positions are no longer accepted (from shubDhond:master); r=upsuper <!-- Please describe your changes on the following line: --> - Position parse no longer accepts invalid three value positions --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` w...
diff --git a/style/values/specified/position.rs b/style/values/specified/position.rs index 172d7cbf8..5c251cf54 100644 --- a/style/values/specified/position.rs +++ b/style/values/specified/position.rs @@ -187,13 +187,11 @@ impl Parse for Position { } else { // Handle 3 value background pos...
1
2
4
716bd6eb333ddd39869bed03c2c14477fff5f0fe
Manish Goregaokar
2017-03-04T05:28:49
servo: Merge #15817 - Support more XUL properties (from Manishearth:xul); r=bholley Source-Repo: https://github.com/servo/servo Source-Revision: 78210c3c942da9ca5dd8fda1b6bc77d696c25938
diff --git a/style/properties/longhand/xul.mako.rs b/style/properties/longhand/xul.mako.rs index 6cf61f394..d27e6c929 100644 --- a/style/properties/longhand/xul.mako.rs +++ b/style/properties/longhand/xul.mako.rs @@ -16,6 +16,13 @@ ${helpers.single_keyword("-moz-box-align", "stretch start center baseline end", ...
1
20
0
cbafd6bd59a0ed65ffdc25615c007de8ba095346
crypto-universe
2017-03-03T21:36:40
servo: Merge #15815 - Use more idiomatic or_else construction (from crypto-universe:master); r=KiChjang <!-- Please describe your changes on the following line: --> or_else in more ideomatic rust construction than match, where Some(x) => Some(x) --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` b...
diff --git a/script/layout_wrapper.rs b/script/layout_wrapper.rs index 071868a68..66a77e892 100644 --- a/script/layout_wrapper.rs +++ b/script/layout_wrapper.rs @@ -953,19 +953,12 @@ impl<ConcreteNode> Iterator for ThreadSafeLayoutNodeChildrenIterator<ConcreteNod if let Some(ref node) = node { ...
1
4
11
2d4d06c84aef52834df2d410ae9233520dc274df
Bobby Holley
2017-03-03T19:53:52
servo: Merge #15814 - Revert #15793 for crashes and test failures on stylo (from bholley:backout_15793); r=bholley Looks like #15793 busted autoland. Given that it's the weekend for Xidorn I'm going to back out the patch. CC @upsuper Source-Repo: https://github.com/servo/servo Source-Revision: 3ca6ee2f7fc7cb5eda2930...
diff --git a/style/matching.rs b/style/matching.rs index 4680bed1b..129b4884c 100644 --- a/style/matching.rs +++ b/style/matching.rs @@ -398,9 +398,7 @@ impl<E: TElement> StyleSharingCandidateCache<E> { return; } - let animation_count = box_style.animation_name_count(); - debug_ass...
4
93
79
ae0d49a11fe96da91b6d7993656fca0a3ad2c49e
Emilio Cobos Álvarez
2017-03-03T17:15:15
servo: Merge #15809 - stylo: Backport rust-nsstring crash fixes to the vendored version (from emilio:nsstuff); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: c32181c6dbd611c351b1434118739040ec7307b9
diff --git a/style/gecko_bindings/nsstring_vendor/src/lib.rs b/style/gecko_bindings/nsstring_vendor/src/lib.rs index e232c8201..ed353d25f 100644 --- a/style/gecko_bindings/nsstring_vendor/src/lib.rs +++ b/style/gecko_bindings/nsstring_vendor/src/lib.rs @@ -313,7 +313,7 @@ macro_rules! define_string_types { ...
1
6
1
64c5091056c1f5becd75f70a8763e157dc1923d9
Sumant Manne
2017-03-03T14:56:30
servo: Merge #14620 - Implemented nosniff for fetch algorithm (from dpyro:nosniff); r=jdm <!-- Please describe your changes on the following line: --> Implemented [nosniff](https://fetch.spec.whatwg.org/#should-response-to-request-be-blocked-due-to-nosniff?) for [fetch algorithm](https://fetch.spec.whatwg.org). --- ...
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index 44a603025..fe04acc35 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -8,8 +8,10 @@ use devtools_traits::DevtoolsControlMsg; use fetch::cors_cache::CorsCache; use filemanager_thread::FileManager; use http_loader::{HttpState, determine_requ...
1
126
12
7e33f1e951f62a9c117886a008eac0a80d330458
Xidorn Quan
2017-03-03T11:28:21
servo: Merge #15793 - Fix animation shorthand parsing (from upsuper:animation); r=emilio,bholley which is somehow broken after #15779. But it seems there are various issue around the animation shorthand parsing, so I try to fix it to make it match the spec. I expect this change to fix most parsing failures in Gecko'...
diff --git a/style/matching.rs b/style/matching.rs index 129b4884c..4680bed1b 100644 --- a/style/matching.rs +++ b/style/matching.rs @@ -398,7 +398,9 @@ impl<E: TElement> StyleSharingCandidateCache<E> { return; } - if box_style.animation_name_count() > 0 { + let animation_count = b...
4
79
93
b74a4a42d5360297deaf0507df0f97d968dd1964
Charles Vandevoorde
2017-03-03T09:05:11
servo: Merge #15455 - Implement XHR progress event changes (from charlesvdv:xhr-process-event); r=KiChjang <!-- Please describe your changes on the following line: --> This PR implements change in the specs in XHR. Unfortunatelly, @jdm the test are not passing. It looks like the fetch module send more bytes that we ...
diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs index e96fa2a44..b1d528646 100644 --- a/script/dom/xmlhttprequest.rs +++ b/script/dom/xmlhttprequest.rs @@ -43,7 +43,7 @@ use encoding::types::{DecoderTrap, EncoderTrap, Encoding, EncodingRef}; use euclid::length::Length; use html5ever::serializ...
1
10
11
934443b6ddda7ea4d433d68f93e71547fb1789ed
Emilio Cobos Álvarez
2017-03-03T02:46:40
servo: Merge #15805 - layout_thread: Also reposition elements when reflowing all nodes (from emilio:reposition); r=glennw Source-Repo: https://github.com/servo/servo Source-Revision: aeb7ab867f6d0d0df049329ebb55231c1e092805
diff --git a/layout_thread/lib.rs b/layout_thread/lib.rs index c196f394d..1609ea2ae 100644 --- a/layout_thread/lib.rs +++ b/layout_thread/lib.rs @@ -496,8 +496,6 @@ impl LayoutThread { // Create a layout context for use in building display lists, hit testing, &c. fn build_layout_context(&self, ...
2
9
29
2d6824561a0405f999bf132abec15476c0d94395
Glenn Watson
2017-03-03T01:02:26
servo: Merge #15804 - Update WR (reference frames for fixed position elements) (from glennw:update-wr-transforms); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 0f6b5c3b521686f79a18da64364eed5a03262605
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index d75e46dd3..ac2ad50e1 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -182,17 +182,25 @@ impl DisplayList { *client_point } else { let point = *translated_point - stacking_context.bounds.origin; ...
5
47
27
6acedbf1b1c33ba400a11ecd339c9066c424f851
Fernando Jiménez Moreno
2017-03-02T19:43:17
servo: Merge #15768 - Trigger reflow on document.elementsFromPoint (from ferjm:issue-15592-document-elementsFromPoint); r=emilio As [suggested](https://github.com/servo/servo/issues/15592#issuecomment-280379805) by @jdm `Document::nodes_from_point` now triggers a reflow. I added a new reftest that panics with `ERROR:...
diff --git a/layout/lib.rs b/layout/lib.rs index 50ab10f05..4c5bd766e 100644 --- a/layout/lib.rs +++ b/layout/lib.rs @@ -73,7 +73,7 @@ mod linked_list; mod list_item; mod model; mod multicol; -mod opaque_node; +pub mod opaque_node; pub mod parallel; mod persistent_list; pub mod query; diff --git a/layout/query.rs...
7
51
33
fb228fd8bd9c3de6b6dc00004adccfcee0e7649d
Anthony Ramine
2017-03-02T15:41:20
servo: Merge #15798 - Switch to our own websocket fork (from nox:websocket); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: dabbdaf971c14e7b79704bc6d473ef351a3a9192
diff --git a/net/Cargo.toml b/net/Cargo.toml index 7147236fe..df7e7dc35 100644 --- a/net/Cargo.toml +++ b/net/Cargo.toml @@ -35,13 +35,13 @@ serde_derive = "0.9" serde_json = "0.9" servo_config = {path = "../config"} servo_url = {path = "../url"} +servo-websocket = "0.18" threadpool = "1.0" time = "0.1.17" unicas...
3
3
3
70ab01fcf7a47fa579a82af9f4db50c5c2e2744c
Emilio Cobos Álvarez
2017-03-02T02:08:43
servo: Merge #15791 - Bug 1340334: Allow sibling hints in StoredRestyleHint, and handle them correctly (from emilio:hint); r=bholley Reviewed upstream by Bobby. Source-Repo: https://github.com/servo/servo Source-Revision: d0856fd4cdc8dacd0f2c4034d32e495e76490d0a
diff --git a/style/data.rs b/style/data.rs index a50d5a15f..096cd78c0 100644 --- a/style/data.rs +++ b/style/data.rs @@ -9,7 +9,7 @@ use dom::TElement; use properties::ComputedValues; use properties::longhands::display::computed_value as display; -use restyle_hints::{RESTYLE_LATER_SIBLINGS, RESTYLE_SELF, RestyleHint...
2
53
92
e7a34eedb937c011826110a50e40de10f34f27a2
Glenn Watson
2017-03-01T19:53:35
servo: Merge #15762 - Add support for page zoom via new WR API (from glennw:basic-page-zoom); r=mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 67638bdcf27f9bb899059d1e2f8e907f7462cad6
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index f31fa1230..dc3313fb5 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -1309,6 +1309,7 @@ impl<Window: WindowMethods> IOCompositor<Window> { self.page_zoom = ScaleFactor::new(1.0); self.update_zoom_transfo...
1
7
0
666dcee122431331d475f8bea670439000fa30f2
Karl
2017-03-01T17:50:49
servo: Merge #15416 - Fix border shorthand serialization (from karlding:servo-15395_border_serialization); r=emilio Fix border shorthand serialization when sides are not identical. I think I managed to get the serialization to work as expected. I added a check to ensure that the **border-width**, **border-style** and...
diff --git a/style/properties/shorthand/border.mako.rs b/style/properties/shorthand/border.mako.rs index f6ae7df63..ee023d90e 100644 --- a/style/properties/shorthand/border.mako.rs +++ b/style/properties/shorthand/border.mako.rs @@ -3,7 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ <%namesp...
1
31
7
af7e95e0c04a98e4f0ab7ee8a2c90f6c5a23252c
Anthony Ramine
2017-02-28T19:10:17
servo: Merge #15769 - Kill serde_codegen 💣 (from nox:die-codegen-die); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 74e7afa1c8a0a355e3964a15045840adf7488e78
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index 5a5c6e54f..bce8baa67 100644 --- a/canvas/Cargo.toml +++ b/canvas/Cargo.toml @@ -20,8 +20,4 @@ log = "0.3.5" num-traits = "0.1.32" offscreen_gl_context = "0.6" servo_config = {path = "../config"} - -[dependencies.webrender_traits] -git = "https://github.com/ser...
14
18
82
80e04c6b6638a22ed7eb6ef2c772553acf184e9b
Simon Sapin
2017-02-28T16:22:27
servo: Merge #15766 - Update cssparser (from servo:cssparserup); r=Manishearth <!-- Please describe your changes on the following line: --> https://github.com/servo/rust-cssparser/pull/123 In particular, `match_ignore_ascii_case` now supports the full `match` syntax. --- <!-- Thank you for contributing to Servo! Pl...
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index 9c374c1c6..5a5c6e54f 100644 --- a/canvas/Cargo.toml +++ b/canvas/Cargo.toml @@ -12,7 +12,7 @@ path = "lib.rs" [dependencies] azure = {git = "https://github.com/servo/rust-azure"} canvas_traits = {path = "../canvas_traits"} -cssparser = {version = "0.11", featu...
14
12
22
1743864229ebeb4ac78e7dd180773b06570d500f
Xidorn Quan
2017-02-28T07:08:33
servo: Merge #15761 - Have shorthand parsing functions not return Option for their longhands (from upsuper:shorthand); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 7ee629492280289fdd19c812389e833d5905e508
diff --git a/script/dom/element.rs b/script/dom/element.rs index d5e8bcc82..5bbef292b 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -103,7 +103,7 @@ use style::matching::{common_style_affecting_attributes, rare_style_affecting_at use style::parser::ParserContextExtraData; use style::properties::{D...
26
283
213
18885a747762862c2c9354d7fd06b90fb7d3c1e1
Glenn Watson
2017-02-28T04:40:00
servo: Merge #15760 - Update WR (mostly dep updates, clip-scroll work) (from glennw:update-wr-deps); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: b8b23fda5f53397be30057cb406011bbdbdc3582
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index 3e496106f..b178d9f0a 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -59,5 +59,5 @@ servo-fontconfig = "0.2.1" simd = "0.2.0" [target.'cfg(target_os = "windows")'.dependencies] -servo-dwrote = "0.2" +dwrote = "0.2" truetype = "0.26"
1
1
1
2b4c65677184ca86788cc6fb2ac3eb71e06fafa0
Keith Yeung
2017-02-28T01:21:50
servo: Merge #15464 - Support lang pseudo class (from KiChjang:pseudo-lang); r=emilio Fixes #8219. Source-Repo: https://github.com/servo/servo Source-Revision: 4b394312153c56812113c149df77a313939de30f
diff --git a/script/dom/element.rs b/script/dom/element.rs index 471771728..d5e8bcc82 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -354,6 +354,7 @@ pub trait LayoutElementHelpers { fn style_attribute(&self) -> *const Option<Arc<RwLock<PropertyDeclarationBlock>>>; fn local_name(&self) -> &...
3
93
24
8a11114ad1f68cda48240ee8d70e03c78387dd9a
Emilio Cobos Álvarez
2017-02-27T15:54:30
servo: Merge #15742 - stylo: Fix adjustment of the display property to save mOriginalDisplay properly (from emilio:stylo-orig-display); r=bzbarsky r? @heycam Source-Repo: https://github.com/servo/servo Source-Revision: cecbc33c015425e87a38661a3b3f24b6f2968d87
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index bc8f4b608..1c26c4a8f 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -1413,10 +1413,26 @@ fn static_assert() { self.gecko.mDisplay = result; self.gecko.mOriginalDisplay = result; ...
2
20
2
7c631b432430de5cb89e4c767f35d52f804c8595
Anthony Ramine
2017-02-27T13:48:43
servo: Merge #15752 - Update syn to 0.11 (from nox:syn); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 63320730a5e2c9d13b7204a1e87beaa51f0708e1
diff --git a/deny_public_fields/Cargo.toml b/deny_public_fields/Cargo.toml index de5c99c04..6b2c567e2 100644 --- a/deny_public_fields/Cargo.toml +++ b/deny_public_fields/Cargo.toml @@ -10,5 +10,5 @@ path = "lib.rs" proc-macro = true [dependencies] -syn = "0.10" -synstructure = "0.4" +syn = "0.11" +synstructure = "0...
4
5
36
f32de11213b9a7823c47cf7085ea19e4847963e5
Neck Varentsov
2017-02-27T01:40:23
servo: Merge #15613 - fix {transform,perspective}-origin accepts (and ignores) anything for… (from Varentsov:master); r=upsuper … their second part of value <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is c...
diff --git a/style/properties/longhand/effects.mako.rs b/style/properties/longhand/effects.mako.rs index e651cc57a..5c44a737b 100644 --- a/style/properties/longhand/effects.mako.rs +++ b/style/properties/longhand/effects.mako.rs @@ -487,7 +487,7 @@ pub fn parse_origin(context: &ParserContext, input: &mut Parser) -> Res...
1
1
1
f86d8ccc2b489a7b3c7fefae7854abc6c306bc0a
Michael Nelson
2017-02-27T00:54:11
servo: Merge #15733 - Background serialization of multiple values (from absoludity:fix-background-serialization); r=upsuper Similar to animation, the serialization of multiple backgrounds should return the longhands serialization if there are an unequal number of values for the required properties. This is part of #15...
diff --git a/style/properties/shorthand/background.mako.rs b/style/properties/shorthand/background.mako.rs index 857a728a7..30c60e977 100644 --- a/style/properties/shorthand/background.mako.rs +++ b/style/properties/shorthand/background.mako.rs @@ -13,6 +13,8 @@ use properties::longhands::{background_color, backgr...
2
76
76
a9cf811d800deae0f6955a7a98e888c87d30cd27
Glenn Watson
2017-02-26T23:22:25
servo: Merge #15749 - Update WR (image tiling, inset box shadow fixes, new key api) (from glennw:update-wr-tiling); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: c025a794dd709e9e8acf6cd82e28769df954313a
diff --git a/canvas/canvas_paint_thread.rs b/canvas/canvas_paint_thread.rs index 831b5a161..87ebcdf5c 100644 --- a/canvas/canvas_paint_thread.rs +++ b/canvas/canvas_paint_thread.rs @@ -106,7 +106,7 @@ impl<'a> CanvasPaintThread<'a> { let draw_target = CanvasPaintThread::create(size); let path_builder ...
5
18
8
c48ce0e8ffb0a11867a1a7274a8d7764bf1d76b8
Simon Sapin
2017-02-26T22:09:44
servo: Merge #15745 - Cascade: skip duplicated properties before rather than after a virtual call (from servo:hoist) Source-Repo: https://github.com/servo/servo Source-Revision: 7c5ac06cd2339e74fdc732ab63675e0f2d6ef5e0
diff --git a/script/dom/cssstyledeclaration.rs b/script/dom/cssstyledeclaration.rs index a2a77125a..4d81d457f 100644 --- a/script/dom/cssstyledeclaration.rs +++ b/script/dom/cssstyledeclaration.rs @@ -218,7 +218,7 @@ impl CSSStyleDeclaration { let mut string = String::new(); - self.owner.with_block(...
9
162
200
ff4f4825fff832d116117a2f43c4c76b2c90ecf0
Jefry Lagrange
2017-02-26T17:35:12
servo: Merge #15649 - Rewrite the ban-type lint in Python (from zimio:issue-15591-rewrite-ban-type-lint); r=Wafflespeanut <!-- Please describe your changes on the following line: --> Rewrite the ban-type lint in Python. Question: Should the old ban-type lint written in rust be deleted? --- <!-- Thank you for contrib...
diff --git a/script_plugins/ban.rs b/script_plugins/ban.rs deleted file mode 100644 index 4a4e71c08..000000000 --- a/script_plugins/ban.rs +++ /dev/null @@ -1,53 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * fi...
2
0
55
f0f5cbc575bddcc61b62777f2ab5b243826a7033
Anthony Ramine
2017-02-26T14:26:05
servo: Merge #15743 - Update ws to 0.6 (from nox:ws); r=emilio This is exactly the same as 0.5.4, but without a semver violation. Source-Repo: https://github.com/servo/servo Source-Revision: 7ab1ef887c70a398db1f64486cb09c01e01f9e2c
diff --git a/debugger/Cargo.toml b/debugger/Cargo.toml index b9385d80e..20f5779b2 100644 --- a/debugger/Cargo.toml +++ b/debugger/Cargo.toml @@ -14,4 +14,4 @@ crate_type = ["rlib"] log = "0.3.5" [target.'cfg(not(target_os = "android"))'.dependencies] -ws = "0.5.3" +ws = "0.6"
1
1
1
894fa49325614abc92dcf85c1f854e05df7476ce
Manish Goregaokar
2017-02-26T07:26:34
servo: Merge #15739 - Disallow keyword values in min/max-size properties in the block direction (from Manishearth:fix-wm); r=xidorn r=xidorn from https://bugzilla.mozilla.org/show_bug.cgi?id=1342710 Source-Repo: https://github.com/servo/servo Source-Revision: f8f7b37dbdb918db25ebf3881478e4e1a4df8e30
diff --git a/style/properties/longhand/position.mako.rs b/style/properties/longhand/position.mako.rs index c9431031b..845d3eae7 100644 --- a/style/properties/longhand/position.mako.rs +++ b/style/properties/longhand/position.mako.rs @@ -217,16 +217,89 @@ ${helpers.predefined_type("flex-basis", ...
1
82
19
88263e6383adbccc5378b896d189e953bdac7222
Emilio Cobos Álvarez
2017-02-25T20:23:36
servo: Merge #15730 - style: Adjust float if the element is positioned per CSS 2.1 section 9.7 (from emilio:adjust-float); r=SimonSapin We've found crashes related to this in Gecko. r? @simonsapin or @heycam Source-Repo: https://github.com/servo/servo Source-Revision: eb281531f8f43ec724a46e2c62ae564c59a38c14
diff --git a/style/properties/properties.mako.rs b/style/properties/properties.mako.rs index b844f73a6..61ea7e4be 100644 --- a/style/properties/properties.mako.rs +++ b/style/properties/properties.mako.rs @@ -1960,10 +1960,14 @@ pub fn apply_declarations<'a, F, I>(viewport_size: Size2D<Au>, % endif co...
1
17
4
73b9652327ca2d8557fe5b7bfdf3766ca7f64818
Emilio Cobos Álvarez
2017-02-25T19:00:07
servo: Merge #15736 - Bug 1341083: Implement dynamic restyling for display: contents (from servo:display-contents); r=heycam Reviewed upstream by @heycam cc @bholley, didn't end up renaming the `layout_parent` thing, because it made the cascade way more verbose (and difficult to understand IMO) unnecessarily, and you...
diff --git a/style/animation.rs b/style/animation.rs index 8ce3077f2..aa115527d 100644 --- a/style/animation.rs +++ b/style/animation.rs @@ -430,6 +430,7 @@ fn compute_style_for_animation_step(context: &SharedStyleContext, /* is_root = */ false, ...
9
105
17
0b23379b397aabc6faf7a2bde0914aaddce8ebb1
Ethan Glasser-Camp
2017-02-24T22:08:58
servo: Merge #14740 - Add support for keyword values for min-width and max-width (from glasserc:extremum-length); r=Manishearth This is a follow-up to #14432 which got closed and can no longer be re-opened. This PR aims to add support for keyword-values max-content, min-content, fit-content, and fill-available to the...
diff --git a/style/gecko/values.rs b/style/gecko/values.rs index 6d3f374c4..cccb5ca69 100644 --- a/style/gecko/values.rs +++ b/style/gecko/values.rs @@ -11,9 +11,10 @@ use cssparser::RGBA; use gecko_bindings::structs::{nsStyleCoord, StyleGridTrackBreadth, StyleShapeRadius}; use gecko_bindings::sugar::ns_style_coord::...
9
349
17
132d6ea8ca13faca90c7cec2a06fda757b40db50
Nazım Can Altınova
2017-02-24T21:22:15
servo: Merge #15732 - Fix parsing of ClipRect (from canaltinova:clip-parse); r=Manishearth <!-- Please describe your changes on the following line: --> Fix parsing of ClipRect for clip property. --- <!-- 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 4b500b926..ab3636fdb 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -1259,8 +1259,10 @@ impl FragmentDisplayListBuilding for Fragment { }; // FIXME(pcwalton, #2795): Get the real c...
4
58
27
5ae4856c25b9b8a7975a1a0f9b39bdd39eab48c9
Nazım Can Altınova
2017-02-24T15:44:48
servo: Merge #15710 - Implement gecko glue for clip property (from canaltinova:clip); r=emilio <!-- Please describe your changes on the following line: --> Implemented gecko glue for clip property. Clip property looks slightly different in gecko. `auto` top and left values are preserved as auto in [gecko](http://sear...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index ac98e99ee..37f9bf798 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -2308,7 +2308,7 @@ fn static_assert() { </%self:impl_trait> <%self:impl_trait style_struct_name="Effects" - ski...
2
43
2
67ec46f1f9f66ea38355997b1543996041f25ac8
Simon Sapin
2017-02-24T13:00:24
servo: Merge #15691 - Stylo: add `content: -moz-alt-content` (from servo:moz-alt-content); r=bzbarsky <!-- Please describe your changes on the following line: --> Part of https://bugzilla.mozilla.org/show_bug.cgi?id=1341642 --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the ste...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 34f698192..ac98e99ee 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -3120,6 +3120,8 @@ clip-path => self.gecko.mContents[i].mType = eStyleContentType_NoOpenQuote, ...
2
16
0
dae8ba117ec1894edf285954ecc462d5c8efa513
Anthony Ramine
2017-02-24T11:23:06
servo: Merge #15131 - Test that StorageEvent's URL is empty from document.createEvent (from nox:storageevent); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 6665d599121bd0852b8181b1c8c1a9ad298f178a
diff --git a/script/dom/document.rs b/script/dom/document.rs index 4b693f044..d37eb26c2 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -2710,8 +2710,7 @@ impl DocumentMethods for Document { "progressevent" => Ok(Root::upcast(ProgressEvent::new_uninitialized(self.window...
1
1
2
2b3f039b706e177f04c72e9d815f1c604d2820d1
Anthony Ramine
2017-02-24T08:14:03
servo: Merge #15717 - Remove rustc-serialize from cookie and url (from nox:cookie); r=asajeffrey Source-Repo: https://github.com/servo/servo Source-Revision: 0e33756e8dff3215960b590cb577152cf0eeea96
diff --git a/net/Cargo.toml b/net/Cargo.toml index 2252c7655..b938a5f40 100644 --- a/net/Cargo.toml +++ b/net/Cargo.toml @@ -12,7 +12,7 @@ path = "lib.rs" [dependencies] brotli = "1.0.6" content-blocker = "0.2.3" -cookie = {version = "0.2.5", features = ["serialize-rustc"]} +cookie = "0.2.5" devtools_traits = {path...
5
6
6
2900397ce07bfcdec09b4dae5ebdf13de69fa5f0
Michael Nelson
2017-02-24T04:12:30
servo: Merge #15685 - Fix animation serialization 15398 pt2 (from absoludity:fix-animation-serialization-15398-pt2); r=upsuper Fixes animation serialization so that an animation shorthand is serialized only when the value lists have the same length (part of #15398) There are two commits here - the first is a refactor...
diff --git a/style/properties/declaration_block.rs b/style/properties/declaration_block.rs index f9681e683..bde41fc6d 100644 --- a/style/properties/declaration_block.rs +++ b/style/properties/declaration_block.rs @@ -128,10 +128,9 @@ impl PropertyDeclarationBlock { // Step 1.2.3 // We ...
4
53
162
5e4563f2ee85502dfcc6c8a769a2fefc453a3f90
Anthony Ramine
2017-02-24T03:19:34
servo: Merge #15712 - Remove rustc-serialize from style and style_traits (from nox:rustc-serialize); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: f9f55789b826eca06041f1ac10d63d01d0e1eb9c
diff --git a/style/Cargo.toml b/style/Cargo.toml index 7576ec4b7..f41cf9b6b 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -45,7 +45,6 @@ parking_lot = "0.3.3" phf = "0.7.20" pdqsort = "0.1.0" rayon = "0.6" -rustc-serialize = "0.3" selectors = { path = "../selectors" } serde = {version = "0.9", optional =...
8
4
8
341950d5a143ecefe0dcd2fe4d1eb1b7e7a08e2a
Mathieu Hordesseaux
2017-02-24T01:54:40
servo: Merge #13561 - Make Request throw less often (fixes #13457) (from mathieuh:request-constructor); 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 data...
diff --git a/script/dom/request.rs b/script/dom/request.rs index a81d9f767..7b9f21c27 100644 --- a/script/dom/request.rs +++ b/script/dom/request.rs @@ -183,9 +183,8 @@ impl Request { !init.window.handle().is_undefined() { // Step 13.1 if request.mode == NetTraitsRequestMo...
1
6
11
224278419f190862c378a2d9a179561f4eb6fe23
Glenn Watson
2017-02-24T00:01:16
servo: Merge #15700 - Introduce CSSPixel as a replacement for ViewportPx and PagePx (from glennw:zoom-wip-2); r=mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 1d13e6a2df42af3cce427a0b2062ac70d28c05d0
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index b7eb2633e..f31fa1230 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -34,7 +34,7 @@ use std::fs::File; use std::rc::Rc; use std::sync::mpsc::Sender; use std::time::{Duration, Instant}; -use style_traits::{PagePx, Viewp...
15
76
87
a8d10ef8dec25199e4125d8e0857e65e0e220425
Nazım Can Altınova
2017-02-23T20:37:06
servo: Merge #15695 - Stylo: Add constructors for @font-face descriptors (from canaltinova:stylo-font-face); r=Manishearth <!-- Please describe your changes on the following line: --> Part of https://bugzilla.mozilla.org/show_bug.cgi?id=1340728 --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` b...
diff --git a/style/gecko_bindings/bindings.rs b/style/gecko_bindings/bindings.rs index 5ee54e513..a64c70d0b 100644 --- a/style/gecko_bindings/bindings.rs +++ b/style/gecko_bindings/bindings.rs @@ -840,6 +840,26 @@ extern "C" { pub fn Gecko_CSSValue_SetFunction(css_value: nsCSSValueBorrowedMut, ...
1
20
0
5423431d21e863357d5fb421b915bf8bc7531e4c
Nathan Froyd
2017-02-23T18:15:41
servo: Merge #15535 - geckolib: use a global thread pool for styling (from froydnj:global-style-thread-pool); r=bholley By having a single thread pool, rather than one per document, we use less memory. This addresses https://bugzilla.mozilla.org/show_bug.cgi?id=1324250. This may be obvious to an experienced Rust pro...
diff --git a/style/Cargo.toml b/style/Cargo.toml index 563c7ed09..7576ec4b7 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -13,7 +13,7 @@ path = "lib.rs" doctest = false [features] -gecko = ["nsstring_vendor", "num_cpus", "rayon/unstable"] +gecko = ["nsstring_vendor", "rayon/unstable"] use_bindgen = ["bin...
3
1
41
f0e0e93099bbcedc9c8bb102901aed50380240f3
Josh Matthews
2017-02-23T11:55:45
servo: Merge #15696 - Do not pool HTTP connections (from jdm:no-http-pool); r=emilio HTTP connection pooling triggers consistent failures in #14620. Let's disable it until there's more time to solve the underlying problem in #15694. --- - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does ...
diff --git a/net/resource_thread.rs b/net/resource_thread.rs index 7c109e3b2..e46640b11 100644 --- a/net/resource_thread.rs +++ b/net/resource_thread.rs @@ -325,7 +325,8 @@ impl CoreResourceManager { cookie_jar: group.cookie_jar.clone(), auth_cache: group.auth_cache.clone(), block...
1
2
1
597d683f39dc06e4fc11fdb40558a60dcd42bcb9
Simon Sapin
2017-02-23T07:41:26
servo: Merge #15692 - Stylo: add :-moz-table-border-nonzero pseudo-class (from servo:moz-table-border-nonzero); r=upsuper <!-- Please describe your changes on the following line: --> https://bugzilla.mozilla.org/show_bug.cgi?id=1340696 --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` ...
diff --git a/style/gecko/non_ts_pseudo_class_list.rs b/style/gecko/non_ts_pseudo_class_list.rs index a019484e9..b9c109f31 100644 --- a/style/gecko/non_ts_pseudo_class_list.rs +++ b/style/gecko/non_ts_pseudo_class_list.rs @@ -46,4 +46,5 @@ pseudo_class_list! { ("read-only", ReadOnly, _, IN_READ_WRITE_STATE, _), ...
2
2
0
2ed12f5cd7f4bac67531d7371fa8cf1de2151457
Xidorn Quan
2017-02-22T23:58:35
servo: Merge #15682 - Simplify defining arc ffi types (from upsuper:arc-types); r=Manishearth r? @Manishearth I don't have a good sense for creating syntax... so if you have any suggestion for the syntax of `impl_arc_ffi` macro, it would be appreciated. Source-Repo: https://github.com/servo/servo Source-Revision: af...
diff --git a/style/gecko/arc_types.rs b/style/gecko/arc_types.rs new file mode 100644 index 000000000..72f044c1c --- /dev/null +++ b/style/gecko/arc_types.rs @@ -0,0 +1,58 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this +...
4
60
47
958595ad078e202396925e03c680d99d68d37e8a
Glenn Watson
2017-02-22T18:32:52
servo: Merge #15681 - Update WR (inset box shadow fix, border-image support) (from glennw:update-wr-box-shadows); r=Wafflespeanut I have a follow up PR for Servo that uses the new border-image APIs, but I'll land that separately, so that we don't delay landing the WR update itself. Source-Repo: https://github.com/ser...
diff --git a/layout/webrender_helpers.rs b/layout/webrender_helpers.rs index 665916594..de50d3d0e 100644 --- a/layout/webrender_helpers.rs +++ b/layout/webrender_helpers.rs @@ -270,35 +270,41 @@ impl WebRenderDisplayItemConverter for DisplayItem { } DisplayItem::Border(ref item) => { ...
1
15
9
d7e0d0a97bfe2af53dd07f48ff78a9a4fcad8818
Connor Brewster
2017-02-22T17:46:27
servo: Merge #15438 - Add ImmutableOrigin to allow for serializing origins (from asajeffrey:url-serializable-origin); r=jdm <!-- Please describe your changes on the following line: --> This PR adds a serializable type `ImmutableOrigin` and a non-serializable type `MutableOrigin`. The immutable type represents an orig...
diff --git a/net/http_loader.rs b/net/http_loader.rs index 63fa74570..56750d60f 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -37,7 +37,7 @@ use net_traits::response::{HttpsState, Response, ResponseBody, ResponseType}; use openssl; use openssl::ssl::error::{OpensslError, SslError}; use resource_thread:...
18
238
121
b132c6348c6bd573ba302f83ebe938ad9ea0375c
Connor Imes
2017-02-22T17:05:37
servo: Merge #15458 - Update heartbeats-simple dependencies for bug fixes (from connorimes:hbs-0.4); r=emilio <!-- Please describe your changes on the following line: --> Updates heartbeats-simple dependencies for some bug fixes in native code (primarily for Windows). Now we create heartbeats as needed so we don't ha...
diff --git a/profile/heartbeats.rs b/profile/heartbeats.rs index b05cbf74b..4661dad61 100644 --- a/profile/heartbeats.rs +++ b/profile/heartbeats.rs @@ -2,95 +2,55 @@ * 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 heartbea...
1
70
80
154046fb9a414d9f83d4c63159d02eadad79d295
Hiroyuki Ikezoe
2017-02-22T16:17:18
servo: Merge #15683 - Fill missing property in keyframe (from hiikezoe:fill-missing-property-in-keyframe); r=emilio <!-- Please describe your changes on the following line: --> This is a PR of https://bugzilla.mozilla.org/show_bug.cgi?id=1340961 All patches has been reviewed by @emilio. Thanks! --- <!-- Thank you fo...
diff --git a/style/keyframes.rs b/style/keyframes.rs index 07de56158..fcb05c8dc 100644 --- a/style/keyframes.rs +++ b/style/keyframes.rs @@ -15,6 +15,7 @@ use properties::{PropertyDeclarationId, LonghandId, DeclaredValue}; use properties::PropertyDeclarationParseResult; use properties::animated_properties::Transition...
3
47
16
7e64cc36d62dd89864b1de91213b6e035fc7bec5
Anthony Ramine
2017-02-22T13:03:39
servo: Merge #15686 - Use serde_json to persist cookies in the net crate (from nox:serde-cookies); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: deabf9618438627edb04a76ebd086b612012fc75
diff --git a/net/Cargo.toml b/net/Cargo.toml index da1db328a..2252c7655 100644 --- a/net/Cargo.toml +++ b/net/Cargo.toml @@ -30,6 +30,9 @@ openssl = "0.7.6" openssl-verify = "0.1" profile_traits = {path = "../profile_traits"} rustc-serialize = "0.3" +serde = "0.9" +serde_derive = "0.9" +serde_json = "0.9" servo_con...
6
32
18
b1fbfee227cdef4a5a8c219246f29684afbf2cb7
Glenn Watson
2017-02-22T04:45:20
servo: Merge #15680 - Rename ScreenPx to DeviceIndependentPixel (from glennw:zoom-wip); r=mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 03893e25cc00488dea540ce53865f7f696f8f262
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 2673af8b4..b7eb2633e 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -27,7 +27,7 @@ use script_traits::{TouchpadPressurePhase, TouchEventType, TouchId, WindowSizeDa use script_traits::CompositorEvent::{self, MouseMoveEve...
7
33
34
979334caa05f7f04dffac0e327129b3adc811b7d
Xidorn Quan
2017-02-22T02:56:41
servo: Merge #15669 - Read ServoArcTypeList.h for list of arc types (from upsuper:bindgen-arc-type); r=heycam r? @heycam Source-Repo: https://github.com/servo/servo Source-Revision: 07debf5dc02e48ede1652100377a4c51979ca7e6
diff --git a/style/build_gecko.rs b/style/build_gecko.rs index b62ec7e0f..8d530f7e3 100644 --- a/style/build_gecko.rs +++ b/style/build_gecko.rs @@ -232,6 +232,24 @@ mod bindings { File::create(&out_file).unwrap().write_all(&result.into_bytes()).expect("Unable to write output"); } + fn get_arc_types(...
1
19
10
ddb4efce90452af5e12d2153e021d7e1d11fa970
Sam Liu
2017-02-21T14:54:30
servo: Merge #15653 - Cleanup arraybufferview type (from samliu:cleanup_arraybufferview_type); r=cbrewster <!-- Please describe your changes on the following line: --> Replace uses of spidermonkey-specific JS_GetArrayBufferViewType with ArrayBufferView impl's method get_array_type(). Tests pass: ./mach test-wpt tests...
diff --git a/script/dom/crypto.rs b/script/dom/crypto.rs index 6c7fce6c8..0067dd1c5 100644 --- a/script/dom/crypto.rs +++ b/script/dom/crypto.rs @@ -11,7 +11,7 @@ use dom::bindings::js::Root; use dom::bindings::reflector::{Reflector, reflect_dom_object}; use dom::globalscope::GlobalScope; use js::jsapi::{JSContext, ...
2
10
11