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
75eb6b1f307c1e717deaba56e5fc48a753b8a22c
Simon Sapin
2017-05-13T03:34:09
servo: Merge #16837 - Fix future illegal_floating_point_literal_pattern warnings (from servo:illegal_floating_point_literal_pattern); r=emilio They make component/style fail to build, because of `#[deny(warnings)]` Source-Repo: https://github.com/servo/servo Source-Revision: b6f5d65bbddc9e8d35016c8669256a8a539b7516
diff --git a/layout/model.rs b/layout/model.rs index 531d37038..aba7c3f39 100644 --- a/layout/model.rs +++ b/layout/model.rs @@ -143,16 +143,19 @@ impl MarginCollapseInfo { may_collapse_through = may_collapse_through && match fragment.style().content_block_size() { ...
4
23
19
9113a76412d7ddb87e7218366ba92d4e4c11343a
Imanol Fernandez
2017-05-13T01:44:02
servo: Merge #16833 - Fix unsafe AtomicRefCell<T> transmutes in Layout component (from MortimerGoro:layout_alignment); r=SimonSapin <!-- Please describe your changes on the following line: --> Fixes unsafe transmute between `AtomicRefCell<PersistentLayoutData>` and `AtomicRefCell<PartialPersistentLayoutData>` which ...
diff --git a/layout/lib.rs b/layout/lib.rs index abdf6ff04..1df46c557 100644 --- a/layout/lib.rs +++ b/layout/lib.rs @@ -93,6 +93,7 @@ pub mod wrapper; // For unit tests: pub use fragment::Fragment; pub use fragment::SpecificFragmentInfo; +pub use self::data::PersistentLayoutData; /// Returns whether the two argu...
2
6
0
61b57b5b6bd1c43ef56fb775036104d5e9bc885b
Mike Hommey
2017-05-13T00:11:31
servo: Merge #16847 - Opt-in to thread-local jemalloc arenas for stylo rayon threads (from glandium:master); r=bholley <!-- Please describe your changes on the following line: --> Servo part of https://bugzilla.mozilla.org/show_bug.cgi?id=1361258 --- <!-- Thank you for contributing to Servo! Please replace each `[ ]`...
diff --git a/style/gecko/generated/bindings.rs b/style/gecko/generated/bindings.rs index c365ff677..13fe500e0 100644 --- a/style/gecko/generated/bindings.rs +++ b/style/gecko/generated/bindings.rs @@ -250,16 +250,16 @@ pub type RawServoSupportsRuleBorrowed<'a> = &'a RawServoSupportsRule; pub type RawServoSupportsRuleB...
2
17
9
8f24f8aaa4d72529fb9079d084af79a68d43283a
Cameron McCormack
2017-05-12T22:32:21
servo: Merge #16831 - style: Support :-moz-autofill and :-moz-autofill-preview in Gecko (from heycam:autofill); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 52240c21d9da0f88928069c98d1480bd28395507
diff --git a/style/element_state.rs b/style/element_state.rs index 1c9458055..30e67060f 100644 --- a/style/element_state.rs +++ b/style/element_state.rs @@ -115,5 +115,9 @@ bitflags! { const IN_HANDLER_VULNERABLE_NO_UPDATE_STATE = 1 << 42, /// https://drafts.csswg.org/selectors-4/#the-focus-within-pse...
3
9
1
91079cf0cba4901bff15a91da19905b9be708953
Hiroyuki Ikezoe
2017-05-12T17:35:52
servo: Merge #16826 - Check ElementHasAnimations flag in rust side (from hiikezoe:check-animation-flag); r=birtles We can bail out earlier before calling an FFI function. This is a PR for https://bugzilla.mozilla.org/show_bug.cgi?id=1364264 . - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy`...
diff --git a/style/gecko/wrapper.rs b/style/gecko/wrapper.rs index 5461bd776..150074770 100644 --- a/style/gecko/wrapper.rs +++ b/style/gecko/wrapper.rs @@ -406,6 +406,12 @@ impl<'le> GeckoElement<'le> { }, } } + + fn may_have_animations(&self) -> bool { + use gecko_bindings::struct...
1
9
3
401255d4081c7b30fa8072d2a5fd50c62271267c
Manish Goregaokar
2017-05-12T15:27:35
servo: Merge #16821 - font-variant-caps should accept all-small-caps and all-petite-caps (from Manishearth:variant-caps); r=jryans Source-Repo: https://github.com/servo/servo Source-Revision: c260beba3904cd587964ce4330a7a7e784d21343
diff --git a/style/properties/longhand/font.mako.rs b/style/properties/longhand/font.mako.rs index f83757fb5..723d657ab 100644 --- a/style/properties/longhand/font.mako.rs +++ b/style/properties/longhand/font.mako.rs @@ -337,14 +337,14 @@ ${helpers.single_keyword_system("font-style", <% font_variant_caps_custom_co...
1
3
3
1d2b2fac5e5240031574ee50568f50505f3f0b17
Emilio Cobos Álvarez
2017-05-12T13:56:47
servo: Merge #16802 - style: Slim down SharedStyleContext, and do various other cleanups around the style crate (from emilio:slim-down-slc); r=bholley This slims down SharedStyleContext, in preparation for a few things. First, I would like to eventually move the stylist to the document in Servo, in order for it to ho...
diff --git a/layout/query.rs b/layout/query.rs index 6b5940669..c12a2b7f6 100644 --- a/layout/query.rs +++ b/layout/query.rs @@ -38,7 +38,6 @@ use style::logical_geometry::{WritingMode, BlockFlowDirection, InlineBaseDirecti use style::properties::{style_structs, PropertyId, PropertyDeclarationId, LonghandId}; use sty...
9
160
125
d42210f3eaa8c38ae2274fb76ea2f79abcc47293
Emilio Cobos Álvarez
2017-05-12T12:25:00
servo: Merge #16834 - Bug 1364377: Fix inheritance of NAC, and selector-matching of pseudo-implementing NAC (from emilio:nac-is-a-pain); r=bholley Source-Repo: https://github.com/servo/servo Source-Revision: db080cea97bd88ef4081ff244b5cf0707cbb5d48
diff --git a/style/dom.rs b/style/dom.rs index c4647928e..4dab32eba 100644 --- a/style/dom.rs +++ b/style/dom.rs @@ -325,6 +325,21 @@ pub trait TElement : Eq + PartialEq + Debug + Hash + Sized + Copy + Clone + } } + /// Returns the parent element we should inherit from. + /// + /// This is pret...
3
59
8
13e8f9dc975b686abad65d19cdf95b62b5158302
Cameron McCormack
2017-05-12T10:41:35
servo: Merge #16811 - style: record attribute and state selector dependencies (from heycam:snapshots); r=emilio From https://bugzilla.mozilla.org/show_bug.cgi?id=1352306. Source-Repo: https://github.com/servo/servo Source-Revision: 1faac6a6e640e9af1890debfbecce60c8cdf37a9
diff --git a/style/stylist.rs b/style/stylist.rs index c298216d8..5df061e48 100644 --- a/style/stylist.rs +++ b/style/stylist.rs @@ -11,6 +11,7 @@ use bit_vec::BitVec; use context::QuirksMode; use data::ComputedStyle; use dom::{AnimationRules, TElement}; +use element_state::ElementState; use error_reporting::RustLo...
1
89
1
cbbd6b4bfa1fec9bc37ffeda701522b2e9b65eff
zombiefungus
2017-05-12T08:53:24
servo: Merge #16818 - Add default value to layout.threads in prefs.rs (fix #15638) (from zombiefungus:fix15638); r=Manishearth <!-- Please describe your changes on the following line: --> Add default value to layout.threads in prefs.rs --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` w...
diff --git a/config/prefs.rs b/config/prefs.rs index d2eb988f9..8b7905750 100644 --- a/config/prefs.rs +++ b/config/prefs.rs @@ -3,10 +3,12 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use basedir::default_config_dir; +use num_cpus; use opts; use resource_files::resources_dir_path; use rustc...
1
14
2
5bac93d948485fa0ecc29ac4731a1c6424e54762
Ting-Yu Lin
2017-05-12T07:41:25
servo: Merge #16785 - Fix typo and simplify for PresentationalHintsSynthesizer (from aethanyc:fix-typo-and-simplify); r=mbrubeck <!-- 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 an...
diff --git a/script/layout_wrapper.rs b/script/layout_wrapper.rs index 7ae6a7e62..dec212314 100644 --- a/script/layout_wrapper.rs +++ b/script/layout_wrapper.rs @@ -66,7 +66,7 @@ use style::computed_values::display; use style::context::{QuirksMode, SharedStyleContext}; use style::data::ElementData; use style::dom::{...
5
13
18
f2859465735e0b27192b068e98573c4273e48e94
Manish Goregaokar
2017-05-11T21:10:23
servo: Merge #16815 - Bump cssparser to 0.13.3 (from Manishearth:cssup); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: d1f2cdfb3d3db69e7c87904a08abe9672ee1bf97
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index e24510fec..fc88108f5 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 = "0.13" +cssparser = "0.1...
9
9
9
5ae5c69b08f3a9f71b5c0a503b9d4274cef75253
Imanol Fernandez
2017-05-11T19:47:24
servo: Merge #16816 - Fix unsafe casting between PersistentLayoutData and PartialPersistentLayoutData (from MortimerGoro:unsafe_layout_data_cast); r=SimonSapin <!-- Please describe your changes on the following line: --> PersistentLayoutData and PartialPersistentLayoutData castings in Layout component assume that the...
diff --git a/layout/data.rs b/layout/data.rs index 7052fed7f..d0b798dac 100644 --- a/layout/data.rs +++ b/layout/data.rs @@ -6,6 +6,7 @@ use construct::ConstructionResult; use script_layout_interface::PartialPersistentLayoutData; /// Data that layout associates with a node. +#[repr(C)] pub struct PersistentLayoutD...
1
1
0
2ee7603ffe4cdcfee2c3ab4a25d49c2d7d91d375
Martin Robinson
2017-05-11T18:23:39
servo: Merge #16807 - Fix clamping of scroll position in window.scrollBy (from mrobinson:scroll-clamping); r=emilio For rightward and downward overflow the spec says: Let x be max(0, min(x, viewport scrolling area width - viewport width)). Let y be max(0, min(y, viewport scrolling area height - viewport height)). Pr...
diff --git a/script/dom/window.rs b/script/dom/window.rs index 6b8857b81..a2af04ad1 100644 --- a/script/dom/window.rs +++ b/script/dom/window.rs @@ -1066,8 +1066,8 @@ impl Window { let content_size = e.upcast::<Node>().bounding_content_box_or_zero(); let content_height = content_size.s...
1
2
2
9a157eafa7b5ff3010df0a69ea4507c98b860122
Bobby Holley
2017-05-11T17:21:02
servo: Merge #16813 - Handle importance when inserting into the rule tree (from bholley:importance_handling); r=emilio https://bugzilla.mozilla.org/show_bug.cgi?id=1358635 Source-Repo: https://github.com/servo/servo Source-Revision: f5794055108adf508bb0fd16222c4e5cf1d416d8
diff --git a/style/matching.rs b/style/matching.rs index 0e1f94c93..f8fbfd493 100644 --- a/style/matching.rs +++ b/style/matching.rs @@ -26,6 +26,7 @@ use selector_parser::{PseudoElement, RestyleDamage, SelectorImpl}; use selectors::bloom::BloomFilter; use selectors::matching::{ElementSelectorFlags, StyleRelations}; ...
3
139
138
820a62834578bef0f3f710b2482ca2f6943a9b46
Cameron McCormack
2017-05-11T13:33:47
servo: Merge #16806 - style: Fix IN_LOADING_STATE value (from heycam:state); r=bholley ;_; Source-Repo: https://github.com/servo/servo Source-Revision: 973bf7af406eafc0f2056effaa0b50036ccad6b3
diff --git a/style/element_state.rs b/style/element_state.rs index 530de486c..1c9458055 100644 --- a/style/element_state.rs +++ b/style/element_state.rs @@ -58,7 +58,7 @@ bitflags! { /// Non-standard: https://developer.mozilla.org/en-US/docs/Web/CSS/:-moz-suppressed const IN_SUPPRESSED_STATE = 1 << 16...
1
1
1
10e4adf41f96e76ac761fe71c62a1322e1034829
Michael Brennan
2017-05-11T12:30:30
servo: Merge #16805 - Make no_viewport_percentage! use an absolute path for HasViewportPerc… (from brisad:master); r=Wafflespeanut …entage <!-- 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 repla...
diff --git a/style/properties/longhand/color.mako.rs b/style/properties/longhand/color.mako.rs index 4fae6d6e3..0a5dd2f8d 100644 --- a/style/properties/longhand/color.mako.rs +++ b/style/properties/longhand/color.mako.rs @@ -14,7 +14,6 @@ use cssparser::RGBA; use std::fmt; use style_traits::ToCss; - u...
7
1
7
dfe15240f3d20ea3ef26ee8614751505a55fe28b
Fernando Jiménez Moreno
2017-05-11T11:27:42
servo: Merge #16797 - Stylo: Bug 1361994 - Implement access to CSSMozDocumentRule (from ferjm:bug1361994.mozdocument.cssom); r=xidorn - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors Bugzilla bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1361994 Source-Repo: ...
diff --git a/style/gecko/arc_types.rs b/style/gecko/arc_types.rs index 6e2e7d215..32294ad1c 100644 --- a/style/gecko/arc_types.rs +++ b/style/gecko/arc_types.rs @@ -9,7 +9,7 @@ #![allow(non_snake_case, missing_docs)] use gecko_bindings::bindings::{RawServoMediaList, RawServoMediaRule, RawServoNamespaceRule, RawServ...
2
38
2
971d035f81b4a1a777ac401702bea21e3ba06beb
Pyfisch
2017-05-11T07:11:56
servo: Merge #16799 - Remove unused opts (from pyfisch:unused-opts); 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/config/opts.rs b/config/opts.rs index 95917edb0..9130fb4cb 100644 --- a/config/opts.rs +++ b/config/opts.rs @@ -85,16 +85,9 @@ pub struct Opts { /// (`--show-debug-fragment-borders`). pub show_debug_fragment_borders: bool, - /// True if we should paint tiles with overlays based on which thre...
1
2
34
535db77aaa8c003e918deb4802b46c193f9b3109
Manish Goregaokar
2017-05-11T00:05:21
servo: Merge #16800 - Allow border radii to be set via preshints (from Manishearth:border-radius); r=emilio Fixes rendering of `<hr>` Source-Repo: https://github.com/servo/servo Source-Revision: 6de4c93aafd3ff735a431926800b75b2f7792d41
diff --git a/style/values/generics/mod.rs b/style/values/generics/mod.rs index c0a3823f3..43cf722fb 100644 --- a/style/values/generics/mod.rs +++ b/style/values/generics/mod.rs @@ -26,6 +26,12 @@ impl<L> HasViewportPercentage for BorderRadiusSize<L> { fn has_viewport_percentage(&self) -> bool { false } } +impl<...
1
6
0
3486253f85d8303406761d9ce8d92397fa181087
Emilio Cobos Álvarez
2017-05-10T22:24:57
servo: Merge #16794 - style: Adjust text-align properly for -moz- values in tables (from emilio:table-text-fixup); r=Manishearth Fixes bug 1363576. Source-Repo: https://github.com/servo/servo Source-Revision: 15f3db5abf5adbf4c85b66b877b8ffa3aaeea666
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 0df847cfd..4271b424b 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -3383,7 +3383,6 @@ fn static_assert() { <% text_align_keyword = Keyword("text-align", "sta...
2
24
1
87c0d3190c76b80ca561aefa2d7166f257654826
Boris Zbarsky
2017-05-10T21:22:06
servo: Merge #16798 - Allow stylo to do lazier stylist rebuilds (from bzbarsky:stylist-lazier-updates); r=emilio --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [ ] `./mach build -d` does not report any errors - [...
diff --git a/style/gecko/data.rs b/style/gecko/data.rs index 2e1e17a2e..64252c79a 100644 --- a/style/gecko/data.rs +++ b/style/gecko/data.rs @@ -108,18 +108,26 @@ impl PerDocumentStyleDataImpl { let author_style_disabled = self.stylesheets.author_style_disabled(); let mut stylesheets = Vec::<Arc<Style...
3
96
31
0645264045385ac4ad4b6b8bcbc23b1c59e42596
Xidorn Quan
2017-05-10T05:26:04
servo: Merge #16791 - Fix serialization of counters function (from upsuper:counters-fix); r=heycam This would fix several failures in Gecko's test. Source-Repo: https://github.com/servo/servo Source-Revision: bd3ebf219ec6fba46cea78519e910fe578b73173
diff --git a/style/properties/longhand/counters.mako.rs b/style/properties/longhand/counters.mako.rs index d5e68d729..e9e23d54d 100644 --- a/style/properties/longhand/counters.mako.rs +++ b/style/properties/longhand/counters.mako.rs @@ -72,7 +72,7 @@ dest.write_str(")") } ...
1
1
1
0b9cd0c31462b307d3189c97fd4a2a388c954fb4
cku
2017-05-10T04:00:51
servo: Merge #16789 - stylo: Export RefPtr<ImageValue> to stylo (from CJKu:bug-1310885-part-2); r=heycam <!-- Please describe your changes on the following line: --> This is the second patch in bug 1310885 "Bug 1310885 - Part 2. (stylo) Export RefPtr<ImageValue> from gecko to stylo." Bugzilla link: https://bugzilla.m...
diff --git a/style/build_gecko.rs b/style/build_gecko.rs index eacee6b36..2db39701c 100644 --- a/style/build_gecko.rs +++ b/style/build_gecko.rs @@ -780,11 +780,6 @@ mod bindings { "RawGeckoServoStyleRuleList", ]; for &ty in structs_types.iter() { - // XXX cku: will be removed ...
2
4
5
bed7297a07bb0bd1c7e6b6a84be8048c5e618fb6
Nathan Froyd
2017-05-10T00:12:40
servo: Merge #16786 - register stylo threads with the gecko profiler (from froydnj:gecko-profiler-bindings); r=upsuper Now that we require rayon 0.7, we can register start and stop handlers that take care of dealing with the Gecko profiler for rayon threads in the style thread pool. Manually verified that adding "Sty...
diff --git a/style/gecko/global_style_data.rs b/style/gecko/global_style_data.rs index 17a317345..b1f62b0ea 100644 --- a/style/gecko/global_style_data.rs +++ b/style/gecko/global_style_data.rs @@ -5,11 +5,13 @@ //! Global style data use context::StyleSystemOptions; +use gecko_bindings::bindings::{Gecko_RegisterProf...
1
26
2
aa90cdaa4ab1b68df95c24c81ec8d6a69c526ccb
Jeremy Chen
2017-05-09T21:10:49
servo: Merge #16782 - Fix the serialization of image-orientation property (from chenpighead:stylo-serialization-of-image-orientation); r=nox Gecko bug: [Bug 1363295](https://bugzilla.mozilla.org/show_bug.cgi?id=1363295) Source-Repo: https://github.com/servo/servo Source-Revision: a05427fcd04054c59aa4f011c195879f283ac...
diff --git a/style/properties/longhand/inherited_box.mako.rs b/style/properties/longhand/inherited_box.mako.rs index e80cb0745..7c7cd67e8 100644 --- a/style/properties/longhand/inherited_box.mako.rs +++ b/style/properties/longhand/inherited_box.mako.rs @@ -87,13 +87,13 @@ ${helpers.single_keyword("image-rendering", ...
1
2
2
ea7a2cee5cd70190732bc9f3c10732ca988496e6
Matt Brubeck
2017-05-09T18:21:29
servo: Merge #16784 - Bug 1349651 - stylo: Implement HasAuthorSpecifiedRules (from mbrubeck:has_author); r=bholley https://bugzilla.mozilla.org/show_bug.cgi?id=1349651 Source-Repo: https://github.com/servo/servo Source-Revision: 66cfea6728135d18be253c6f97f4a65ef561ba55
diff --git a/style/build_gecko.rs b/style/build_gecko.rs index 3b80bd338..eacee6b36 100644 --- a/style/build_gecko.rs +++ b/style/build_gecko.rs @@ -326,6 +326,7 @@ mod bindings { .constified_enum("UpdateAnimationsTasks") .parse_callbacks(Box::new(Callbacks)); let whitelist_vars = [ +...
7
307
27
05c2147c0485ad58650de33740435e0ce395ab13
Nazım Can Altınova
2017-05-09T12:34:42
servo: Merge #16780 - Add comments to shorthand alias logic that explains the interesting bahavior (from canaltinova:shorthand-aliases); 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...
diff --git a/style/properties/declaration_block.rs b/style/properties/declaration_block.rs index 7b53a4962..613b63279 100644 --- a/style/properties/declaration_block.rs +++ b/style/properties/declaration_block.rs @@ -482,7 +482,7 @@ impl ToCss for PropertyDeclarationBlock { // Substeps 7 and 8 ...
3
13
6
2f1dfaee7b7823af4d3c17703cbfcf9a441da707
Fernando Jiménez Moreno
2017-05-09T10:54:07
servo: Merge #16768 - Stylo: Bug 1355408 - add support for @-moz-document (from ferjm:bug1355408.mozdocument); r=xidorn - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors Link to the gecko bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1355408. Source-Repo: http...
diff --git a/script/dom/cssrule.rs b/script/dom/cssrule.rs index 6bfe057d6..32e6ad054 100644 --- a/script/dom/cssrule.rs +++ b/script/dom/cssrule.rs @@ -85,6 +85,7 @@ impl CSSRule { StyleCssRule::Viewport(s) => Root::upcast(CSSViewportRule::new(window, parent_stylesheet, s)), StyleCssRule::Sup...
9
326
19
33df5f4b4c86d6c208cbf1194fe051e12bc09e6e
Nathan Froyd
2017-05-09T02:36:48
servo: Merge #16303 - bump required rayon version to 0.7 (from froydnj:rayon-version-bump); r=jdm ...and bring jpeg-decoder along for the ride. Minor tweaks were necessary because of rayon API changes. - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors Source-Repo...
diff --git a/layout/Cargo.toml b/layout/Cargo.toml index dee003a53..5c48dde9f 100644 --- a/layout/Cargo.toml +++ b/layout/Cargo.toml @@ -30,7 +30,7 @@ ordered-float = "0.4" parking_lot = "0.3.3" profile_traits = {path = "../profile_traits"} range = {path = "../range"} -rayon = "0.6" +rayon = "0.7" script_layout_int...
6
6
6
1b8b607805e4c6a9ea87ce8540d5909909cd5e90
Nazım Can Altınova
2017-05-08T22:34:54
servo: Merge #16607 - Fix variable serialization bug on shorthand alias properties (from canaltinova:moz-transform-var); r=SimonSapin <!-- Please describe your changes on the following line: --> -moz-transform were having a problem with variable serialization. It wasn't printing transform's value and transform wasn't ...
diff --git a/style/properties/properties.mako.rs b/style/properties/properties.mako.rs index e60e70127..7a57acb97 100644 --- a/style/properties/properties.mako.rs +++ b/style/properties/properties.mako.rs @@ -1262,8 +1262,11 @@ impl ToCss for PropertyDeclaration { PropertyDeclaration::CSSWideKeyword(_, key...
1
11
3
b7266ac830cbb79f94ddbc4e50c29f81d78f536d
Simon Sapin
2017-05-08T21:06:56
servo: Merge #16756 - Upgrade to rustc 1.19.0-nightly (ced823e26 2017-05-07) (from servo:rustup); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 19706085a7206144423a878f1617b32d56d406de
diff --git a/canvas_traits/Cargo.toml b/canvas_traits/Cargo.toml index 512e3366e..c8d2690f8 100644 --- a/canvas_traits/Cargo.toml +++ b/canvas_traits/Cargo.toml @@ -15,6 +15,6 @@ euclid = "0.11" heapsize = "0.3.0" heapsize_derive = "0.1" ipc-channel = "0.7" -serde = {version = "0.9", features = ["unstable"]} +serde ...
8
27
27
8dff2d4239e0bbf51961851a118d1b85f6297648
Ksbugbee
2017-05-08T18:42:32
servo: Merge #16761 - Use hash2 instead of deprecated hash (from Ksbugbee:master); 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: --> - [x] `./mach bu...
diff --git a/net/subresource_integrity.rs b/net/subresource_integrity.rs index 68cc6b7c9..ae6cfe9c1 100644 --- a/net/subresource_integrity.rs +++ b/net/subresource_integrity.rs @@ -4,7 +4,7 @@ use base64; use net_traits::response::{Response, ResponseBody, ResponseType}; -use openssl::hash::{MessageDigest, hash}; +u...
1
2
2
8d811ffadc9d2f780656351be42b9c4e187ce03b
Nick Fitzgerald
2017-05-08T17:19:59
servo: Merge #16392 - Update the style crate's bindgen dependency to 0.24.0 (from fitzgen:update-bindgen-dependency); r=emilio <!-- Please describe your changes on the following line: --> Update style's dependency on bindgen from 0.22 to 0.23 This introduces a huge mess of transitive dependency versioning issues wit...
diff --git a/style/Cargo.toml b/style/Cargo.toml index dbd5e7674..1bb662736 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -65,6 +65,6 @@ kernel32-sys = "0.2" [build-dependencies] lazy_static = "0.2" log = "0.3" -bindgen = { version = "0.22", optional = true } +bindgen = { version = "0.24", optional = true ...
3
10
10
0cd7c339d62f3d22cfb0de356479b42287e972e1
Emilio Cobos Álvarez
2017-05-08T11:24:42
servo: Merge #16766 - layout: Fix radius percentage resolution (from emilio:border-radius); r=glennw Fixes #16764 Source-Repo: https://github.com/servo/servo Source-Revision: 34d33574dbd8696ff788ae8b9af65f8e88f404a9
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index 785025cc3..b48bb607a 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -564,20 +564,20 @@ fn build_border_radius(abs_bounds: &Rect<Au>, handle_overlapping_radii(&abs_bounds.size, &BorderRadii { ...
2
23
11
66abd37cffc1c28c2f6cdcc47629eaf2ac786c34
cku
2017-05-08T08:28:48
servo: Merge #16765 - stylo: Export mozilla::css::ImageValue to stylo (from CJKu:bug-1310885-part-1); r=heycam <!-- Please describe your changes on the following line: --> This is "Bug 1310885 - Part 0. (gecko) Export mozilla::css::ImageValue to stylo." We need to land it separately to prevent build break. Link to th...
diff --git a/style/build_gecko.rs b/style/build_gecko.rs index 85d80fae1..33c5b7a53 100644 --- a/style/build_gecko.rs +++ b/style/build_gecko.rs @@ -624,6 +624,7 @@ mod bindings { .whitelisted_function("Gecko_.*"); let structs_types = [ "mozilla::css::GridTemplateAreasValue", + ...
1
6
0
d585d8508cf192b938d5d2987fc5cc36f233c51d
Glenn Watson
2017-05-08T01:27:46
servo: Merge #16759 - Enable subpixel anti-aliasing on text by default (from glennw:subpixel); r=cbrewster No doubt there are still some bugs and missing features related to subpixel text anti-aliasing. But enabling by default should allow us to detect these and fix them. If we run into any major issues, this is a s...
diff --git a/config/opts.rs b/config/opts.rs index 287aa7221..95917edb0 100644 --- a/config/opts.rs +++ b/config/opts.rs @@ -100,7 +100,7 @@ pub struct Opts { /// font for layout tests. pub enable_text_antialiasing: bool, - /// If set with --enable-subpixel, use subpixel antialiasing for glyphs. In the f...
1
5
5
ff69619b04be89bc2c712a555db5d6adfdb204e0
zombiefungus
2017-05-07T22:09:47
servo: Merge #16757 - Remove obsolete paint threads option #16716 (from zombiefungus:issue16716); r=KiChjang <!-- Please describe your changes on the following line: --> Remove paint_threads from `ports/cef/core.rs` and `components/config/opts.rs` --- <!-- Thank you for contributing to Servo! Please replace each `[ ]...
diff --git a/config/opts.rs b/config/opts.rs index 836e23303..287aa7221 100644 --- a/config/opts.rs +++ b/config/opts.rs @@ -32,11 +32,6 @@ pub struct Opts { /// The initial URL to load. pub url: Option<ServoUrl>, - /// How many threads to use for CPU painting (`-t`). - /// - /// Note that painting...
1
0
14
ea8fe5f084bfd0d815ae243bc5d1de0e40d8576c
Pyfisch
2017-05-07T12:56:51
servo: Merge #16666 - Improvements to gradients (from pyfisch:gradients); r=emilio This is a collection of commits improving the rendering of linear and radial gradients by making them conform more closely to the spec. All commits are are independent and should work without the others. These commits address the foll...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index f2aea7a97..af5590bda 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -975,12 +975,23 @@ pub struct GradientBorder { pub outset: SideOffsets2D<f32>, } +/// A border that is made of radial gradient +#[derive(Clone, HeapSize...
3
162
61
1471c84675468844040304486b7c3a0eb7b776bb
Nazım Can Altınova
2017-05-06T21:10:22
servo: Merge #16754 - Fix parsing behavior of text-shadow property (from canaltinova:text-shadow); r=emilio Blur radius should reject negative values. There was already `Shadow` struct for properties like this. `filter: drop-shadow` also has the same syntax with that property. I thought sharing the same code would be ...
diff --git a/style/properties/longhand/inherited_text.mako.rs b/style/properties/longhand/inherited_text.mako.rs index c6757a2df..644c9979a 100644 --- a/style/properties/longhand/inherited_text.mako.rs +++ b/style/properties/longhand/inherited_text.mako.rs @@ -720,12 +720,13 @@ ${helpers.single_keyword("text-align-last...
1
40
82
7b7aea8fa73670bf71fe37ea0f342df19d880a5f
Xidorn Quan
2017-05-06T04:15:08
servo: Merge #16750 - Use nsIAtom for counter style name (from upsuper:bug1362302); r=Manishearth This is the Servo side change of [bug 1362302](https://bugzilla.mozilla.org/show_bug.cgi?id=1362302) which has been reviewed on Bugzilla. Source-Repo: https://github.com/servo/servo Source-Revision: 806f369a79409304024ba...
diff --git a/style/gecko_bindings/bindings.rs b/style/gecko_bindings/bindings.rs index 5b0300759..6aab0a41d 100644 --- a/style/gecko_bindings/bindings.rs +++ b/style/gecko_bindings/bindings.rs @@ -1139,6 +1139,10 @@ extern "C" { atom: *mut nsIAtom, ...
4
19
2
f2a31557520aefb4f02f2fd95e04d3502f45a45d
Xidorn Quan
2017-05-06T03:22:33
servo: Merge #16751 - Update binding files to autoland tip (from upsuper:update-bindings); r=jdm Sync in-tree binding files with that generated from Gecko CI. Source-Repo: https://github.com/servo/servo Source-Revision: deff38597abae4687c9043c3f04e4d7c54715934
diff --git a/style/gecko_bindings/bindings.rs b/style/gecko_bindings/bindings.rs index 1553536b7..5b0300759 100644 --- a/style/gecko_bindings/bindings.rs +++ b/style/gecko_bindings/bindings.rs @@ -1594,19 +1594,16 @@ extern "C" { extern "C" { pub fn Servo_StyleSet_AppendStyleSheet(set: RawServoStyleSetBorrowed, ...
3
50
21
f20a6a44db3dfab9575b6a9f33e349ed95bc710f
Anthony Ramine
2017-05-05T22:25:59
servo: Merge #16744 - Properly parse 'pointer-events: all' (from nox:pointer-events); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: f50b8fd54556ddb1baf6707dcec4cb271d0cc2e6
diff --git a/style/properties/longhand/pointing.mako.rs b/style/properties/longhand/pointing.mako.rs index 7a4af51c8..b15d5cfce 100644 --- a/style/properties/longhand/pointing.mako.rs +++ b/style/properties/longhand/pointing.mako.rs @@ -148,7 +148,7 @@ // is nonstandard, slated for CSS4-UI. // TODO(pcwalton): SVG-onl...
1
1
1
6f4c12372cbcbae352d04a0376b312b7cabe6fae
Bobby Holley
2017-05-05T21:29:00
servo: Merge #16745 - Use selector maps for revalidation and dependency selectors (from bholley:more_selector_maps); r=emilio https://bugzilla.mozilla.org/show_bug.cgi?id=1360088 Source-Repo: https://github.com/servo/servo Source-Revision: 741958b2fbe0cdf0a89e4dc88c3b1a51e18693d3
diff --git a/style/context.rs b/style/context.rs index 1cdd8c006..029f8901a 100644 --- a/style/context.rs +++ b/style/context.rs @@ -94,11 +94,7 @@ impl Default for StyleSystemOptions { #[cfg(feature = "gecko")] fn default() -> Self { StyleSystemOptions { - disable_style_sharing_cache: - ...
3
270
166
39cc98110261570f94b4c24b63e6c711f43b48b9
Anthony Ramine
2017-05-05T20:45:53
servo: Merge #16742 - Properly use big endianness to parse font feature tags (from nox:font-feature-settings); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: ce874d72ecaa531f1da7f619b2bced72100612d3
diff --git a/style/properties/longhand/font.mako.rs b/style/properties/longhand/font.mako.rs index 230a8839f..6f34a264c 100644 --- a/style/properties/longhand/font.mako.rs +++ b/style/properties/longhand/font.mako.rs @@ -1815,10 +1815,10 @@ ${helpers.single_keyword_system("font-variant-position", impl ToCss fo...
1
4
4
c81dc6d32ff09a4a01d128695cd6cc0c530eebce
Manish Goregaokar
2017-05-05T18:39:19
servo: Merge #16741 - Handle fallback to default variable font in case of nonexistant generic (from Manishearth:stylo-fixup-generic); r=heycam Source-Repo: https://github.com/servo/servo Source-Revision: 943e7595d52d42a34f73e8fef98cd2dc4247714b
diff --git a/style/gecko_bindings/bindings.rs b/style/gecko_bindings/bindings.rs index 026881bf6..1553536b7 100644 --- a/style/gecko_bindings/bindings.rs +++ b/style/gecko_bindings/bindings.rs @@ -1173,6 +1173,11 @@ extern "C" { pub fn Gecko_nsStyleFont_CopyLangFrom(aFont: *mut nsStyleFont, ...
3
19
0
564872d5ae00c145ba75189a3e4eb9af03bbda61
Paul Rouget
2017-05-05T17:05:22
servo: Merge #16738 - derive(Debug) for LoadData (from paulrouget:LoadDataDebug); r=Wafflespeanut Source-Repo: https://github.com/servo/servo Source-Revision: 4e73fceaf7eb62542b72d211cb84ab555cef7ba9
diff --git a/script_traits/lib.rs b/script_traits/lib.rs index ed0e09468..954c1386f 100644 --- a/script_traits/lib.rs +++ b/script_traits/lib.rs @@ -130,7 +130,7 @@ pub enum LayoutControlMsg { /// can be passed to `LoadUrl` to load a page with GET/POST /// parameters or headers -#[derive(Clone, Deserialize, Seriali...
1
1
1
6fc941e08efeea2de8a393d1f2f3ed66b3cb330e
Anthony Ramine
2017-05-05T15:14:29
servo: Merge #16739 - Fix serialisation of 'image-orientation: <angle> flip' (from nox:image-orientation); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 09c8978c5bdd77bdbb16469e502fa53659f56046
diff --git a/style/properties/longhand/inherited_box.mako.rs b/style/properties/longhand/inherited_box.mako.rs index 01ee640f8..e80cb0745 100644 --- a/style/properties/longhand/inherited_box.mako.rs +++ b/style/properties/longhand/inherited_box.mako.rs @@ -168,7 +168,7 @@ ${helpers.single_keyword("image-rendering", ...
1
1
1
00a0b711d695577cf18b0fbe1d291daad8b2eaef
Martin Robinson
2017-05-05T07:21:12
servo: Merge #16735 - Rename PushScrollRoot and remove PopScrollRoot (from mrobinson:push-pop-scroll-root); r=glennw PopScrollRoot was unused and PushScrollRoot no longer pushes a scroll root, but defines a new one. <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to S...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 77a64553c..f2aea7a97 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -86,7 +86,7 @@ impl DisplayList { scroll_offsets, result); ...
3
14
22
79dd61368224f0c7d558479caa53d7884270bb9c
Manish Goregaokar
2017-05-05T06:38:38
servo: Merge #16730 - Make font-size: larger/smaller work with the base size stuff (from Manishearth:stylo-font-size); r=dbaron Source-Repo: https://github.com/servo/servo Source-Revision: 441d3cf3e5b4dd909fef4ef4a8c9a5422d5330d3
diff --git a/style/properties/longhand/font.mako.rs b/style/properties/longhand/font.mako.rs index a9da305f6..230a8839f 100644 --- a/style/properties/longhand/font.mako.rs +++ b/style/properties/longhand/font.mako.rs @@ -741,6 +741,10 @@ ${helpers.single_keyword_system("font-variant-caps", } % endif + ...
1
10
2
2e470cbe7df4685156e46cb7a6704df2677b9eaa
KuoE0
2017-05-05T03:27:44
servo: Merge #16733 - Make stylo support moz-prefixed cursor values (from KuoE0:bug-1356072); r=xidorn <!-- Please describe your changes on the following line: --> This issue is reported at https://bugzilla.mozilla.org/show_bug.cgi?id=1356072. We need to support the following moz-prefix properties in stylo: - -moz-g...
diff --git a/style/Cargo.toml b/style/Cargo.toml index a7e262ec3..dbd5e7674 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -13,7 +13,7 @@ path = "lib.rs" doctest = false [features] -gecko = ["nsstring_vendor", "rayon/unstable", "num_cpus"] +gecko = ["nsstring_vendor", "rayon/unstable", "num_cpus", "style_t...
4
65
40
f76194dc35fdb22e2e1200ba73cbddd4701e74e6
Anthony Ramine
2017-05-05T00:58:22
servo: Merge #16727 - Implement grid-template-areas (fixes #16079) (from nox:grid-template-areas); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 18c8c290daea3419b02799e206c2cb50845cd0af
diff --git a/style/build_gecko.rs b/style/build_gecko.rs index 7b223e4ea..85d80fae1 100644 --- a/style/build_gecko.rs +++ b/style/build_gecko.rs @@ -623,6 +623,7 @@ mod bindings { .whitelisted_function("Servo_.*") .whitelisted_function("Gecko_.*"); let structs_types = [ + "...
5
226
1
7b7be04475b12b05699aa9dda2f9296a6a184057
Anthony Ramine
2017-05-04T12:42:43
servo: Merge #16725 - Implement -moz-osx-font-smoothing (from nox:moz-osx-font-smoothing); r=Wafflespeanut Source-Repo: https://github.com/servo/servo Source-Revision: 36f26148e6f3decfac7858455c3170d7bf7d8b3f
diff --git a/style/properties/longhand/font.mako.rs b/style/properties/longhand/font.mako.rs index 761dd95e0..a9da305f6 100644 --- a/style/properties/longhand/font.mako.rs +++ b/style/properties/longhand/font.mako.rs @@ -2429,3 +2429,12 @@ ${helpers.single_keyword("-moz-math-variant", } } % endif + +${he...
1
9
0
0c929c4d970480a0474888b7e01bc8d4e60ccd31
Alice Maz
2017-05-04T11:08:37
servo: Merge #16706 - Bump base64 to 0.4.2 (from alicemaz:master); r=nox <!-- Please describe your changes on the following line: --> we have just released a security patch for base64 (preventing integer overflow when sizing a buffer for encoded output). this bumps the version in the three Cargo.toml files that pull i...
diff --git a/net/Cargo.toml b/net/Cargo.toml index 47f412f28..e241d55f9 100644 --- a/net/Cargo.toml +++ b/net/Cargo.toml @@ -10,7 +10,7 @@ name = "net" path = "lib.rs" [dependencies] -base64 = "0.4.1" +base64 = "0.4.2" brotli = "1.0.6" cookie = "0.6" devtools_traits = {path = "../devtools_traits"} diff --git a/s...
3
3
3
517c26936f571029f5fb66ae1f862c8bf4ca89c5
Cameron McCormack
2017-05-04T08:46:28
servo: Merge #16724 - style: Re-enable font metrics querying for ch and ex units in Stylo traversal (from heycam:reenable-metrics); r=bholley From https://bugzilla.mozilla.org/show_bug.cgi?id=1356103. Source-Repo: https://github.com/servo/servo Source-Revision: ca277aabe6c32f025da585b909b308336181d6e2
diff --git a/style/gecko/wrapper.rs b/style/gecko/wrapper.rs index f71ef0a6c..a8ed92192 100644 --- a/style/gecko/wrapper.rs +++ b/style/gecko/wrapper.rs @@ -22,7 +22,7 @@ use dom::{self, AnimationRules, DescendantsBit, LayoutIterator, NodeInfo, TEleme use dom::{OpaqueNode, PresentationalHintsSynthetizer}; use element...
1
17
20
36c4c1ed7f98e4bdb62a9dc248d01ddcf0fb9677
Jeremy Chen
2017-05-04T06:32:46
servo: Merge #16711 - stylo: Bug 1360144 - make stroke-{*} animatable for stylo (from chenpighead:stylo-make-stroke-properties-animatable); r=BorisChiou This part includes making stroke-linecap, stroke-linejoin, stroke-miterlimit, stroke-opacity, and stroke-dasharray animatable. For properties that already implemente...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index e99dc3034..c453bfae6 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -3808,6 +3808,26 @@ clip-path bindings::Gecko_nsStyleSVG_CopyDashArray(&mut self.gecko, &other.gecko); } ...
3
28
5
6dbba91b0fe625480bedb625b18e4651e0f04d5b
cku
2017-05-04T02:49:33
servo: Merge #16707 - Stylo: Implement {specified|computed}::LayerImage (from CJKu:bug-1359787); r=manish <!-- Please describe your changes on the following line: --> Bug 1359787 - Stylo: Unite the implementation of background-image/ mask-image and border-image-source in {background|svg|border}.mako.rs --- <!-- Thank...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 970b6a929..e99dc3034 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -921,13 +921,13 @@ fn static_assert() { need_clone=True) %> % endfor - pub fn set_border_i...
9
96
263
47976d526ebad34e224e855960ed9c4281876a06
Imanol Fernandez
2017-05-04T02:07:32
servo: Merge #16500 - Fix unsafe Heap constructor usage in DOM objects (from MortimerGoro:unsafe_heap); r=asajeffrey <!-- Please describe your changes on the following line: --> See https://github.com/servo/rust-mozjs/issues/343#issuecomment-294513870 Heap::new() constructor is unsafe. Heap should be set after refle...
diff --git a/script/dom/extendablemessageevent.rs b/script/dom/extendablemessageevent.rs index 49c461083..6c72655ec 100644 --- a/script/dom/extendablemessageevent.rs +++ b/script/dom/extendablemessageevent.rs @@ -35,7 +35,7 @@ impl ExtendableMessageEvent { -> Root<ExtendableMessageEvent> { let ...
7
80
82
e902e8aaa59c05ef213b9aa86b50222bdec83cb6
Juan C. Gonzalez-Zurita
2017-05-04T00:41:59
servo: Merge #16568 - font-feature-settings gecko glue code (from WholeGrainGoats:master); r=Manishearth <!-- Please describe your changes on the following line: --> FeatureTagValue value property changed to use u32. ToCss for FeatureTagValue changed to allow conversion from u32 to string. Parse for the same struct up...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index e6aab1025..970b6a929 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -1296,12 +1296,47 @@ fn static_assert() { skip_font_longhands = """font-family font-size font-size-adjust font-weight ...
2
61
11
146d6f9dd8ff6220a40e978af9471d85b2c5c49c
Emilio Cobos Álvarez
2017-05-03T23:33:03
servo: Merge #16713 - style: Allow parsing nested calc() expressions (from emilio:calc-in-calc); r=manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 53b391daf84b3a611e5b356ed97fc22f6cbe92b7
diff --git a/style/values/specified/length.rs b/style/values/specified/length.rs index 7e41fa805..e66022d96 100644 --- a/style/values/specified/length.rs +++ b/style/values/specified/length.rs @@ -843,6 +843,10 @@ impl CalcLengthOrPercentage { input.parse_nested_block(|i| CalcLengthOrPercentage::parse_...
1
4
0
0fb00d3a35b4b62d90137e840d0d236d21454cb6
Hiroyuki Ikezoe
2017-05-03T21:42:29
servo: Merge #16715 - Support all properties for -moz-appearance (from hiikezoe:moz-appearance); r=bholley Now all properties in nsCSSProps::kMozAppearanceKTable are in keyword list of -moz-appearance. This is a PR of https://bugzilla.mozilla.org/show_bug.cgi?id=1361632 - [X] `./mach build -d` does not report any er...
diff --git a/style/properties/longhand/box.mako.rs b/style/properties/longhand/box.mako.rs index b39c65bae..ca8549dc1 100644 --- a/style/properties/longhand/box.mako.rs +++ b/style/properties/longhand/box.mako.rs @@ -2404,20 +2404,24 @@ ${helpers.single_keyword("appearance", ${helpers.single_keyword("-moz-appearance",...
1
18
14
c3cb18198f4169f2fd40036b4b557f7e6f43c711
Alexis Beingessner
2017-05-03T17:44:37
servo: Merge #16652 - Update to webrender's new bincode IPC (from Gankro:bincode-ipc-5); r=jdm **DO NO MERGE YET** This is the required update to Servo for my changes to webrender in https://github.com/servo/webrender/pull/1181 Source-Repo: https://github.com/servo/servo Source-Revision: 74c36cb35ddac3bf7db9215d85b9...
diff --git a/layout/webrender_helpers.rs b/layout/webrender_helpers.rs index 70479d438..aceebd8a1 100644 --- a/layout/webrender_helpers.rs +++ b/layout/webrender_helpers.rs @@ -15,7 +15,8 @@ use msg::constellation_msg::PipelineId; use style::computed_values::{image_rendering, mix_blend_mode}; use style::computed_valu...
1
16
15
15cc95785b3a2dff9af4d261e217c0932ab18d0e
Josh Matthews
2017-05-03T14:47:44
servo: Merge #16655 - Fix broken unit tests (from servo:jdm-patch-1); r=emilio These are tests that only get run on TravisCI, apparently, so they were broken by https://github.com/servo/servo/commit/be0139ff3ccaeff621788043b721660ab4bdf36b and https://github.com/servo/servo/commit/32c624e5852a91fbcd2fcc495cacd00a63452...
diff --git a/selectors/Cargo.toml b/selectors/Cargo.toml index 9e5e9df6f..22ee4e526 100644 --- a/selectors/Cargo.toml +++ b/selectors/Cargo.toml @@ -14,6 +14,8 @@ license = "MPL-2.0" [lib] name = "selectors" path = "lib.rs" +# https://github.com/servo/servo/issues/16710 +doctest = false [dependencies] bitflags =...
2
15
26
acc0e1e07e55f3c0f5cfabd7b7275ebfc72eb482
Boris Chiou
2017-05-03T04:46:15
servo: Merge #16704 - stylo: Bug 1346052 - Add Servo_AnimationValue_Compute (from BorisChiou:stylo/transition/compute_from_string); r=birtles This is an interdependent patch of Bug 1346052. We need this FFI to compute the AnimationValue from a property id and a string, so nsDOMWindowUtils::ComputeAnimationDistance() c...
diff --git a/style/gecko_bindings/bindings.rs b/style/gecko_bindings/bindings.rs index 1b3560dc8..4099761c6 100644 --- a/style/gecko_bindings/bindings.rs +++ b/style/gecko_bindings/bindings.rs @@ -1074,10 +1074,6 @@ extern "C" { pub fn Gecko_CSSValue_GetAbsoluteLength(css_value: nsCSSValueBorrowed) -> nscoor...
1
14
4
e9c16c497b94956e28525ffcb700015e88c8ea91
Manish Goregaokar
2017-05-03T03:33:15
servo: Merge #16695 - Do not inherit kw font size if it was not used due to MathML (from Manishearth:kw-inherit); r=heycam See https://bugzilla.mozilla.org/show_bug.cgi?id=1361126#c9 Source-Repo: https://github.com/servo/servo Source-Revision: fb6015a75b68b2f894ee0b057a2f17a3ea78494e
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index b428ec3e1..e6aab1025 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -1490,8 +1490,10 @@ fn static_assert() { /// This function will also handle scriptminsize and scriptlevel /// so should no...
3
15
5
69d09fb1e6b475d3305450d9290bfbb4299a8526
Brad Werth
2017-05-02T23:15:05
servo: Merge #16698 - Change StyleSet to track stylesheets by unique ID (from bradwerth:cloneRight); r=heycam MozReview-Commit-ID: Ky3P53o4Euw https://bugzilla.mozilla.org/show_bug.cgi?id=1348481 https://reviewboard.mozilla.org/r/128850/ --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]...
diff --git a/style/gecko/data.rs b/style/gecko/data.rs index 7efad2a9f..942aaf4f7 100644 --- a/style/gecko/data.rs +++ b/style/gecko/data.rs @@ -18,7 +18,7 @@ use std::collections::HashMap; use std::sync::Arc; use std::sync::mpsc::{Receiver, Sender, channel}; use stylesheet_set::StylesheetSet; -use stylesheets::{Fon...
3
53
29
b1a0a9227e0345f595fd1791e0eb55c4157ad179
Anthony Ramine
2017-05-02T14:46:59
servo: Merge #16693 - Implement touch-action in stylo (fixes #16372) (from nox:touch-action); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 5e2d38327489df4e4e4c6da9d3f3803a8062b7cc
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 5d09b9472..4643d1769 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -1771,7 +1771,7 @@ fn static_assert() { scroll-snap-points-x scroll-snap-points-y transform ...
2
86
1
9886c5a4e55ffb86617289f5f3dcbd553541d872
Anthony Ramine
2017-05-02T12:38:46
servo: Merge #16692 - Try to parse legacy before overflow for JustifyItems (from nox:justify-items); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 688733a0be26f29a9e4e74bb82685c42625dfb4d
diff --git a/style/values/specified/align.rs b/style/values/specified/align.rs index 221355328..e41ba5b5e 100644 --- a/style/values/specified/align.rs +++ b/style/values/specified/align.rs @@ -332,21 +332,21 @@ impl Parse for JustifyItems { if let Ok(value) = input.try(parse_auto_normal_stretch_baseline) { ...
1
22
32
5b62318c5a494e9ff66357be068046f25eee971c
Cameron McCormack
2017-05-02T09:19:59
servo: Merge #16691 - style: Correctly serialize CSS Custom Property names (from heycam:custom-prop-name); r=xidorn From https://bugzilla.mozilla.org/show_bug.cgi?id=1361303, and reviewed by Xidorn over there. Source-Repo: https://github.com/servo/servo Source-Revision: 997a3e8374092bc4bc90455c7b51b74b30a1e167
diff --git a/style/properties/properties.mako.rs b/style/properties/properties.mako.rs index 00147b898..aba246238 100644 --- a/style/properties/properties.mako.rs +++ b/style/properties/properties.mako.rs @@ -18,7 +18,7 @@ use std::sync::Arc; use app_units::Au; #[cfg(feature = "servo")] use cssparser::{Color as CSS...
1
34
3
036dee031506ebaa893dd1883bdc6c2776402c4a
KuoE0
2017-05-02T07:27:39
servo: Merge #16688 - Make stylo support mozmm unit (from KuoE0:make-stylo-support-mozmm-unit); r=xidorn <!-- Please describe your changes on the following line: --> This issue is reported at https://bugzilla.mozilla.org/show_bug.cgi?id=1356104. Mozmm is defined at https://developer.mozilla.org/zh-TW/docs/Web/CSS/len...
diff --git a/style/gecko_bindings/bindings.rs b/style/gecko_bindings/bindings.rs index 1d5a09099..36075707b 100644 --- a/style/gecko_bindings/bindings.rs +++ b/style/gecko_bindings/bindings.rs @@ -1074,6 +1074,10 @@ extern "C" { pub fn Gecko_CSSValue_GetAbsoluteLength(css_value: nsCSSValueBorrowed) -> nscoor...
3
65
1
10700cb1b77720310a2525c9d869883755f056e2
Ting-Yu Lin
2017-05-02T04:52:36
servo: Merge #16686 - stylo: Parse eSafeAgentSheetFeatures as agent sheet (from aethanyc:bug1321754); r=heycam This was reviewed in https://bugzilla.mozilla.org/show_bug.cgi?id=1321754 Source-Repo: https://github.com/servo/servo Source-Revision: f284a15e4b442b1beff90b88e9ba6952255f394a
diff --git a/style/gecko_bindings/structs_debug.rs b/style/gecko_bindings/structs_debug.rs index 07ef42a67..cdb6a5388 100644 --- a/style/gecko_bindings/structs_debug.rs +++ b/style/gecko_bindings/structs_debug.rs @@ -5293,18 +5293,28 @@ pub mod root { * exposure on the public Web, but are very useful for expressing ...
2
20
0
e5c5f916714a77f4b80faa93de72fac265fd2f8d
Matt Brubeck
2017-05-02T02:48:33
servo: Merge #16681 - Stop using unstable slice_patterns feature (from mbrubeck:slice_patterns); r=emilio cc #5286 --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [ ] There are tests for these changes OR - [x] These changes do not require tests because no f...
diff --git a/net_traits/image/base.rs b/net_traits/image/base.rs index a6bc08ce2..cae3cce8d 100644 --- a/net_traits/image/base.rs +++ b/net_traits/image/base.rs @@ -108,10 +108,7 @@ pub fn detect_image_format(buffer: &[u8]) -> Result<ImageFormat, &str> { } fn is_gif(buffer: &[u8]) -> bool { - match buffer { - ...
5
5
10
4870181764dbbaddab5dd535897ef69433c9107a
Anthony Ramine
2017-05-02T00:57:40
servo: Merge #16683 - Fix serialisation of place-content (from nox:place-content); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 8850a01b81f87b481eb56287b7928c64890ba1a9
diff --git a/style/properties/shorthand/position.mako.rs b/style/properties/shorthand/position.mako.rs index bd43b4f21..017b592ed 100644 --- a/style/properties/shorthand/position.mako.rs +++ b/style/properties/shorthand/position.mako.rs @@ -266,13 +266,12 @@ impl<'a> ToCss for LonghandsToSerialize<'a> { ...
1
4
5
6c2fd926077d00b486878958a8fb69c7791104e3
Emilio Cobos Álvarez
2017-05-01T22:45:43
servo: Merge #16682 - Guard inheriting font-size with what we actually need (from emilio:font-size-inherit); r=bholley See https://bugzilla.mozilla.org/show_bug.cgi?id=1361126 Source-Repo: https://github.com/servo/servo Source-Revision: 4f13bc38291f50a064155f52cce9fa5ebb49d61b
diff --git a/style/properties/properties.mako.rs b/style/properties/properties.mako.rs index be94b96b5..00147b898 100644 --- a/style/properties/properties.mako.rs +++ b/style/properties/properties.mako.rs @@ -2535,13 +2535,16 @@ pub fn apply_declarations<'a, F, I>(device: &Device, ...
1
9
5
daf7d97ada8655b3ab348873b56406ed0491b819
Emilio Cobos Álvarez
2017-05-01T19:20:43
servo: Merge #16670 - style: Account for cousin sharing in the revalidation logic (from emilio:sharing-is-sometimes-hard); r=bholley style: Account for cousin sharing in the revalidation logic. Fixes https://bugzilla.mozilla.org/show_bug.cgi?id=1361013 Source-Repo: https://github.com/servo/servo Source-Revision: e92...
diff --git a/selectors/parser.rs b/selectors/parser.rs index 66867000f..606fd6f47 100644 --- a/selectors/parser.rs +++ b/selectors/parser.rs @@ -169,27 +169,6 @@ impl<Impl: SelectorImpl> SelectorInner<Impl> { } } - /// Creates a clone of this selector with everything to the left of - /// (and incl...
2
39
49
aa1d0e90e149cfa80c66f1f130b849d4337c0bc0
Nazım Can Altınova
2017-05-01T14:45:04
servo: Merge #16674 - Preserve units in computed Angle (from canaltinova:angle-unit); r=emilio <!-- Please describe your changes on the following line: --> It was converting all angles to radians before. But other browsers preserves the angle units. Fixed that behavior. --- <!-- Thank you for contributing to Servo! P...
diff --git a/style/gecko/conversions.rs b/style/gecko/conversions.rs index 9f7420ecb..5b2e72658 100644 --- a/style/gecko/conversions.rs +++ b/style/gecko/conversions.rs @@ -12,11 +12,11 @@ use app_units::Au; use gecko::values::{convert_rgba_to_nscolor, GeckoStyleCoordConvertible}; use gecko_bindings::bindings::{Gecko...
8
120
82
c0e3d27f48b380b0bf20a1eaf4ddd30a33c640e1
Anthony Ramine
2017-05-01T13:14:34
servo: Merge #16672 - Implement -moz-force-broken-image-icon in geckolib (from nox:moz-force-broken-image-icon); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: b7f06d2c20d34bd0ee96d31f070623d6e46b8dda
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index f3d4d229c..aa362da17 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -4041,6 +4041,15 @@ clip-path % endfor </%self:impl_trait> +<%self:impl_trait style_struct_name="UI" skip_longhands="-moz-fo...
2
56
0
9d289ff323f833a17c7bc3cb01cbfba85f70bd7c
Anthony Ramine
2017-05-01T12:00:36
servo: Merge #16673 - Fix AlignFlags::to_css (from nox:align); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 9b72d909f989329201d4593972445689f55d59f1
diff --git a/style/values/specified/align.rs b/style/values/specified/align.rs index cafbe9695..221355328 100644 --- a/style/values/specified/align.rs +++ b/style/values/specified/align.rs @@ -36,11 +36,11 @@ bitflags! { const ALIGN_CENTER = structs::NS_STYLE_ALIGN_CENTER as u8, /// 'left' ...
1
4
4
c81013b619a36f5fffd90f411b656a6f9c1f5ddb
Cameron McCormack
2017-05-01T09:23:28
servo: Merge #16669 - style: Correctly handle Gecko prefixed text-align values in property glue (from heycam:text-align-glue); r=emilio From https://bugzilla.mozilla.org/show_bug.cgi?id=1360991. Source-Repo: https://github.com/servo/servo Source-Revision: ecc818165f4a3367eb5b5174766a2f4c0fc04063
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 273dff613..f3d4d229c 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -3249,13 +3249,12 @@ fn static_assert() { skip_longhands="text-align text-emphasis-style text-shadow line-height ...
1
4
5
0713a6ea833ffdb68ccb83065dfe9e2ca4ea2cba
Robert Longson
2017-05-01T01:26:54
servo: Merge #16665 - Servo changes for bug 1347409 (from longsonr:1347409); r=heycam,emilio bug 1347409 is introducing a fallback type for SVG paint servers so that we can distinguish between url(something) and url(something) none and serialise those cases correctly. When we get a url(something) color we need to set ...
diff --git a/style/gecko_bindings/structs_debug.rs b/style/gecko_bindings/structs_debug.rs index 55af2852e..24bea2dd6 100644 --- a/style/gecko_bindings/structs_debug.rs +++ b/style/gecko_bindings/structs_debug.rs @@ -26200,7 +26200,7 @@ pub mod root { "Alignment of field: " , stringify ! ( nsStyleC...
3
30
2
82dda8fb855173499dadb15a0e9f1d86f40d1773
Emilio Cobos Álvarez
2017-05-01T00:14:43
servo: Merge #16664 - style: Avoid allocating a unique nsStyleSVG and nsStyleBackground per element (from emilio:fix-eternal-todo); r=bholley Should also help with https://bugzilla.mozilla.org/show_bug.cgi?id=1360881, and it's a TODO that has always been there. This is on top of #16663, so only last commit needs revi...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index f0fbe045c..85a1e21bb 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -2774,10 +2774,6 @@ fn static_assert() { % for member in fill_fields.split(): max_len = cmp::max(max_len, self...
2
23
9
159851963caef15067c86c0d5a2eae9c4f5c416c
Emilio Cobos Álvarez
2017-04-30T23:31:41
servo: Merge #16663 - style: Add a StyleBuilder struct to avoid refcount and atomic CAS during the cascade (from emilio:style-builder); r=bholley This should fix most of the complaints that caused https://bugzilla.mozilla.org/show_bug.cgi?id=1360889 to be open, and also fix a bunch of other FIXMEs across the style sys...
diff --git a/style/gecko/media_queries.rs b/style/gecko/media_queries.rs index 8aa3b2da3..a0aeaec2e 100644 --- a/style/gecko/media_queries.rs +++ b/style/gecko/media_queries.rs @@ -16,7 +16,7 @@ use gecko_bindings::structs::{nsMediaFeature_ValueType, nsMediaFeature_RangeType use gecko_bindings::structs::RawGeckoPresCo...
9
270
113
3c600a5de8ee174da15c3d74a2715a100b60f70d
Emilio Cobos Álvarez
2017-04-30T21:33:23
servo: Merge #16661 - style: Use SmallVec more in the style system (from emilio:alloc); r=bholley I expect this to improve the situation significantly in https://bugzilla.mozilla.org/show_bug.cgi?id=1360881 This is worth doing on its own, though. Source-Repo: https://github.com/servo/servo Source-Revision: a75fa0825...
diff --git a/style/Cargo.toml b/style/Cargo.toml index 54f476b0e..3f1aa94f7 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -17,7 +17,7 @@ gecko = ["nsstring_vendor", "rayon/unstable", "num_cpus"] use_bindgen = ["bindgen", "regex"] servo = ["serde/unstable", "serde", "serde_derive", "heapsize", "heapsize_deri...
8
57
49
75899a55984d95664d9e5a02939b6c6b076bbee1
Bobby Holley
2017-04-29T23:08:19
servo: Merge #16659 - Speed up stylist rebuilds (from bholley:faster_stylist_rebuild); r=emilio Reviewed in https://bugzilla.mozilla.org/show_bug.cgi?id=1360767 Source-Repo: https://github.com/servo/servo Source-Revision: caa66a880a89b4a8052959eb403dd7f1de4dfb54
diff --git a/selectors/parser.rs b/selectors/parser.rs index f53380c2b..66867000f 100644 --- a/selectors/parser.rs +++ b/selectors/parser.rs @@ -1457,7 +1457,7 @@ pub mod tests { where V: SelectorVisitor<Impl = Self::Impl> { true } } - #[derive(PartialEq, Debug)] + #[derive(Clone, PartialEq, D...
3
99
94
c5cb25a86453dc28e8d8d7dfdbc5b912b63de79c
n0max
2017-04-29T18:42:11
servo: Merge #16658 - Remove IndexSizeError in CanvasRenderingContext2D::drawImage (from n0max:remove-index-size-error); r=emilio <!-- Please describe your changes on the following line: --> The current spec don't expect the IndexSizeError if the rectangle is empty. --- <!-- Thank you for contributing to Servo! Pleas...
diff --git a/script/dom/canvasrenderingcontext2d.rs b/script/dom/canvasrenderingcontext2d.rs index 432dbe800..a5ec8d233 100644 --- a/script/dom/canvasrenderingcontext2d.rs +++ b/script/dom/canvasrenderingcontext2d.rs @@ -350,7 +350,7 @@ impl CanvasRenderingContext2D { ...
1
2
2
401b87da730743914c48119d7c5222a047b75ab3
Anthony Ramine
2017-04-29T17:11:51
servo: Merge #16646 - Reverse Number and LengthOrPercentage in LengthOrPercentageOrNumber (from nox:loponu); r=emilio "0" must be parsed as the number 0, not the unitless 0px length. Source-Repo: https://github.com/servo/servo Source-Revision: 5dac4fbd2d23009fd9ee55b61371bbfb4d1fcc06
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index b468a7600..b8f4d4ed5 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -3784,8 +3784,8 @@ clip-path for (mut gecko, servo) in self.gecko.mStrokeDasharray.iter_mut().zip(v.0.into_iter()) { ...
5
11
11
2f5eb3be8a7a542589ab41174538dcfaa71c29fe
Pyfisch
2017-04-29T14:40:32
servo: Merge #16385 - Implement radial gradients (from pyfisch:radial-gradient); r=emilio <!-- Please describe your changes on the following line: --> This PR passes the `radial-gradient` function down from CSS parsed properties to webrender. It currently lacks tests but the examples from MDN and some other tests work...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 205b40715..77a64553c 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -528,6 +528,7 @@ pub enum DisplayItem { WebGL(Box<WebGLDisplayItem>), Border(Box<BorderDisplayItem>), Gradient(Box<GradientDisplayItem>), + Ra...
4
355
152
74f2c5f1fb25f4a401f13c63f70624e0ca78c8b8
Hiroyuki Ikezoe
2017-04-29T03:49:26
servo: Merge #16640 - Use FunctionKeyword for computed_value of timing function (from hiikezoe:timing-function); r=xidorn <!-- Please describe your changes on the following line: --> https://bugzilla.mozilla.org/show_bug.cgi?id=1358330 --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` w...
diff --git a/style/animation.rs b/style/animation.rs index 110a73bba..941db59cc 100644 --- a/style/animation.rs +++ b/style/animation.rs @@ -339,19 +339,24 @@ impl PropertyAnimation { /// Update the given animation at a given point of progress. pub fn update(&self, style: &mut ComputedValues, time: f64) { -...
3
65
43
880dc132f9b3effda7c7e7ed6f6c4a206b491f83
Keith Yeung
2017-04-28T17:56:06
servo: Merge #16588 - Fix fixed table layout column width distribution (from KiChjang:fix-fixed-table-layout-column-width); r=mbrubeck Fixes #16324. Replaces the incorrect [CSS3 "distributing excess width to columns" algorithm](https://drafts.csswg.org/css-tables-3/#distributing-width-to-columns) and implements the s...
diff --git a/layout/table.rs b/layout/table.rs index e45fd7ca8..b130b62bd 100644 --- a/layout/table.rs +++ b/layout/table.rs @@ -352,20 +352,16 @@ impl Flow for TableFlow { let shared_context = layout_context.shared_context(); // The position was set to the containing block by the flow's parent. + ...
1
44
41
ba6eed66d17aa913a4e178563fb72d73a1dce585
Emilio Cobos Álvarez
2017-04-28T15:25:21
servo: Merge #16648 - Bug 1360508: Adjust text-combine properly. r=jryans (from emilio:combine); r=jryans Text style is always resolved via ServoStyleSet::ResolveStyleForText, either from the frame constructor initially, or from ServoRestyleManager::ProcessPostTraversalForText. So text-only adjustments should go ther...
diff --git a/style/animation.rs b/style/animation.rs index ed5a5c602..110a73bba 100644 --- a/style/animation.rs +++ b/style/animation.rs @@ -461,7 +461,6 @@ fn compute_style_for_animation_step(context: &SharedStyleContext, let computed = properties::apply_declarations(&context.stylist.devi...
10
68
56
851a2769ac1d01431ce62861f37fcb3a38fce055
Aaron Cunningham
2017-04-28T13:09:13
servo: Merge #16623 - Move impl's into macro for macro-generated keyword types (from aacunningham:issue-16604-define-keyword-type-modification); r=Wafflespeanut Three keyword types are created through a macro but have some of their impl's handled elsewhere. Since all impl's are the same, this commit moves them into th...
diff --git a/style/properties/helpers/animated_properties.mako.rs b/style/properties/helpers/animated_properties.mako.rs index 6e8cefc74..d11f9bd27 100644 --- a/style/properties/helpers/animated_properties.mako.rs +++ b/style/properties/helpers/animated_properties.mako.rs @@ -33,9 +33,9 @@ use std::fmt; use style_trai...
2
17
52
63bb01be51aa85537a311474b06349ea6a86f71b
Imanol Fernandez
2017-04-28T12:12:05
servo: Merge #16590 - Fix WebGL premultiplied alpha. Fix texImage2D calls with RGB images (from MortimerGoro:texture_rgb); r=emilio Fix WebGL premultiplied alpha testcases. Fix broken textures in some WebGL demos (e.g. Three.js). This was caused by WebGL::texImage2D calls with RGB formats. Alpha must be removed from ...
diff --git a/script/dom/webglrenderingcontext.rs b/script/dom/webglrenderingcontext.rs index 34f5b368a..1826a8773 100644 --- a/script/dom/webglrenderingcontext.rs +++ b/script/dom/webglrenderingcontext.rs @@ -51,7 +51,7 @@ use webrender_traits; use webrender_traits::{WebGLCommand, WebGLError, WebGLFramebufferBindingRe...
1
83
28
dfd6f0201ea39ba1dc6f48ba11d8d5dee5d19192
Manish Goregaokar
2017-04-28T11:19:00
servo: Merge #16610 - overflow: -moz-scrollbars-none is shorthand-only (from Manishearth:fixup-overflow); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: b7b5de0350e37f8b37da24ac2be3020ff2384561
diff --git a/style/properties/longhand/box.mako.rs b/style/properties/longhand/box.mako.rs index 9c445436d..c69c32fdb 100644 --- a/style/properties/longhand/box.mako.rs +++ b/style/properties/longhand/box.mako.rs @@ -407,7 +407,6 @@ ${helpers.single_keyword("overflow-clip-box", "padding-box content-box", // FIXME(pcwa...
2
6
1
dac69c8a8110331fb5bae84e7babe6903b774e69
Xidorn Quan
2017-04-28T10:11:04
servo: Merge #16642 - stylo: Implement access to CSSSupportsRule (from upsuper:bug1355394); r=heycam Servo side change of [bug 1355394](https://bugzilla.mozilla.org/show_bug.cgi?id=1355394). Source-Repo: https://github.com/servo/servo Source-Revision: 22747e2763a817e2eeb23a063af1aaed00681e16
diff --git a/style/gecko/arc_types.rs b/style/gecko/arc_types.rs index f733349e2..134f3d306 100644 --- a/style/gecko/arc_types.rs +++ b/style/gecko/arc_types.rs @@ -9,7 +9,7 @@ #![allow(non_snake_case, missing_docs)] use gecko_bindings::bindings::{RawServoMediaList, RawServoMediaRule, RawServoNamespaceRule, RawServ...
2
43
6
9758563a9a2e056eba2d7dbe4d76e9b487683f87
Emilio Cobos Álvarez
2017-04-28T00:59:25
servo: Merge #16641 - Bug 1360399: Don't deduplicate revalidation selectors. r=bholley (from emilio:dupedupedupedupe); r=bholley It's unfortunate, but it's a correctness issue. I was looking at the expectations update here: * https://hg.mozilla.org/integration/autoland/rev/659cddddd434 And investigating it I realis...
diff --git a/selectors/parser.rs b/selectors/parser.rs index 2f83d43c8..f53380c2b 100644 --- a/selectors/parser.rs +++ b/selectors/parser.rs @@ -476,12 +476,12 @@ pub enum Component<Impl: SelectorImpl> { // // CSS3 Negation only takes a simple simple selector, but we still need to // treat it as a compou...
3
18
24
2e5b6a2157695617bf404c7f2fbd754554c77a80
Boris Zbarsky
2017-04-27T23:31:20
servo: Merge #16637 - Fix Stylist::lazily_compute_pseudo_element_style to return None when it should (from bzbarsky:probing-lazy-pseudos); r=emilio We have a fast path to return None if we have no rules for the pseudo-element at all, but we should also return None if we have no _matching_ rules for it for the given or...
diff --git a/style/stylist.rs b/style/stylist.rs index a990dc253..29cb600e6 100644 --- a/style/stylist.rs +++ b/style/stylist.rs @@ -534,6 +534,10 @@ impl Stylist { &mut declarations, &mut set_selector_flags); + if declaratio...
1
4
0
761d704cfba62073c4f052588b01143be3ec84fb
Bobby Holley
2017-04-27T18:14:01
servo: Merge #16635 - Too many revalidation selectors (from bholley:too_many_revalidation_selectors); r=emilio https://bugzilla.mozilla.org/show_bug.cgi?id=1358693 Source-Repo: https://github.com/servo/servo Source-Revision: 2c445169ad7ccf0e4b2be8f1eee2e198c54ee666
diff --git a/selectors/parser.rs b/selectors/parser.rs index 65bd0944b..2f83d43c8 100644 --- a/selectors/parser.rs +++ b/selectors/parser.rs @@ -42,7 +42,11 @@ macro_rules! with_all_bounds { /// This trait allows to define the parser implementation in regards /// of pseudo-classes/elements - ...
5
145
61
0c175df386c3c0ceab11ef94ef609d7ad9949f2d
Anthony Ramine
2017-04-27T15:41:04
servo: Merge #16628 - Parse interpolation hints (fixes #15166) (from nox:INTERPOL); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: f598adc3ad6f25ce684127ce2335e783ff49e00a
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index ed38d70a9..2e0655726 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -58,8 +58,8 @@ use style::properties::longhands::border_image_repeat::computed_value::RepeatKey use style::properties::style_struct...
6
152
57
c9b79c07d80e5cb4b4a6279663ecfd68188141f4
Jeremy Chen
2017-04-27T14:33:20
servo: Merge #16624 - stylo: Make border-spacing animatable (from chenpighead:stylo-make-border-spacing-animatable); r=boris Two things are included in this patch: 1. Implement ComputeDistance for border-spacing, so we could get the right distance while doing animations. 2. Implement clone function for gecko glue co...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 9005fe691..108563d71 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -3255,6 +3255,13 @@ fn static_assert() { self.gecko.mBorderSpacingCol = other.gecko.mBorderSpacingCol; self.gecko....
2
22
2
a675976ac591809c2317bca2d904febb6e1bf351
Brian Birtles
2017-04-27T05:48:21
servo: Merge #16625 - SMIL support for Gecko (from birtles:smil-support); r=hiro,heycam PR for [Gecko bug 1355348](https://bugzilla.mozilla.org/show_bug.cgi?id=1355348) --- - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes do not require tests b...
diff --git a/style/dom.rs b/style/dom.rs index 645db055b..c937dba8b 100644 --- a/style/dom.rs +++ b/style/dom.rs @@ -319,6 +319,11 @@ pub trait TElement : Eq + PartialEq + Debug + Hash + Sized + Copy + Clone + /// Get this element's style attribute. fn style_attribute(&self) -> Option<&Arc<Locked<PropertyDecl...
7
83
22