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
ff25ce36e377fcdeafbb1dd03b6377ac9f14a078
Anthony Ramine
2017-02-21T13:15:15
servo: Merge #15670 - Kill the plugins crate and its clippy support (from nox:die-plugins-die); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 14bbe9d8729dece2d80bb651bca1c2eda13d0429
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index b3e2eed72..f4e9ac1bf 100644 --- a/canvas/Cargo.toml +++ b/canvas/Cargo.toml @@ -19,7 +19,6 @@ ipc-channel = "0.7" log = "0.3.5" num-traits = "0.1.32" offscreen_gl_context = "0.6" -plugins = {path = "../plugins"} servo_config = {path = "../config"} [depende...
42
7
121
4da956124fff7676085e55008920461764a1b856
Huxley
2017-02-21T09:09:35
servo: Merge #15612 - fixed the wrong behavior of border-spacing (from UnICorN21:master); r=canaltinova fixed the wrong behavior of border-spacing --- <!-- 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/style/properties/longhand/inherited_table.mako.rs b/style/properties/longhand/inherited_table.mako.rs index 1a6daa554..b3cefca43 100644 --- a/style/properties/longhand/inherited_table.mako.rs +++ b/style/properties/longhand/inherited_table.mako.rs @@ -114,15 +114,11 @@ ${helpers.single_keyword("caption-sid...
1
2
6
0a6568f19a740699111ee7682c137cb1d03a53b2
Glenn Watson
2017-02-21T04:05:01
servo: Merge #15667 - Update WR (more scroll/clip work, fix for zero sized stacking contexts) (from glennw:update-wr-empty-layer-fix); r=shinglyu Source-Repo: https://github.com/servo/servo Source-Revision: b63488c2acb0f20f595287bde35b2199f34a3a12
diff --git a/servo/lib.rs b/servo/lib.rs index 3ba9f33d5..38b9b7b83 100644 --- a/servo/lib.rs +++ b/servo/lib.rs @@ -183,10 +183,7 @@ impl<Window> Browser<Window> where Window: WindowMethods + 'static { enable_scrollbars: opts.output_file.is_none(), renderer_kind: renderer_kind, ...
1
1
4
4bedf7e5b16ef70acab47682deee333b0b19db8e
Nazım Can Altınova
2017-02-20T18:28:03
servo: Merge #15662 - Fix parsing methods of column-{gap,width} (from canaltinova:column); r=Manishearth <!-- Please describe your changes on the following line: --> They weren't accepting {normal, auto} keywords. Fixed parsing methods of these properties. --- <!-- Thank you for contributing to Servo! Please replace ...
diff --git a/style/gecko/values.rs b/style/gecko/values.rs index 9cea3f363..6d3f374c4 100644 --- a/style/gecko/values.rs +++ b/style/gecko/values.rs @@ -11,7 +11,7 @@ use cssparser::RGBA; use gecko_bindings::structs::{nsStyleCoord, StyleGridTrackBreadth, StyleShapeRadius}; use gecko_bindings::sugar::ns_style_coord::{...
3
33
15
90aaa1f7d4f3abe033b736b4624fd941dc5acba0
Alan Jeffrey
2017-02-20T15:09:14
servo: Merge #15618 - Prevent the constellation from panicking if there is a deserialization error (from asajeffrey:constellation-ipc-dont-panic); r=Manishearth <!-- Please describe your changes on the following line: --> At the moment, the constellation panics if there is a deserialization error on an ipc channel. T...
diff --git a/constellation/constellation.rs b/constellation/constellation.rs index e6b1cb0f8..8d77d0584 100644 --- a/constellation/constellation.rs +++ b/constellation/constellation.rs @@ -78,8 +78,8 @@ use event_loop::EventLoop; use frame::{Frame, FrameChange, FrameState, FrameTreeIterator, FullFrameTreeIterator}; u...
2
40
13
60ff1bc5a22d5fadff53acb9fa95c15608462489
Ms2ger
2017-02-20T11:20:26
servo: Merge #15656 - Add more public crates to libservo (from servo:pub-crate); r=emilio Fixes #15640. Source-Repo: https://github.com/servo/servo Source-Revision: a1e4c547f042bf74c638fdff4b3faacf0b96558d
diff --git a/servo/Cargo.toml b/servo/Cargo.toml index 8c66ba323..80d2ba08b 100644 --- a/servo/Cargo.toml +++ b/servo/Cargo.toml @@ -47,8 +47,10 @@ script = {path = "../script"} script_layout_interface = {path = "../script_layout_interface"} script_traits = {path = "../script_traits"} servo_config = {path = "../conf...
2
5
1
cb4821ae8fc7f370fa3c48634ae6a81257fdb737
Ravi Shankar
2017-02-20T09:11:03
servo: Merge #15628 - Stylo: Implement grid-auto-{rows,columns} (from Wafflespeanut:grid); r=Manishearth <!-- 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/style/build_gecko.rs b/style/build_gecko.rs index de60fe615..ee7825fe0 100644 --- a/style/build_gecko.rs +++ b/style/build_gecko.rs @@ -285,6 +285,7 @@ mod bindings { "mozilla::PropertyStyleAnimationValuePair", "mozilla::TraversalRootBehavior", "mozilla::StyleShapeRad...
9
319
39
b1bad8cf7a8b0629bf5fd50a545b1a5a5e404c0c
Cameron McCormack
2017-02-20T05:12:57
servo: Merge #15629 - stylo: Destroy static Variables struct on shutdown (from heycam:variables-leak); r=bholley,emilio Fix for https://bugzilla.mozilla.org/show_bug.cgi?id=1340457. r? @emilio Source-Repo: https://github.com/servo/servo Source-Revision: 58aa6ce7aedfe93df7154e84676a52905f1709f5
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index e8060a0a9..88766d34f 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -26,6 +26,7 @@ use gecko_bindings::bindings::Gecko_CopyFontFamilyFrom; use gecko_bindings::bindings::Gecko_CopyImageValueFrom; use...
1
17
10
b79c02011861d752211ebcd9ff3b4cbe3ab5ff31
Ian
2017-02-20T04:26:31
servo: Merge #15650 - Remove ArrayBufferViewContents trait (from Greeene:rm_array_buffer_contents_trait); r=SimonSapin <!-- Please describe your changes on the following line: --> Removed ArrayBufferViewContents trait and dependent uses. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]`...
diff --git a/script/dom/bindings/conversions.rs b/script/dom/bindings/conversions.rs index 0cbb49bea..d77f6ea93 100644 --- a/script/dom/bindings/conversions.rs +++ b/script/dom/bindings/conversions.rs @@ -50,10 +50,7 @@ use js::glue::{RUST_JSID_IS_STRING, RUST_JSID_TO_STRING, UnwrapObject}; use js::jsapi::{HandleId, H...
1
1
97
11c715af2d2ea7624e4eb547b01dd72e529f8d82
Michael Nelson
2017-02-20T03:41:19
servo: Merge #15516 - Animation longhand serialization should be a list of each animation rather than a list of lists for each longhand (from absoludity:fix-animation-serialization-15398); r=upsuper Fixes part of #15398 - serialization should be a list of each animation, rather than a list of lists for each longhand....
diff --git a/style/properties/shorthand/box.mako.rs b/style/properties/shorthand/box.mako.rs index f28e3b037..1120c8eac 100644 --- a/style/properties/shorthand/box.mako.rs +++ b/style/properties/shorthand/box.mako.rs @@ -308,28 +308,55 @@ macro_rules! try_parse_one { impl<'a> LonghandsToSerialize<'a> { ...
1
47
20
2129836dc8476e77d30268259336c11a5256db6f
Nazım Can Altınova
2017-02-19T13:10:57
servo: Merge #15334 - Fix the panic when transform is non-invertible (from canaltinova:inverse); r=nox <!-- Please describe your changes on the following line: --> Fixes the panic when transform is non-invertible. Counterpart of https://github.com/servo/webrender/pull/823 r? @glennw --- <!-- Thank you for contributin...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index ec3173cb8..af4b793c6 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -182,7 +182,14 @@ impl DisplayList { *client_point } else { let point = *translated_point - stacking_context.bounds.origin; -...
1
8
1
0bd6284729ef2d423618504a6c13811f3c4478d4
Prudhvi Rampey
2017-02-19T12:10:04
servo: Merge #15495 - Calling matchMedia during a MQL change event will not panic (from prampey:mql-borrow-error); r=jdm <!-- Please describe your changes on the following line: --> Calling matchMedia now leads to a new copy of MQL objects to prevent errors when borrowing references from MQL during an MQL change event...
diff --git a/script/dom/mediaquerylist.rs b/script/dom/mediaquerylist.rs index c6e569b5e..2545b911c 100644 --- a/script/dom/mediaquerylist.rs +++ b/script/dom/mediaquerylist.rs @@ -138,17 +138,23 @@ impl WeakMediaQueryListVec { /// Evaluate media query lists and report changes /// https://drafts.csswg.org/css...
1
12
6
1edff56cc1e89841d0b318533b1a1292df3ff3fa
Anthony Ramine
2017-02-19T10:09:20
servo: Merge #15647 - Do not use plugins in azure anymore (from nox:azure); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 5c73b374cb7e41b33e076c3e04fe30b1eb91e7b1
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index ebea8e22c..b3e2eed72 100644 --- a/canvas/Cargo.toml +++ b/canvas/Cargo.toml @@ -10,7 +10,7 @@ name = "canvas" path = "lib.rs" [dependencies] -azure = {git = "https://github.com/servo/rust-azure", features = ["plugins"]} +azure = {git = "https://github.com/ser...
1
1
1
4be1515055a82c47d5643629cdeceae5937256a0
Manish Goregaokar
2017-02-19T08:07:40
servo: Merge #15646 - Actually include file with marker shorthand (from Manishearth:marker); r=heycam This wasn't being included so nothing was actually happening. r? @heycam or @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: d88e275f1f0f458be9c60f6c400aa173ebd4832d
diff --git a/style/properties/properties.mako.rs b/style/properties/properties.mako.rs index 08c001a98..be76f0cf1 100644 --- a/style/properties/properties.mako.rs +++ b/style/properties/properties.mako.rs @@ -166,6 +166,7 @@ pub mod shorthands { <%include file="/shorthand/outline.mako.rs" /> <%include file="/...
2
5
3
0439ee4f3f2d2cc18128ebe24bfb47fe0186e77f
Matt Brubeck
2017-02-19T06:26:06
servo: Merge #15606 - stylo: Implement align-items and justify-items (from mbrubeck:align-items); r=Manishearth Stylo-only patch to match Gecko property support. Part of #15001. r? @Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 72b76458b75087050ad882cead11f76d753d1046
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index ca8dbd7a6..e8060a0a9 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -959,7 +959,8 @@ fn static_assert() { <% skip_position_longhands = " ".join(x.ident for x in SIDES + GRID_LINES) %> <%self:impl_tr...
5
183
13
c7804061d051a6f2bf82544c28578feba63888b6
Simon Sapin
2017-02-18T23:31:36
servo: Merge #15633 - Fork dwrote, hopefully temporarily (from servo:fork-dwrote); r=nox https://github.com/servo/webrender/issues/900 Source-Repo: https://github.com/servo/servo Source-Revision: 180f2af5e8eae159f3401797e037729a35df4ca2
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index c51adb5d5..e2f19db0a 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -60,5 +60,5 @@ servo-fontconfig = "0.2.1" simd = "0.2.0" [target.'cfg(target_os = "windows")'.dependencies] -dwrote = {git = "https://github.com/servo/dwrote-rs.git", rev = "servo"} +servo-dwr...
1
1
1
93872d90ea8839c5f77321272207ddc1c2e9f937
deror1869107
2017-02-18T17:38:54
servo: Merge #15595 - Use bitflags for multikeyword properties (from deror1869107:use-bitflags); r=Wafflespeanut <!-- Please describe your changes on the following line: --> Use bitflags for multikeyword properties --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is compl...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 2e60378dd..6395bb4d1 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -2567,16 +2567,16 @@ fn static_assert() { pub fn set_text_decoration_line(&mut self, v: longhands::text_decoration_line::comp...
3
31
31
7b327a1690efdce173497bf7193ebe0c62a223a1
Cameron McCormack
2017-02-18T10:29:44
servo: Merge #15630 - stylo: Don't leak nsStyleCoord::Calc objects when setting gradients (from heycam:calc); r=Manishearth Fix for https://bugzilla.mozilla.org/show_bug.cgi?id=1340509. My initial inclination was to add a Drop impl to nsStyleCoord but I'm not sure if that's a good idea with the FFI types. r? @Manish...
diff --git a/style/gecko/conversions.rs b/style/gecko/conversions.rs index 5f5ee296d..7262a2f7f 100644 --- a/style/gecko/conversions.rs +++ b/style/gecko/conversions.rs @@ -297,10 +297,10 @@ impl nsStyleImage { }, }; - let mut coord: nsStyleCoord = nsStyleCoord::null(); for (inde...
2
11
2
c3601da06dff3235bc4bac42580e9e8096ce4a1f
Xidorn Quan
2017-02-18T02:30:51
servo: Merge #15625 - Update atoms for gecko binding (from upsuper:update-atoms); r=heycam r? @heycam Source-Repo: https://github.com/servo/servo Source-Revision: 9f1f62d0b2b95b995984444a8748488c7333d0bf
diff --git a/style/gecko/generated/gecko_pseudo_element_helper.rs b/style/gecko/generated/gecko_pseudo_element_helper.rs index 05aebe412..949bf6a7c 100644 --- a/style/gecko/generated/gecko_pseudo_element_helper.rs +++ b/style/gecko/generated/gecko_pseudo_element_helper.rs @@ -130,9 +130,6 @@ pseudo_element!(":-moz...
2
24
11
541585e353c7d893e7ec74748c43fdf6251fab5f
Josh Matthews
2017-02-18T01:02:14
servo: Merge #15620 - Update document constructor spec link (from servo:jdm-patch-1); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: d9c53844933e484fb7430aaea339ed3768e537f3
diff --git a/script/dom/document.rs b/script/dom/document.rs index 2ac8f2345..56053555f 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -2046,7 +2046,7 @@ impl Document { } } - // https://dom.spec.whatwg.org/#dom-document + // https://dom.spec.whatwg.org/#dom-document-document ...
1
1
1
5c5a481011aff8d9c42d342030fed108051fea8a
Matt Brubeck
2017-02-17T22:53:56
servo: Merge #15616 - Update backtrace-sys, gamma-lut, heartbeats-simple, hyper, mac, truetype, unicode-bidi (from mbrubeck:always-be-updating); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 1ecf6c78162e8a261e950ab6a415b906f0c7da77
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index 3fd6151df..e31478b3e 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -61,4 +61,4 @@ simd = "0.2.0" [target.'cfg(target_os = "windows")'.dependencies] dwrote = "0.1.5" -truetype = "0.24" +truetype = "0.26" diff --git a/profile/Cargo.toml b/profile/Cargo.toml ind...
2
2
2
19480d29fb9659127bb53c4f7167bc9450ea2765
Matt Brubeck
2017-02-17T21:58:05
servo: Merge #15617 - Fix -moz aliases for border-{start,end} properties (from mbrubeck:border); r=upsuper Fixes #15297. r? @upsuper or @Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 9cb3e31c1d215ede5c31bcd8536eca3d0f9e28a6
diff --git a/style/properties/longhand/border.mako.rs b/style/properties/longhand/border.mako.rs index 8de98c8f5..2b21214c3 100644 --- a/style/properties/longhand/border.mako.rs +++ b/style/properties/longhand/border.mako.rs @@ -34,7 +34,7 @@ % for side in ALL_SIDES: <%helpers:longhand name="border-${side[0]}-w...
2
9
5
b1e283e9862bb0232ead58216e1728e47d2e21f0
Bobby Holley
2017-02-17T18:20:44
servo: Merge #15599 - Implement "handled for descendants" tracking for RestyleDamage (from bholley:damage_handled); r=emilio Reviewed in https://bugzilla.mozilla.org/show_bug.cgi?id=1340022 Source-Repo: https://github.com/servo/servo Source-Revision: eb916f290334f9f56c4c8680e25224a16e4c7d59
diff --git a/style/data.rs b/style/data.rs index ddf937041..a50d5a15f 100644 --- a/style/data.rs +++ b/style/data.rs @@ -245,7 +245,7 @@ static NO_SNAPSHOT: Option<Snapshot> = None; /// We really want to store an Option<Snapshot> here, but we can't drop Gecko /// Snapshots off-main-thread. So we make a convenient lit...
6
135
23
0e72e2a7b35b251529c12080f7b8acac320e3bdd
Matt Brubeck
2017-02-17T02:16:28
servo: Merge #15594 - Fix initial value of align-content and justify-content (from mbrubeck:align-content-fix); r=Manishearth This fixes a trivial mistake in #15533, caused by me misreading the spec. r? @Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 3fa9ce16db910c0b44617dafdcd8e76b6f813c61
diff --git a/style/properties/longhand/position.mako.rs b/style/properties/longhand/position.mako.rs index b169f74c3..43a740eca 100644 --- a/style/properties/longhand/position.mako.rs +++ b/style/properties/longhand/position.mako.rs @@ -88,13 +88,13 @@ ${helpers.single_keyword("flex-wrap", "nowrap wrap wrap-reverse", ...
2
9
9
50a28c6370aac212495b7e5f4713a78512f73c94
Matt Brubeck
2017-02-16T21:51:15
servo: Merge #15576 - stylo: Implement 'align-self' and 'justify-self' (from mbrubeck:align); r=Manishearth Stylo-only patch to match Gecko property support. Part of #15001. r? @Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 11396b4dd3834d6794bd4e32f30c1df96fc6a01d
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 822646bae..722faf113 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -864,7 +864,7 @@ fn static_assert() { <% skip_position_longhands = " ".join(x.ident for x in SIDES + GRID_LINES) %> <%self:impl_tr...
5
124
11
f0e2864e30b40dd6e2979905b64b3f594936b71a
Emilio Cobos Álvarez
2017-02-16T20:12:32
servo: Merge #15582 - Update nsstring (from emilio:nsstring); r=heycam This should fix bug 1334579 <!-- Please describe your changes on the following line: --> r? @bholley @heycam or @Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 2b254863d0b4ed482942ca11238c661bf487cad5
diff --git a/style/gecko_bindings/nsstring_vendor/src/lib.rs b/style/gecko_bindings/nsstring_vendor/src/lib.rs index ef2f07e06..e232c8201 100644 --- a/style/gecko_bindings/nsstring_vendor/src/lib.rs +++ b/style/gecko_bindings/nsstring_vendor/src/lib.rs @@ -9,11 +9,12 @@ //! Use `&{mut,} nsA[C]String` for functions in ...
2
114
117
4609b7d9676d26fefd8833ec79e56671f47fb850
Anthony Ramine
2017-02-16T18:58:19
servo: Merge #15584 - Move script lints to script_plugins (from nox:plugin); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: a099d27f99dadf3f7c26d997e43c1a12e0c5bd0e
diff --git a/plugins/Cargo.toml b/plugins/Cargo.toml index 9370899a8..ad40e1b37 100644 --- a/plugins/Cargo.toml +++ b/plugins/Cargo.toml @@ -15,5 +15,4 @@ version = "0.0.112" optional = true [features] -default = [] clippy = ["clippy_lints"] diff --git a/plugins/lib.rs b/plugins/lib.rs index 03585ae37..d3e54a21a 1...
11
65
49
45fd582e8eaa0a4fabeed4b6fbf3bf55bd597ecf
Anthony Ramine
2017-02-16T11:53:49
servo: Merge #15537 - Update ipc-channel to 0.6.3 (from servo:webrender); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 4a0b730cafd09fbd6e5cbc00727caef9b3cae315
diff --git a/bluetooth/Cargo.toml b/bluetooth/Cargo.toml index f90c4d2b7..a3f70a836 100644 --- a/bluetooth/Cargo.toml +++ b/bluetooth/Cargo.toml @@ -13,7 +13,7 @@ path = "lib.rs" bitflags = "0.7" bluetooth_traits = {path = "../bluetooth_traits"} device = {git = "https://github.com/servo/devices", features = ["blueto...
27
35
35
a1b27cccaee23a923570a113cd2f25579102f318
Anthony Ramine
2017-02-16T04:49:47
servo: Merge #15567 - Replace inheritance_integrity by trait shenanigans (from nox:plugin); r=SimonSapin Replace inheritance_integrity by trait shenanigans Source-Repo: https://github.com/servo/servo Source-Revision: 84a44a401424852bc44ef5e751e84544ed892e70
diff --git a/domobject_derive/lib.rs b/domobject_derive/lib.rs index 037ae597e..c718b514f 100644 --- a/domobject_derive/lib.rs +++ b/domobject_derive/lib.rs @@ -14,17 +14,27 @@ pub fn expand_token_stream(input: proc_macro::TokenStream) -> proc_macro::TokenS fn expand_string(input: &str) -> String { let type_ = sy...
7
57
139
c95124820f31ec20f02330893f8facadc72231a7
Tetsuharu OHZEKI
2017-02-15T19:11:40
servo: Merge #15561 - Stop using DOMRefCell<Heap<..>> (from saneyuki:rm-domrefcell-heap); r=mbrubeck Fix https://github.com/servo/servo/issues/15560 Source-Repo: https://github.com/servo/servo Source-Revision: 3c8daca772aacf59bffdff32b017f8029437a85e
diff --git a/plugins/lints/ban.rs b/plugins/lints/ban.rs index bd152dfe3..4a4e71c08 100644 --- a/plugins/lints/ban.rs +++ b/plugins/lints/ban.rs @@ -43,5 +43,11 @@ impl EarlyLintPass for BanPass { .is_some() { cx.span_lint(BANNED_TYPE, ty.span, "Banned type DOMRefCell<JS<T>> detected. Use MutJ...
2
21
17
2a025c8160e8dc783234ecee7f28c151f0b63995
Ms2ger
2017-02-15T15:46:03
servo: Merge #15563 - Update js (from servo:update-js); r=nox Fixes #15553. Source-Repo: https://github.com/servo/servo Source-Revision: 34fb10bd406cd71cd76840b539faed20b33791a0
diff --git a/script/dom/filereader.rs b/script/dom/filereader.rs index 039d516db..f97f14480 100644 --- a/script/dom/filereader.rs +++ b/script/dom/filereader.rs @@ -27,7 +27,7 @@ use js::jsapi::Heap; use js::jsapi::JSAutoCompartment; use js::jsapi::JSContext; use js::jsval::{self, JSVal}; -use js::typedarray::ArrayB...
8
30
25
8b131a45b935fd837c77ad4242f093063d928f90
Simon Sapin
2017-02-15T11:58:38
servo: Merge #15552 - Update cssparser to 0.9 (from servo:cssparserup); 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 build -d` doe...
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index f964e0cab..1ac27478f 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", features = ["plugins"]} canvas_traits = {path = "../canvas_traits"} -cssparser = ...
13
55
64
8d59c99bb0db9d6e4f2f6597bcbbd38dfa9fe87d
Bobby Holley
2017-02-15T11:05:07
servo: Merge #15557 - stylo: various fixes to improve style logging in opt builds (from bholley:opt_logging); r=emilio This adds a traversal time entry to the style statistics, and switches to warn! as discussed in [1]. [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1339176 Source-Repo: https://github.com/servo/se...
diff --git a/style/context.rs b/style/context.rs index d4b0d9c9c..bbf3a7ed6 100644 --- a/style/context.rs +++ b/style/context.rs @@ -25,6 +25,7 @@ use std::sync::{Arc, Mutex}; use std::sync::mpsc::Sender; use stylist::Stylist; use thread_state; +use time; use timer::Timer; /// This structure is used to create a ...
8
36
17
cbd8832464758dc68195d9534242c7a661aa67d4
Anthony Ramine
2017-02-15T09:24:39
servo: Merge #15545 - Kill some more plugins (from nox:plugin); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 9702d6920a7cf6506fa26c042eb4b9f7cd061713
diff --git a/deny_public_fields/Cargo.toml b/deny_public_fields/Cargo.toml new file mode 100644 index 000000000..de5c99c04 --- /dev/null +++ b/deny_public_fields/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "deny_public_fields" +version = "0.0.1" +authors = ["The Servo Project Developers"] +license = "MPL-2.0" +publi...
13
53
134
23895a2a15014addb734065982f40d5937eb0897
Dawing Cho
2017-02-15T03:25:49
servo: Merge #15539 - Add rejection of out-of-range values for single-timing-functions (from AdmiralCoco:reject_outofrange_transition_values); r=emilio <!-- Please describe your changes on the following line: --> This PR fixes #15344, checking for the `cubic-bezier p1x/p2x` and `steps` first value after parsing. Ther...
diff --git a/style/properties/longhand/box.mako.rs b/style/properties/longhand/box.mako.rs index 9fbe615fe..a0284a23b 100644 --- a/style/properties/longhand/box.mako.rs +++ b/style/properties/longhand/box.mako.rs @@ -594,6 +594,10 @@ ${helpers.single_keyword("overflow-x", "visible hidden scroll auto", ...
1
8
0
0966375b084dbef36cd8fe4cc9ee2dbe45fe8b79
Matt Brubeck
2017-02-14T21:17:24
servo: Merge #15549 - Update aho-corasick, backtrace-sys, image, parking_lot, pdqsort, syn, & others (from mbrubeck:always-be-updating); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 5a624ff9560338024c18ad0abf496fd78d5f6bb1
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index 34ecfc274..8e5a4a825 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -26,7 +26,7 @@ libc = "0.2" log = "0.3.5" msg = {path = "../msg"} net_traits = {path = "../net_traits"} -ordered-float = "0.2.2" +ordered-float = "0.4" plugins = {path = "../plugins"} range =...
4
3
14
ad49414f04c2e6f9692ff7cfc8a61d855cde0a46
Emilio Cobos Álvarez
2017-02-14T19:43:16
servo: Merge #15518 - style: Unbox a bunch of color properties (from emilio:color); r=SimonSapin This builds on https://github.com/servo/rust-cssparser/pull/118. Source-Repo: https://github.com/servo/servo Source-Revision: 357bf3b85a1b548ba012f95a97853b34035c89ab
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index 141bf7264..f964e0cab 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", features = ["plugins"]} canvas_traits = {path = "../canvas_traits"} -cssparser = ...
28
79
109
5d7977e890ace26b462691f0387c4ab7883ee63e
Eddie Quan
2017-02-14T18:41:58
servo: Merge #15546 - fixes quote transform: none serialization (from eddiequan:15209_fix_quotes_serialization_transform_none); r=Wafflespeanut <!-- Please describe your changes on the following line: --> Adds a unit test to reproduce faulty behaviour, and serializes "none" correctly when provided an empty list. --- ...
diff --git a/style/properties/longhand/list.mako.rs b/style/properties/longhand/list.mako.rs index 91e003d25..a5a1c3086 100644 --- a/style/properties/longhand/list.mako.rs +++ b/style/properties/longhand/list.mako.rs @@ -54,6 +54,10 @@ ${helpers.predefined_type("list-style-image", "UrlOrNone", "Either::Second(None_ ...
1
4
0
756b7aef7b560163a5539f74f593c9e18cd0bd6f
Matt Brubeck
2017-02-14T17:13:13
servo: Merge #15533 - Stylo: Implement align-content and justify-content (from mbrubeck:align); r=Manishearth This implements parsing and serialization of `align-content` and `justify-content` for Stylo. The implementation should match Gecko exactly (which means it's not exactly up-to-date with the latest draft spec)....
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 5d79857be..7e702f913 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -867,8 +867,8 @@ fn static_assert() { <% skip_position_longhands = " ".join(x.ident for x in SIDES + GRID_LINES) %> <%self:impl_...
5
316
16
d60dc012d76482aaa9f3a89296d878f4f5983c9c
Anthony Ramine
2017-02-14T13:57:32
servo: Merge #15543 - Derive DomObject with a proc macro (from nox:plugin); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 2af79b82f293749a12a02c72fe7d3b7815e464f9
diff --git a/domobject_derive/Cargo.toml b/domobject_derive/Cargo.toml new file mode 100644 index 000000000..0fc9b7f21 --- /dev/null +++ b/domobject_derive/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "domobject_derive" +version = "0.0.1" +authors = ["The Servo Project Developers"] +license = "MPL-2.0" +publish = fal...
8
83
91
c9a1f4a6742d11e2fe34dbbaaa9208aeadbdf497
Cameron McCormack
2017-02-14T03:44:12
servo: Merge #15538 - Do RestyleHint assertions at runtime so they use build-time bindgen (from heycam:mv-test); r=bholley Currently these assertions work off the in-tree bindings. r? @bholley Source-Repo: https://github.com/servo/servo Source-Revision: dda5c3c3229d399672cbd7909d2b34f8985d4f3f
diff --git a/style/restyle_hints.rs b/style/restyle_hints.rs index 091a7326d..cc2549ee6 100644 --- a/style/restyle_hints.rs +++ b/style/restyle_hints.rs @@ -32,8 +32,7 @@ bitflags! { /// /// Note that the bit values here must be kept in sync with the Gecko /// nsRestyleHint values. If you add more bits ...
1
34
2
d08a55b2338d1be45ab966c59c57a41d9e4df922
Glenn Watson
2017-02-13T22:46:46
servo: Merge #15532 - Update WR (pixel snapping improvements) (from servo:webrender); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: d44bf6182f9fba80a95fd44097edbca714ec406e
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index aa8f7d729..2673af8b4 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -734,7 +734,7 @@ impl<Window: WindowMethods> IOCompositor<Window> { let pipeline_id = frame_tree.pipeline.id.to_webrender(); self.we...
4
6
5
1f02c3545cfc59c226670dff918a09d8470e5496
Simon Whitehead
2017-02-13T21:31:33
servo: Merge #15527 - Make HTMLOptionsCollection constructor accept a HTMLSelectElement argument. Fixes #15521 (from simon-whitehead:fix-15521); r=cbrewster <!-- Please describe your changes on the following line: --> Moves the `HTMLSelectElement.upcast()` call into the `HTMLOptionsCollection` constructors, replacing ...
diff --git a/script/dom/htmloptionscollection.rs b/script/dom/htmloptionscollection.rs index 2e4ce0f9a..95478fc30 100644 --- a/script/dom/htmloptionscollection.rs +++ b/script/dom/htmloptionscollection.rs @@ -16,6 +16,7 @@ use dom::bindings::str::DOMString; use dom::element::Element; use dom::htmlcollection::{Collect...
2
6
5
b084fe0496ac920110c8e7c734ba222de686de87
karan sharma
2017-02-13T19:45:50
servo: Merge #15470 - remove unwrap(), not needed (from karan1276:karan_rmv_unwrap); r=Wafflespeanut Fixes #15387 <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate ...
diff --git a/script/script_thread.rs b/script/script_thread.rs index c50011bf1..fa83eaed6 100644 --- a/script/script_thread.rs +++ b/script/script_thread.rs @@ -1511,7 +1511,7 @@ impl ScriptThread { let (response_chan, response_port) = channel(); chan.send(message::Msg::PrepareToExit(response_chan)).o...
1
1
1
f8aae63748bcff062f58841d018b71459b6622da
Jan Beich
2017-02-13T18:08:24
servo: Merge #15534 - style: add missing semicolons for bindgen on BSDs and Solaris (from jbeich:freebsd); r=emilio - [ ] `./mach build -d` does not report any errors - [ ] `./mach test-tidy` does not report any errors - [x] These changes fix a typo in #15529 - [x] These changes do not require tests because Tier3 supp...
diff --git a/style/build_gecko.rs b/style/build_gecko.rs index 52af2df5a..15ca0d55c 100644 --- a/style/build_gecko.rs +++ b/style/build_gecko.rs @@ -137,15 +137,15 @@ mod bindings { if cfg!(target_os = "linux") { builder = builder.clang_arg("-DOS_LINUX=1"); } else if cfg!(targ...
1
5
5
970ce0c3d2999bc085b764829633f17d9654a62c
Jan Beich
2017-02-13T14:09:03
servo: Merge #15529 - style: unbreak bindgen on BSDs and Solaris (from jbeich:freebsd); r=emilio <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [ ] `....
diff --git a/style/build_gecko.rs b/style/build_gecko.rs index 2714a54bf..52af2df5a 100644 --- a/style/build_gecko.rs +++ b/style/build_gecko.rs @@ -136,6 +136,16 @@ mod bindings { } if cfg!(target_os = "linux") { builder = builder.clang_arg("-DOS_LINUX=1"); + } els...
1
10
0
a52173df3cc905ccc6d32fb1bf220cdaf0790447
Zakor Gyula
2017-02-13T10:00:46
servo: Merge #15525 - Reorder startNotifications steps (from szeged:step-reorder); r=Wafflespeanut <!-- Please describe your changes on the following line: --> https://github.com/WebBluetoothCG/web-bluetooth/pull/355 changed the step order in startNotifications. The connection check is now Step 2 instead of Step 6. Li...
diff --git a/bluetooth/lib.rs b/bluetooth/lib.rs index bcfa1b9c4..9091d8ebf 100644 --- a/bluetooth/lib.rs +++ b/bluetooth/lib.rs @@ -886,7 +886,7 @@ impl BluetoothManager { // https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothremotegattcharacteristic-startnotifications // https://webbluetoothcg.git...
2
12
12
746c0d527338a72bdfa0855ed09a2a16763a660c
Cameron McCormack
2017-02-13T08:44:48
servo: Merge #15523 - stylo: align RESTYLE_STYLE_ATTRIBUTE value with eRestyle_StyleAttribute (from heycam:rshint-style); r=bholley This is the Servo-side part of https://bugzilla.mozilla.org/show_bug.cgi?id=1338461, which @bholley reviewed. Source-Repo: https://github.com/servo/servo Source-Revision: b8fcf127df80097...
diff --git a/style/restyle_hints.rs b/style/restyle_hints.rs index b83c939dd..091a7326d 100644 --- a/style/restyle_hints.rs +++ b/style/restyle_hints.rs @@ -29,6 +29,11 @@ bitflags! { /// id, class, and attribute selectors. Doing this conservatively is /// expensive, and so we use RestyleHints to short-circui...
1
6
1
1f158fecf8201ceb2e26354e6bedd79b7dcad0e1
Boris Chiou
2017-02-13T07:17:59
servo: Merge #15524 - stylo: Drop Servo_RestyleWithAddedDeclaration (from BorisChiou:animation/drop_RestyleWithAddedDeclaration); r=Manishearth This is the servo-side change for [bug 1338087](https://bugzilla.mozilla.org/show_bug.cgi?id=1338087). r=@Manishearth --- - [X] `./mach build -d` does not report any errors -...
diff --git a/style/gecko_bindings/bindings.rs b/style/gecko_bindings/bindings.rs index eb691fafe..4f414b531 100644 --- a/style/gecko_bindings/bindings.rs +++ b/style/gecko_bindings/bindings.rs @@ -1271,14 +1271,6 @@ extern "C" { principal: *mut ThreadSafePrincipalHolder) -> RawServ...
1
0
8
f12fb0c0b5c492782c7d2275c86a5b657c21a060
Michael Nelson
2017-02-12T21:13:47
servo: Merge #15510 - Rewrite TextEncoder::Encode to use typed array API. Fixes #15504 (from absoludity:master); r=SimonSapin <!-- Please describe your changes on the following line: --> Rewrite TextEncoder::Encode to use typed array API. Fixes #15504 --- <!-- Thank you for contributing to Servo! Please replace each ...
diff --git a/script/dom/textencoder.rs b/script/dom/textencoder.rs index 1bb354187..7cb0443d1 100644 --- a/script/dom/textencoder.rs +++ b/script/dom/textencoder.rs @@ -14,8 +14,7 @@ use encoding::EncoderTrap; use encoding::Encoding; use encoding::all::UTF_8; use js::jsapi::{JSContext, JSObject}; -use js::jsapi::{JS...
1
5
9
a61d5749f8b4b29e40ecafbc0569a0b7bfa3b1cc
Anthony Ramine
2017-02-12T12:55:40
servo: Merge #15515 - Remove rustc-serialize from range (from nox:rustc-serialize); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 89dcbec0ba95eaabb7bf4e5da62a6e7de89feed2
diff --git a/range/Cargo.toml b/range/Cargo.toml index 36c35d97f..d93df7650 100644 --- a/range/Cargo.toml +++ b/range/Cargo.toml @@ -14,6 +14,5 @@ path = "lib.rs" heapsize = "0.3.0" heapsize_derive = "0.1" num-traits = "0.1.32" -rustc-serialize = "0.3" serde = "0.8" serde_derive = "0.8" diff --git a/range/lib.rs b...
3
8
30
8759111dc11ba180041d8189345f0d8de0db0abd
Alon Levy
2017-02-12T11:15:36
servo: Merge #15514 - fix #15492 (Negative ShapeRadius values should be invalid) (from alon:master); r=emilio <!-- Please describe your changes on the following line: --> Address issue #15492 - Negative value in <shape-radius> should be invalid --- - [X] `./mach build -d` does not report any errors - [X] `./mach tes...
diff --git a/style/values/specified/basic_shape.rs b/style/values/specified/basic_shape.rs index 7f7733721..3d6399cef 100644 --- a/style/values/specified/basic_shape.rs +++ b/style/values/specified/basic_shape.rs @@ -662,8 +662,8 @@ impl Default for ShapeRadius { } impl Parse for ShapeRadius { - fn parse(context...
1
2
2
43727838f863897b77a36568a0c837ff2eba80c6
deror1869107
2017-02-11T16:04:15
servo: Merge #15427 - Remove slice_to_array_buffer_view and update_array_buffer_view (from deror1869107:rewrite-webvr); r=jdm <!-- Please describe your changes on the following line: --> Remove slice_to_array_buffer_view and update_array_buffer_view --- <!-- Thank you for contributing to Servo! Please replace each `[...
diff --git a/script/dom/bindings/conversions.rs b/script/dom/bindings/conversions.rs index e1869863c..3c8aad319 100644 --- a/script/dom/bindings/conversions.rs +++ b/script/dom/bindings/conversions.rs @@ -580,23 +580,3 @@ pub unsafe fn is_array_like(cx: *mut JSContext, value: HandleValue) -> bool { assert!(JS_IsAr...
5
54
42
ed7c03477e7e1c17af605c33d2b4c19f9da1ae7a
Josh Matthews
2017-02-10T21:57:35
servo: Merge #15352 - Rewrite WebGLRenderingContext to use typed array APIs (from jdm:Rewrite-WebGLRenderingContext-to-use-typed-array-APIs); r=jdm Rewrite WebGLRenderingContext to use typed array APIs. Based on #15267. --- - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report an...
diff --git a/script/dom/bindings/conversions.rs b/script/dom/bindings/conversions.rs index f381d9c85..e1869863c 100644 --- a/script/dom/bindings/conversions.rs +++ b/script/dom/bindings/conversions.rs @@ -47,7 +47,7 @@ use js::glue::{GetProxyPrivate, IsWrapper}; use js::glue::{RUST_JSID_IS_INT, RUST_JSID_TO_INT}; use...
2
68
113
946856934be46093afea3e036a503258a479428e
hiei23
2017-02-10T19:28:28
servo: Merge #15466 - -added parsing and serialization for grid-{row,column}-gap (from hiei23:master); r=Wafflespeanut <!-- Please describe your changes on the following line: --> I have added an implementation for grid-{row,column}-gap based on the predefined type property suggestion in the description --- <!-- Than...
diff --git a/style/properties/longhand/position.mako.rs b/style/properties/longhand/position.mako.rs index 9c8013589..e4ed6a6ef 100644 --- a/style/properties/longhand/position.mako.rs +++ b/style/properties/longhand/position.mako.rs @@ -229,3 +229,17 @@ ${helpers.predefined_type("object-position", ...
1
14
0
ac9d2cf628dce7a2e64e4b77a480373cb146ebca
Boris Chiou
2017-02-10T09:34:07
servo: Merge #15493 - stylo: Add Servo_AnimationValue_Serialize (from BorisChiou:animation/get_property); r=Manishearth This is the servo-side change for [bug 1337313](https://bugzilla.mozilla.org/show_bug.cgi?id=1337313). @Manishearth had already reviewed it there. Please merge this patch until the gecko-side changes...
diff --git a/style/gecko_bindings/bindings.rs b/style/gecko_bindings/bindings.rs index 11bc35897..eb691fafe 100644 --- a/style/gecko_bindings/bindings.rs +++ b/style/gecko_bindings/bindings.rs @@ -1303,13 +1303,18 @@ extern "C" { -> RawServoDeclarationBlockStrong; } extern "C" { - pub fn Servo_AnimationValue...
1
9
4
ce445d8b769ff23f75f4e8bd4e5b6f18bcbae300
Cameron McCormack
2017-02-10T03:27:33
servo: Merge #15481 - stylo: Note need to flush styles when we set dirty descendant bits (from heycam:flush-styles); r=bholley <!-- Please describe your changes on the following line: --> This is the Servo-side part of https://bugzilla.mozilla.org/show_bug.cgi?id=1331294, already reviewed by @bholley. --- <!-- Thank...
diff --git a/style/gecko_bindings/bindings.rs b/style/gecko_bindings/bindings.rs index 579e82f0d..11bc35897 100644 --- a/style/gecko_bindings/bindings.rs +++ b/style/gecko_bindings/bindings.rs @@ -633,6 +633,10 @@ extern "C" { extern "C" { pub fn Gecko_UnsetNodeFlags(node: RawGeckoNodeBorrowed, flags: u32); } +e...
1
5
5
5de40fd229c4198d6be92eb57c5f39a4495aad23
Manish Goregaokar
2017-02-09T23:51:29
servo: Merge #15463 - stylo: Implement a bunch of properties (from Manishearth:buncha-props); r=mbrubeck r? @mbrubeck or @heycam Source-Repo: https://github.com/servo/servo Source-Revision: e985ad54229083e5e76b2862cec57ce4fef4433c
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index 1285d5cef..4dc72f203 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -1176,10 +1176,11 @@ impl FragmentDisplayListBuilding for Fragment { fn adjust_clip_for_style(&self, ...
20
451
246
9aff0be710574f0fce9340687a641387b2552d71
Julien Levesy
2017-02-09T22:55:14
servo: Merge #15454 - use `::parse_non_negative instead` of `::parse` for background_size property parsing (from jlevesy:bg-size-reject-negative-values); r=SimonSapin Use `::parse_non_negative` instead of `::parse` for background_size property parsing --- <!-- Thank you for contributing to Servo! Please replace each...
diff --git a/style/properties/longhand/background.mako.rs b/style/properties/longhand/background.mako.rs index 57c193bed..b4b0686e5 100644 --- a/style/properties/longhand/background.mako.rs +++ b/style/properties/longhand/background.mako.rs @@ -373,7 +373,7 @@ ${helpers.single_keyword("background-origin", }) ...
1
3
3
54b6bd5bda475cfd46ad7c0782c8deb6ea9ea1af
Pu Xingyu
2017-02-09T14:21:29
servo: Merge #15469 - layout: Fix integer overflow when computing size of replace elements (from stshine:no-integer-overflow); r=emilio <!-- Please describe your changes on the following line: --> When calculating size of replaced element that has intrinsic aspect ratio, we need to multiply the ratio if one of the di...
diff --git a/layout/fragment.rs b/layout/fragment.rs index 30178d50a..8f17894bc 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -1051,7 +1051,8 @@ impl Fragment { // Note: We can not precompute the ratio and store it as a float, because // doing so may result one pi...
1
8
5
40dcfa0051e297a0e036ef1763ee96850936a1cd
Emilio Cobos Álvarez
2017-02-09T12:20:34
servo: Merge #15459 - style: Ensure that precomputed pseudo-element declarations are correctly sorted (from emilio:ua-rules); r=SimonSapin Fixes https://bugzilla.mozilla.org/show_bug.cgi?id=1337657 r? @SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 6d1836e32bfd1337a3acdf91abb409a399c9f5e3
diff --git a/style/stylist.rs b/style/stylist.rs index 279e8f0ac..d1a47011d 100644 --- a/style/stylist.rs +++ b/style/stylist.rs @@ -211,14 +211,10 @@ impl Stylist { self.state_deps.len()); SelectorImpl::each_precomputed_pseudo_element(|pseudo| { - // TODO: Consider not doing this ...
1
21
17
1fa556e56af2fe17f8d5051d5d44932dcf62f5b2
Alberto Leal
2017-02-09T05:10:57
servo: Merge #15357 - Refactor outline-style to accept "auto" value in addition to border-style values (from dashed:gh-15207); r=Wafflespeanut,emilio Fixes https://github.com/servo/servo/issues/15207 Refactored as per https://github.com/servo/servo/issues/15207#issuecomment-275171590 . <!-- Please describe your chan...
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index 33ec9dece..1285d5cef 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -1072,15 +1072,18 @@ impl FragmentDisplayListBuilding for Fragment { style: &Se...
7
84
21
5622f731f3763642d064309c221a9f7927e21867
Boris Chiou
2017-02-09T02:39:45
servo: Merge #15442 - Retrieve the opacity and the transform list from RawServoAnimationValue (from BorisChiou:animation/opacity_transform); r=Manishearth These are the servo-side changes for [bug 1335942](https://bugzilla.mozilla.org/show_bug.cgi?id=1335942). @Manishearth had already reviewed them there. Please merge...
diff --git a/style/build_gecko.rs b/style/build_gecko.rs index f9e8da7c4..2714a54bf 100644 --- a/style/build_gecko.rs +++ b/style/build_gecko.rs @@ -505,6 +505,7 @@ mod bindings { "RawServoDeclarationBlock", "RawGeckoPresContext", "RawGeckoPresContextOwned", + "RefPtr",...
5
44
18
435b756ce58aaf361a340c4f736f9404c9a9e3a7
Atheed Thameem
2017-02-08T19:04:29
servo: Merge #15360 - Ensured all font-weight keywords are preserved until computed-value time (from atheed:font-weight-keyword); r=emilio Fixed the serialization of `font-weight` keywords (i.e. `bold`, `normal`, etc.) to ensure that Servo preserves the keyword until computed-value time (just as other major browsers d...
diff --git a/style/properties/longhand/font.mako.rs b/style/properties/longhand/font.mako.rs index b8d682ffc..42387415c 100644 --- a/style/properties/longhand/font.mako.rs +++ b/style/properties/longhand/font.mako.rs @@ -230,6 +230,8 @@ ${helpers.single_keyword("font-variant-caps", #[derive(Debug, Clone, PartialEq...
1
10
2
c262ad8c0fa5ecdc3c873c2981160e461fa9f21f
Xidorn Quan
2017-02-08T06:48:48
servo: Merge #15418 - Not blockify flow-root (from upsuper:blockify-flow-root); r=emilio Source-Repo: https://github.com/servo/servo Source-Revision: 8ca1383c419dec9f5bcd23bb0caf87cb4774a7e6
diff --git a/style/properties/properties.mako.rs b/style/properties/properties.mako.rs index 1f3174391..2db648373 100644 --- a/style/properties/properties.mako.rs +++ b/style/properties/properties.mako.rs @@ -1969,7 +1969,7 @@ pub fn apply_declarations<'a, F, I>(viewport_size: Size2D<Au>, // Values that ar...
1
1
1
12e6e4d57876ae413b8e10899613f1b2e62b664a
Anthony Ramine
2017-02-08T04:36:59
servo: Merge #15440 - Update selectors to 0.17 (from KiChjang:selectors); r=KiChjang Closes #15434. Source-Repo: https://github.com/servo/servo Source-Revision: f7e75fd0012b9a063718f56e5aab093dde40d42f
diff --git a/layout/Cargo.toml b/layout/Cargo.toml index 5642459c9..359d8619c 100644 --- a/layout/Cargo.toml +++ b/layout/Cargo.toml @@ -34,7 +34,7 @@ range = {path = "../range"} rayon = "0.6" script_layout_interface = {path = "../script_layout_interface"} script_traits = {path = "../script_traits"} -selectors = "0....
10
16
16
a019ea3be123d13f82ce75b9f43674c68fae719a
z1mvader
2017-02-07T23:42:40
servo: Merge #15429 - removed invalid FIXME (from z1mvader: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 build -d` does no...
diff --git a/style/properties/shorthand/box.mako.rs b/style/properties/shorthand/box.mako.rs index 1bcfd5caa..207aefc6c 100644 --- a/style/properties/shorthand/box.mako.rs +++ b/style/properties/shorthand/box.mako.rs @@ -311,8 +311,6 @@ macro_rules! try_parse_one { try!(self.animation_duration.to_css(dest)...
1
0
2
e5e8f839f3d4cfaa784d694501027768e71df51b
Matt Brubeck
2017-02-07T22:18:50
servo: Merge #15433 - Update a few dependencies (from mbrubeck:always-be-updating); r=KiChjang This adds two new crates to the dependency graph: [error-chain] and [metadeps], which are both dual-licensed (MIT/Apache-2.0). [error-chain]: https://crates.io/crates/error-chain [metadeps]: https://crates.io/crates/metadep...
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index 5a987a355..34ecfc274 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -39,7 +39,7 @@ style = {path = "../style"} style_traits = {path = "../style_traits"} time = "0.1.12" unicode-script = {version = "0.1", features = ["harfbuzz"]} -xi-unicode = "0.0.1" +xi-unicod...
2
2
2
dbaee2a93161c04eac19e3d1e591ddf8806c4cf7
Ms2ger
2017-02-07T15:16:22
servo: Merge #15424 - Fix some build warnings (from servo:warnings); r=mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: c48a326fb37976ec9e808825c9641602bccefa56
diff --git a/style/build_gecko.rs b/style/build_gecko.rs index d947323ce..f9e8da7c4 100644 --- a/style/build_gecko.rs +++ b/style/build_gecko.rs @@ -4,15 +4,10 @@ mod common { use std::env; - use std::path::{Path, PathBuf}; - use std::sync::Mutex; - use std::time::SystemTime; + use std::path::PathBu...
1
10
11
8ee43f4d67328d191f9da59a138ad3b6b1b0c07d
Glenn Watson
2017-02-07T07:19:54
servo: Merge #15419 - Update WR (from glennw:update-wr-lots-of-stuff); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: bf814aa5badfde78b5b530d17fd821a321c40b1a
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index d0769c8a0..aa8f7d729 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -361,11 +361,6 @@ impl webrender_traits::RenderNotifier for RenderNotifier { fn new_scroll_frame_ready(&mut self, composite_needed: bool) { ...
5
16
15
82eb4da1b609398af56e2ef6977dc1d2a72a9ffd
Sam
2017-02-07T03:29:31
servo: Merge #15237 - Allow negative values for letter-spacing and word-spacing. Inline Le… (from samuknet:negative-letter-spacing-word-spacing); r=emilio <!-- Please describe your changes on the following line: --> Allow negative values when parsing `letter-spacing` and `word-spacing`. Inline `parse_non_negative` i...
diff --git a/style/properties/longhand/inherited_text.mako.rs b/style/properties/longhand/inherited_text.mako.rs index 741806e9e..03b5eb2e3 100644 --- a/style/properties/longhand/inherited_text.mako.rs +++ b/style/properties/longhand/inherited_text.mako.rs @@ -335,11 +335,11 @@ ${helpers.single_keyword("text-align-last...
2
5
4
43d762f7547cf2af25ae1659a684928e4ad5bfe3
Xidorn Quan
2017-02-07T01:18:22
servo: Merge #15414 - Use -stdlib=libc++ on mac for stylo bindgen (from upsuper:macos-libcxx); r=emilio r? @emilio Source-Repo: https://github.com/servo/servo Source-Revision: a1d19ca5f831536ee60bb4fa85a9d3ea53c2170e
diff --git a/style/build_gecko.rs b/style/build_gecko.rs index fb464c1f7..d947323ce 100644 --- a/style/build_gecko.rs +++ b/style/build_gecko.rs @@ -138,7 +138,12 @@ mod bindings { if cfg!(target_os = "linux") { builder = builder.clang_arg("-DOS_LINUX=1"); } else if cfg!(targe...
1
6
1
610cd1cc0a5db923e841821e28214223f8c5d3c9
Tetsuharu OHZEKI
2017-02-06T18:43:07
servo: Merge #15406 - Use 'alloc' gate only for platforms which use freetype in gfx (from saneyuki:rm-unused-alloc-gfx); 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 ...
diff --git a/gfx/lib.rs b/gfx/lib.rs index fb94e7b77..3ada12238 100644 --- a/gfx/lib.rs +++ b/gfx/lib.rs @@ -6,7 +6,7 @@ #![feature(cfg_target_feature)] #![cfg_attr(any(target_os = "linux", target_os = "android"), feature(heap_api))] -#![feature(alloc)] +#![cfg_attr(any(target_os = "linux", target_os = "android"), ...
2
5
4
2ce1d474905102d553186e1dac49064483a19e78
Ms2ger
2017-02-06T09:46:50
servo: Merge #15403 - Remove a gate for the stabilized more_struct_aliases feature (from servo:warnings); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: fb4f421c8b9cbf80a86c9c5eb88395d7008b27a1
diff --git a/script/lib.rs b/script/lib.rs index 9cc8f84bb..7126d5365 100644 --- a/script/lib.rs +++ b/script/lib.rs @@ -7,7 +7,6 @@ #![feature(const_fn)] #![feature(core_intrinsics)] #![feature(field_init_shorthand)] -#![feature(more_struct_aliases)] #![feature(mpsc_select)] #![feature(nonzero)] #![feature(on_un...
1
0
1
7621a8c57fecfe28ec87e0da1709f619cc912bcd
UK992
2017-02-06T01:33:23
servo: Merge #15393 - Windows: Instructions update, removed freetype and silent some warning (from UK992:win32); r=metajack i made some changes to Windows instruction, more unified. Also removed freetype dependencies on Windows, by forcing to build harfbuzz from source, which is also dependent on freetype. cc @larsbe...
diff --git a/constellation/pipeline.rs b/constellation/pipeline.rs index e8a6ab3c0..0f5ee424d 100644 --- a/constellation/pipeline.rs +++ b/constellation/pipeline.rs @@ -28,6 +28,7 @@ use servo_config::opts::{self, Opts}; use servo_config::prefs::{PREFS, Pref}; use servo_url::ServoUrl; use std::collections::HashMap; ...
2
2
1
f032a0462cd01a6d4e6cacb551f4bbf4af38452b
Xidorn Quan
2017-02-05T23:30:09
servo: Merge #15298 - Fix two issues of parsing and serialization of mask shorthand (from upsuper:mask-shorthand); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 5f0c294caf85e67ff5b04f28b4a4d54930d7d952
diff --git a/style/properties/shorthand/mask.mako.rs b/style/properties/shorthand/mask.mako.rs index f71652fac..0d07e108d 100644 --- a/style/properties/shorthand/mask.mako.rs +++ b/style/properties/shorthand/mask.mako.rs @@ -49,10 +49,6 @@ if let Ok(value) = input.try(|input| mask_image::single_val...
1
5
5
e8ca4bdb0e5bd5db86bcd1526c64a7b55448d1a6
Simon Sapin
2017-02-05T15:01:32
servo: Merge #15351 - Upgrade to rustc 1.17.0-nightly (ea7a6486a 2017-02-04) (from servo:rustup); 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: --> -...
diff --git a/plugins/lints/inheritance_integrity.rs b/plugins/lints/inheritance_integrity.rs index 0c70a949c..28dea9aeb 100644 --- a/plugins/lints/inheritance_integrity.rs +++ b/plugins/lints/inheritance_integrity.rs @@ -27,7 +27,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for InheritancePass { ...
3
15
13
ba069435482fe7c76c7fc82511fbd5fea1cf0dd6
mrmiywj
2017-02-04T20:17:44
servo: Merge #15383 - add support for mask_position_parse/serial (from mrmiywj:mask_position_parse/serial); r=canaltinova <!-- 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 appro...
diff --git a/style/properties/gecko.mako.rs b/style/properties/gecko.mako.rs index 7524d7fa6..40ee0b2b2 100644 --- a/style/properties/gecko.mako.rs +++ b/style/properties/gecko.mako.rs @@ -1683,72 +1683,56 @@ fn static_assert() { } </%self:simple_image_array_property> - % if shorthand != "background"...
3
177
154
2c977b9a834885fb3c2d1f4ff710f1f9f762c18b
Mátyás Mustoha
2017-02-04T15:10:00
servo: Merge #15381 - Use SIMD in `gfx` when possible (from servo:simd); r=larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: 725b805c45eedf96cd3b0b0ea10275470acf83bf
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index 20f9d3f6f..0483e9f99 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -56,8 +56,8 @@ core-text = "2.0" freetype = "0.2" servo-fontconfig = "0.2.1" -[target.'cfg(any(target_arch = "x86_64", target_arch = "aarch64"))'.dependencies] -simd = {git = "https://github.c...
3
11
10
f7cef9280afe78e453c96df93583f7fbe1149afe
Manish Goregaokar
2017-02-04T01:36:04
servo: Merge #15331 - Basic handling framework for presentation attributes in Stylo, with handling for font-size and color (from Manishearth:stylo-presattr); r=emilio,bz https://bugzilla.mozilla.org/show_bug.cgi?id=1330041 r=emilio,bz Source-Repo: https://github.com/servo/servo Source-Revision: 57fb07e9c041750a82852...
diff --git a/script/dom/htmlfontelement.rs b/script/dom/htmlfontelement.rs index 0eca01a47..80a026659 100644 --- a/script/dom/htmlfontelement.rs +++ b/script/dom/htmlfontelement.rs @@ -123,7 +123,7 @@ impl HTMLFontElementLayoutHelpers for LayoutJS<HTMLFontElement> { } /// https://html.spec.whatwg.org/multipage/#rul...
5
70
23
b6e5eb263c8bcc68518e5c2315647d51d077ce8c
Arseniy Ivanov
2017-02-03T21:10:50
servo: Merge #15359 - Event handlers forwarded to a window check for window presence (from freeatnet:15332-macroed-event-handlers-check-for-window); r=KiChjang <!-- Please describe your changes on the following line: --> This change adds a check for the presence of a window in event handlers of `body` and `frameset` t...
diff --git a/script/dom/document.rs b/script/dom/document.rs index 722e0283d..2ac8f2345 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -367,6 +367,9 @@ impl Document { self.loader.borrow_mut() } + #[inline] + pub fn has_browsing_context(&self) -> bool { self.has_browsing_conte...
4
64
13
7381e0f42c4c02e8f82c4ad415b9221ad8cd1004
Xidorn Quan
2017-02-03T19:48:28
servo: Merge #15338 - Parse value entirely for setting property via CSSOM (from upsuper:parse_one_decl); r=emilio Fixes #15037 Source-Repo: https://github.com/servo/servo Source-Revision: 812a3a1c4663738511f55fa84c7328231df2d399
diff --git a/style/properties/declaration_block.rs b/style/properties/declaration_block.rs index 0128338dc..e4b5b6be5 100644 --- a/style/properties/declaration_block.rs +++ b/style/properties/declaration_block.rs @@ -520,11 +520,13 @@ pub fn parse_one_declaration(id: PropertyId, extra_data...
1
7
5
47f6c926c1bedd9fb2d8f69fbbfaf96c945f1345
UK992
2017-02-03T17:59:11
servo: Merge #15319 - Fix hardcoded path to link.exe (from UK992:win32); r=emilio,larsbergstrom Fixes https://github.com/servo/servo/issues/15228 Source-Repo: https://github.com/servo/servo Source-Revision: 7753448cfc760a90eb184d0bfe83730fd2853f4b
diff --git a/script/build.rs b/script/build.rs index 189ce765e..040658b66 100644 --- a/script/build.rs +++ b/script/build.rs @@ -37,7 +37,9 @@ fn main() { // for reasons that I don't understand. If we just give // link.exe, it tries to use script-*/out/link.exe, which of // course does not e...
1
3
1
0632cdbfbfff767c812a4ae6a43b8b2546c93115
Josh Matthews
2017-02-03T15:53:17
servo: Merge #15189 - Implement microtask checkpoints (from jdm:microtasks); r=nox This generalizes the work previously done for Promise job callbacks. There is now a microtask queue that correctly processes all queued microtasks after each turn of the event loop, as well as after a scripted callback finishes executin...
diff --git a/script/dom/bindings/settings_stack.rs b/script/dom/bindings/settings_stack.rs index 10afc833c..dec639249 100644 --- a/script/dom/bindings/settings_stack.rs +++ b/script/dom/bindings/settings_stack.rs @@ -11,6 +11,7 @@ use js::jsapi::JSTracer; use js::jsapi::UnhideScriptedCaller; use js::rust::Runtime; u...
11
335
288
1f810f5de1de7f0deabcdfb0ada10a6eef99836e
Eric Anholt
2017-02-03T14:59:11
servo: Merge #15122 - webgl: premultiplication, y flipping, and format conversion (from anholt:webgl-premultiply); r=emilio <!-- Please describe your changes on the following line: --> This series implements a bunch of the texture unpack path features for WebGL. There are known issues with big-endian systems noted in...
diff --git a/canvas_traits/lib.rs b/canvas_traits/lib.rs index 6b66f6598..e9f73a83a 100644 --- a/canvas_traits/lib.rs +++ b/canvas_traits/lib.rs @@ -417,6 +417,10 @@ pub fn byte_swap(data: &mut [u8]) { } } +pub fn multiply_u8_pixel(a: u8, b: u8) -> u8 { + return (a as u32 * b as u32 / 255) as u8; +} + pub f...
4
234
31
b6185e513d9c913fa28beb96f5b2df5a2d2dfd4b
Simon Martin
2017-02-03T14:04:40
servo: Merge #15285 - Issue #15017: Properly handle and report network errors on page loads (from simartin:issue_15017); r=nox <!-- Please describe your changes on the following line: --> This patch fixes how network errors are handled during page loads: they would not be reported and cause crashes before, and do not ...
diff --git a/script/dom/servoparser/mod.rs b/script/dom/servoparser/mod.rs index 0d8e02d27..7117f7d45 100644 --- a/script/dom/servoparser/mod.rs +++ b/script/dom/servoparser/mod.rs @@ -433,6 +433,7 @@ impl FetchResponseListener for ParserContext { fn process_response(&mut self, meta_result: Result<FetchMetadata,...
1
17
10
d1269a2f04f7b6795dce887714bcb3f4d0b6f8b5
Simon Sapin
2017-02-03T13:09:30
servo: Merge #15356 - Add support for more @font-face descriptors (from servo:font-face-descriptors); r=Manishearth <!-- Please describe your changes on the following line: --> Part of https://bugzilla.mozilla.org/show_bug.cgi?id=1290237. I’ll add conversions to `nsCSSValue` separately because that requires new C++ f...
diff --git a/gfx/font_cache_thread.rs b/gfx/font_cache_thread.rs index a365ef47c..ee6465913 100644 --- a/gfx/font_cache_thread.rs +++ b/gfx/font_cache_thread.rs @@ -25,7 +25,7 @@ use std::sync::{Arc, Mutex}; use std::thread; use std::u32; use style::font_face::{EffectiveSources, Source}; -use style::properties::long...
9
373
165
34f4fbcc4d5b1dec4154d9dd3cb7e592d25d8c6a
Zakor Gyula
2017-02-03T12:15:34
servo: Merge #15366 - Remove the 29 byte limitation, when requesting bluetooth devices (from szeged:name-filter-length); r=nox <!-- Please describe your changes on the following line: --> Remove the 29 byte limit when calling `requestDevice` using a `name` or `namePrefix`. The following discussion is about this by th...
diff --git a/script/dom/bluetooth.rs b/script/dom/bluetooth.rs index ce4e15103..82d455e5f 100644 --- a/script/dom/bluetooth.rs +++ b/script/dom/bluetooth.rs @@ -13,7 +13,7 @@ use dom::bindings::codegen::Bindings::BluetoothBinding::{self, BluetoothDataFilt use dom::bindings::codegen::Bindings::BluetoothBinding::{Blueto...
1
1
12
c78e1f065396ef0211e80a7e4209f70bb64e2a71
L. David Baron
2017-02-03T00:43:26
servo: Merge #15305 - Make additional properties be reset by the 'font' shorthand (from dbaron:reset-more-for-font); r=Manishearth A number of properties are supposed to be reset to initial values by the 'font' shorthand. This does so for all such properties that Servo currently supports (conditional on when they're ...
diff --git a/style/properties/shorthand/font.mako.rs b/style/properties/shorthand/font.mako.rs index f058c56a7..545f8d935 100644 --- a/style/properties/shorthand/font.mako.rs +++ b/style/properties/shorthand/font.mako.rs @@ -5,7 +5,12 @@ <%namespace name="helpers" file="/helpers.mako.rs" /> <%helpers:shorthand name...
1
16
2
17603da224ff9a6531ac38b797c59eadc46ee063
Matt Brubeck
2017-02-02T19:44:01
servo: Merge #15355 - Update clap, clippy, deflate, flate2, open, unicode-segmentation, owning_ref, parking_lot, phf, quote, walkdir (from mbrubeck:always-be-updating); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 6553a5c1e088c0a13581834af5e8ab150af87fee
diff --git a/plugins/Cargo.toml b/plugins/Cargo.toml index 58d86da0f..9370899a8 100644 --- a/plugins/Cargo.toml +++ b/plugins/Cargo.toml @@ -11,7 +11,7 @@ path = "lib.rs" plugin = true [dependencies.clippy_lints] -version = "0.0.107" +version = "0.0.112" optional = true [features] diff --git a/style/Cargo.toml ...
2
3
3
23f08593ecfe885367a33b8934222d4f5d0563fb
Emilio Cobos Álvarez
2017-02-02T11:00:22
servo: Merge #15317 - style: Avoid selector-matching when only the style attribute is changed (from emilio:style-attr-restyle); r=bholley r? @bholley Source-Repo: https://github.com/servo/servo Source-Revision: fb7f65fc5711f41b991b72ed97d7286dd16301ed
diff --git a/style/data.rs b/style/data.rs index 0c097b103..c2807a203 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, RestyleHint}; +use restyl...
5
337
94
f5f3662006a691768a0ba41776a055c39ef185c0
Xidorn Quan
2017-02-02T09:10:21
servo: Merge #15340 - Reject negative value for border-image-width (from upsuper:border-image-width); r=Wafflespeanut Source-Repo: https://github.com/servo/servo Source-Revision: 8aa23b46db300210b67c16190c794bc9ee216f3f
diff --git a/style/properties/longhand/border.mako.rs b/style/properties/longhand/border.mako.rs index d0d02bc8a..860f8e165 100644 --- a/style/properties/longhand/border.mako.rs +++ b/style/properties/longhand/border.mako.rs @@ -521,12 +521,12 @@ ${helpers.single_keyword("-moz-float-edge", "content-box margin-box", ...
1
2
2
458aa09570a61a27744f8865d0a3e99109a4c0c5
Xidorn Quan
2017-02-02T07:44:51
servo: Merge #15336 - Ignore initial values in text-decoration (from upsuper:text-decoration); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: f3d22ee1a8770e38a44404db6106aa3ce1bc1c4a
diff --git a/style/properties/shorthand/text.mako.rs b/style/properties/shorthand/text.mako.rs index 24813d34d..2be6bd808 100644 --- a/style/properties/shorthand/text.mako.rs +++ b/style/properties/shorthand/text.mako.rs @@ -60,13 +60,17 @@ }; if let DeclaredValue::Value(ref style) = *self.t...
1
8
4
07e51b8964abd485b5ca62265e643c8df031140f
Vee Satayamas
2017-02-01T20:08:44
servo: Merge #13506 - A test case change is added to #13442: Fix #12193 Servo displays upper level Thai character in wrong place (from veer66:master); r=mbrubeck A test case change is added to #13442: Fix #12193 Servo displays upper level Thai character in wrong place. <!-- Please describe your changes on the follo...
diff --git a/gfx/text/glyph.rs b/gfx/text/glyph.rs index 73a66ff19..ea5a00995 100644 --- a/gfx/text/glyph.rs +++ b/gfx/text/glyph.rs @@ -254,10 +254,10 @@ impl<'a> DetailedGlyphStore { let i = self.detail_lookup.binary_search(&key) .expect("Invalid index not found in detailed glyph lookup table!...
1
6
6
26f647f6e8d033be64b35115b67c1da5f009ff32
Manish Goregaokar
2017-02-01T19:17:13
servo: Merge #15323 - Ensure that gradients have at least 2 stops (from Manishearth:gradient-stop); r=heycam fixes https://bugzilla.mozilla.org/show_bug.cgi?id=1335656 r? @heycam Source-Repo: https://github.com/servo/servo Source-Revision: b7887a1980332d7a111419257404bf08921e92f7
diff --git a/style/values/specified/image.rs b/style/values/specified/image.rs index 3709ad206..f63c1ae0e 100644 --- a/style/values/specified/image.rs +++ b/style/values/specified/image.rs @@ -141,6 +141,11 @@ impl Gradient { _ => { return Err(()); } }; + // https://drafts.csswg.org/css-i...
1
5
0
9f65b8235b47b8f722076fbfe948174d669dbbf2
Matt Brubeck
2017-02-01T18:20:29
servo: Merge #15330 - Update bincode, byteorder, libc (from mbrubeck:always-be-updating); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 8066315855658ec49f6a35199413d4cab2c75bda
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index f71d4d947..20f9d3f6f 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -47,7 +47,7 @@ default-features = false features = ["serde_derive", "ipc"] [target.'cfg(target_os = "macos")'.dependencies] -byteorder = "0.5" +byteorder = "1.0" core-foundation = "0.2" core...
1
1
1
b35af587a8acda20176a39b492ccd88cd2fe2d68
Manish Goregaokar
2017-02-01T01:58:18
servo: Merge #15321 - Preallocate in deduplicate_property_declarations (from Manishearth:preallocate); r=bholley r? @bholley Source-Repo: https://github.com/servo/servo Source-Revision: da89099e26955cf5ba44031a0a536e3af4e6a0d5
diff --git a/style/properties/properties.mako.rs b/style/properties/properties.mako.rs index 93a0d6533..1f3174391 100644 --- a/style/properties/properties.mako.rs +++ b/style/properties/properties.mako.rs @@ -329,7 +329,7 @@ mod property_bit_field { /// /// The input and output are in source order fn deduplicate_pro...
1
1
1
b97550c40f803d2eca665dd4324752cdb4a28260
Hiroyuki Ikezoe
2017-01-31T22:42:06
servo: Merge #15299 - Create KeyframeAnimation for empty keyframe rules (from hiikezoe:empty-keyframe); r=emilio,pcwalton <!-- Please describe your changes on the following line: --> We should create KeyframeAnimation even if css keyframe rule is empty because we should fire css animation events for such CSS animation...
diff --git a/style/keyframes.rs b/style/keyframes.rs index 0eb0662c1..07de56158 100644 --- a/style/keyframes.rs +++ b/style/keyframes.rs @@ -254,7 +254,9 @@ fn get_animated_properties(keyframe: &Keyframe) -> Vec<TransitionProperty> { let mut ret = vec![]; // NB: declarations are already deduplicated, so we do...
2
29
32
f088a6c496b43e8d075022101934780816b15e99
Glenn Watson
2017-01-31T19:49:18
servo: Merge #15111 - Update WR (radial gradients, generate_frame API, mac subpixel improvements, ANGLE shader support) (from glennw:wr-update-generate); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 8421ae60774922e6b9ab9b1b562efce22916b200
diff --git a/canvas/canvas_paint_thread.rs b/canvas/canvas_paint_thread.rs index 447d60a28..437785557 100644 --- a/canvas/canvas_paint_thread.rs +++ b/canvas/canvas_paint_thread.rs @@ -559,9 +559,13 @@ impl<'a> CanvasPaintThread<'a> { self.drawtarget.snapshot().get_data_surface().with_data(|element| { ...
8
64
19
8e18a0112627bf12c8e090ceaaba861425346fce
Emilio Cobos Álvarez
2017-01-30T22:54:26
servo: Merge #15288 - Refactor more stuff in preparation for special handling for restyling using the style attribute (from emilio:style-attr-restyle); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 166b30484061ae7c58f721ac9082d13c83834fae
diff --git a/script/dom/attr.rs b/script/dom/attr.rs index c44cfd436..29c3279ad 100644 --- a/script/dom/attr.rs +++ b/script/dom/attr.rs @@ -170,7 +170,7 @@ impl AttrMethods for Attr { impl Attr { pub fn set_value(&self, mut value: AttrValue, owner: &Element) { assert!(Some(owner) == self.owner().r()); -...
11
267
167