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 |
|---|---|---|---|---|---|---|---|
f941fd9bc5b6cc9367e1bdcab4543bd6fef6a8ee | Matt Brubeck | 2015-09-30T23:44:02 | servo: Merge #7799 - Misc. code cleanup in gfx::text::glyph (from mbrubeck:glyph-cleanup); r=pcwalton
Source-Repo: https://github.com/servo/servo
Source-Revision: ac448cacbaa194ba7a41abffeac83e95217d5d81 | diff --git a/gfx/paint_context.rs b/gfx/paint_context.rs
index 8ac757330..d73d9013a 100644
--- a/gfx/paint_context.rs
+++ b/gfx/paint_context.rs
@@ -1792,7 +1792,7 @@ impl ScaledFontExtensionMethods for ScaledFont {
azglyphs.reserve(range.length().to_usize());
for slice in run.natural_word_slices_in... | 3 | 37 | 66 |
4bb9310d548c80443babd6b48b535ca202669ce8 | Matt Brubeck | 2015-09-30T23:08:18 | servo: Merge #7805 - Use same default window size in headless and non-headless compositor (from mbrubeck:headless-dpr); r=mrobinson
Attempts to fix #7730. r? @mrobinson
Source-Repo: https://github.com/servo/servo
Source-Revision: 7be4fdb57745a3cc42da6650b8b7b234bf8c93b6 | diff --git a/compositing/headless.rs b/compositing/headless.rs
index 92b445a44..3a0ab67ea 100644
--- a/compositing/headless.rs
+++ b/compositing/headless.rs
@@ -11,6 +11,7 @@ use msg::constellation_msg::Msg as ConstellationMsg;
use msg::constellation_msg::{ConstellationChan, WindowSizeData};
use profile_traits::mem;
... | 1 | 5 | 3 |
a84847cf295b01247a67c9ece28cd26ab48f8ea0 | Matt Brubeck | 2015-09-30T17:49:52 | servo: Merge #7794 - Dirty text nodes when their content changes (from mbrubeck:setdata); r=pcwalton
Fixes #7793. r? @pcwalton
Source-Repo: https://github.com/servo/servo
Source-Revision: fb6d0946cb3bac713bc20794f17a40fa7a12bc00 | diff --git a/script/dom/characterdata.rs b/script/dom/characterdata.rs
index 2983ca1ea..58f71d40d 100644
--- a/script/dom/characterdata.rs
+++ b/script/dom/characterdata.rs
@@ -15,7 +15,7 @@ use dom::bindings::js::{LayoutJS, Root};
use dom::document::Document;
use dom::element::Element;
use dom::eventtarget::{EventT... | 1 | 11 | 2 |
9b9e39eb01075252ef364730cbe0df58fc242881 | Matt Brubeck | 2015-09-30T17:03:01 | servo: Merge #7800 - Remove unused import in net_traits (from mbrubeck:unused); r=nox
Source-Repo: https://github.com/servo/servo
Source-Revision: 3e377bb24e53fde8f7a786cb73caf3aefdcd3699 | diff --git a/net_traits/lib.rs b/net_traits/lib.rs
index 754e6cc35..3aa81ddbd 100644
--- a/net_traits/lib.rs
+++ b/net_traits/lib.rs
@@ -35,7 +35,6 @@ use ipc_channel::ipc::{self, IpcReceiver, IpcSender};
use msg::constellation_msg::{PipelineId};
use regex::Regex;
use serde::{Deserializer, Serializer};
-use std::syn... | 1 | 0 | 1 |
41cad3c2d61116b4005b5dd8d102c301109452c4 | Ms2ger | 2015-09-30T14:14:05 | servo: Merge #7798 - Remove dead code from net_traits (from Ms2ger:dead); r=jdm
It was added in commit ecf02a3656d60d4197e7cfc53beaedbc5e1019c0.
Source-Repo: https://github.com/servo/servo
Source-Revision: 61be58a87ff78be6278173d65e8933413041bd00 | diff --git a/net_traits/lib.rs b/net_traits/lib.rs
index 86c7c85b2..754e6cc35 100644
--- a/net_traits/lib.rs
+++ b/net_traits/lib.rs
@@ -5,7 +5,6 @@
#![feature(box_syntax)]
#![feature(custom_attribute)]
#![feature(custom_derive)]
-#![feature(box_raw)]
#![feature(plugin)]
#![feature(slice_patterns)]
#![feature(ste... | 1 | 0 | 6 |
577e578b7479b79be28776ed88aac668d2a01f44 | Martin Robinson | 2015-09-30T09:04:16 | servo: Merge #7751 - Make DisplayList hit testing a method on DisplayList (from mrobinson:refactor-hit-testing); r=pcwalton
This will allow us to hit test into DisplayLists that are not directly
contained in StackingContexts, but instead are children of PaintLayers.
It also makes things slightly simpler.
Source-Repo:... | diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs
index 2df3a7bf8..7619f9d5a 100644
--- a/gfx/display_list/mod.rs
+++ b/gfx/display_list/mod.rs
@@ -323,6 +323,121 @@ impl DisplayList {
paint_subcontext.pop_clip_if_applicable();
paint_subcontext.draw_target.set_transform(&old_transform)
... | 1 | 119 | 114 |
b9179470bf0d2cdd880a4babeabfac034e24ba57 | Corey Farwell | 2015-09-29T22:59:14 | servo: Merge #7776 - Avoid allocations when joining strings (from frewsxcv:str-join); r=mbrubeck
Source-Repo: https://github.com/servo/servo
Source-Revision: 4823ec947ef43fd685b69d42ff11c8b0aba72d69 | diff --git a/script/dom/cssstyledeclaration.rs b/script/dom/cssstyledeclaration.rs
index e2bf6fd77..68dd897eb 100644
--- a/script/dom/cssstyledeclaration.rs
+++ b/script/dom/cssstyledeclaration.rs
@@ -15,11 +15,10 @@ use selectors::parser::PseudoElement;
use std::ascii::AsciiExt;
use std::borrow::ToOwned;
use std::c... | 5 | 11 | 12 |
c400dacdb41f6285845a314fdace34a74cb2ab25 | Matt Brubeck | 2015-09-29T21:37:11 | servo: Merge #7786 - Use Harfbuzz 1.0 and unicode-script for text shaping (from mbrubeck:harfbuzz-sys); r=pcwalton
Depends on servo/rust-harfbuzz#53 and introduces a dependency on the new servo/unicode-script crate. r? @pcwalton
Source-Repo: https://github.com/servo/servo
Source-Revision: a144d086d911375f8d5674ac90f... | diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml
index c6aec0de7..0ae969768 100644
--- a/gfx/Cargo.toml
+++ b/gfx/Cargo.toml
@@ -12,7 +12,7 @@ path = "lib.rs"
bitflags = "0.3"
euclid = "0.2"
fnv = "1.0"
-harfbuzz = "0.1"
+harfbuzz-sys = "0.1"
lazy_static = "0.1"
libc = "0.1"
log = "0.3"
@@ -23,6 +23,7 @@ serde_macros... | 8 | 139 | 77 |
f268b851cd7a74620f81e4c2e77a3caa91c42473 | Jacob Parker | 2015-09-29T20:13:32 | servo: Merge #7764 - Only display text carets in text inputs (from j3parker:input-caret-only-for-text); r=pcwalton
For #7756
Source-Repo: https://github.com/servo/servo
Source-Revision: 0c64e4a2c98cbf5e7b95dbea31c2e6993b70472c | diff --git a/layout/wrapper.rs b/layout/wrapper.rs
index 678ebd635..17102f009 100644
--- a/layout/wrapper.rs
+++ b/layout/wrapper.rs
@@ -954,18 +954,20 @@ impl<'ln> ThreadSafeLayoutNode<'ln> {
let insertion_point = unsafe {
input.get_insertion_point_for_layout()
};
- ... | 2 | 19 | 13 |
72d008fa4ee4a1a4ff5ec17e3f7401b6f86d0bfb | Paul Rouget | 2015-09-29T19:45:57 | servo: Merge #7778 - Add a command line option to disable native titlebar (from paulrouget:decorationLessOption); r=jdm
Source-Repo: https://github.com/servo/servo
Source-Revision: d92e781a87b5a998f06580fa959c3ccb5cf14dcf | diff --git a/util/opts.rs b/util/opts.rs
index 42dc8ec3a..01dfee394 100644
--- a/util/opts.rs
+++ b/util/opts.rs
@@ -167,6 +167,9 @@ pub struct Opts {
/// True to exit after the page load (`-x`).
pub exit_after_load: bool,
+
+ /// Do not use native titlebar
+ pub no_native_titlebar: bool,
}
fn pri... | 1 | 6 | 0 |
bf067cb823b7c76f53f23bcaf25e050d6f82ca0c | Paul Rouget | 2015-09-29T17:42:45 | servo: Merge #7582 - implement navigator.platform (from paulrouget:navigator.platform); r=jdm
Fix #7573
I used this as a reference: http://stackoverflow.com/questions/19877924/what-is-the-list-of-possible-values-for-navigator-platform-as-of-today
Source-Repo: https://github.com/servo/servo
Source-Revision: c356593fd... | diff --git a/script/dom/navigatorinfo.rs b/script/dom/navigatorinfo.rs
index a3857f298..a4857c5ac 100644
--- a/script/dom/navigatorinfo.rs
+++ b/script/dom/navigatorinfo.rs
@@ -22,8 +22,19 @@ pub fn AppCodeName() -> DOMString {
"Mozilla".to_owned()
}
+#[cfg(target_os = "windows")]
pub fn Platform() -> DOMStrin... | 1 | 12 | 1 |
079a4591313ae085d1f9cb81987cde6d3280fa39 | Corey Farwell | 2015-09-29T03:34:19 | servo: Merge #7775 - Link to 'ask for a reset' tracking issue (from frewsxcv:tracking-issue); r=jdm
FIXME added in https://github.com/servo/servo/pull/7745
Source-Repo: https://github.com/servo/servo
Source-Revision: ed0d70e2347648f7a0e7166fed8fb42b99b99fbc | diff --git a/script/dom/htmloptionelement.rs b/script/dom/htmloptionelement.rs
index 79f710db1..860edd2ea 100644
--- a/script/dom/htmloptionelement.rs
+++ b/script/dom/htmloptionelement.rs
@@ -147,6 +147,7 @@ impl HTMLOptionElementMethods for HTMLOptionElement {
self.dirtiness.set(true);
self.selected... | 1 | 1 | 0 |
a48ab83e882aa4d71c7cdc2777901638f264098c | Matt Brubeck | 2015-09-29T00:57:08 | servo: Merge #7771 - Use the correct container size in compute_overflow (from mbrubeck:rtl-stacking-context); r=pcwalton
Fixes #7768 - positioning of RTL stacking contexts. r? @pcwalton
Source-Repo: https://github.com/servo/servo
Source-Revision: e68bd8d4ffc7f2cd9511999760c7a67418a853e1 | diff --git a/layout/block.rs b/layout/block.rs
index 1083c1749..890353b7a 100644
--- a/layout/block.rs
+++ b/layout/block.rs
@@ -2126,9 +2126,10 @@ impl Flow for BlockFlow {
}
fn compute_overflow(&self) -> Rect<Au> {
- self.fragment.compute_overflow(&self.base
- ... | 3 | 12 | 7 |
44a39a98271c584cf3f3d2439c19bae2884bc861 | Keith Yeung | 2015-09-28T19:59:08 | servo: Merge #7275 - Initial fetch refactor (from KiChjang:fetch-refactor); r=jdm
Partial #4576
I am really unsure of how things would look like, so would really appreciate some feedback on this.
Source-Repo: https://github.com/servo/servo
Source-Revision: 0fc9410f10c1122a05cd36bdf8b7faff12c39555 | diff --git a/net/fetch/request.rs b/net/fetch/request.rs
index 1751fed49..d5b243955 100644
--- a/net/fetch/request.rs
+++ b/net/fetch/request.rs
@@ -3,7 +3,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
use fetch::cors_cache::{CORSCache, CacheRequestDetails};
-use fetch::response::{Response, Re... | 3 | 104 | 77 |
ad1b6530f332f6355cba0620ed307184ae46a9a0 | Patrick Walton | 2015-09-28T18:11:50 | servo: Merge #7596 - layout: Load Web fonts asynchronously (from pcwalton:async-web-font-loading); r=mbrubeck
Improves page load times significantly.
Closes #7343.
Source-Repo: https://github.com/servo/servo
Source-Revision: 7933b484300131d3de79edbcf399288b22010616 | diff --git a/compositing/constellation.rs b/compositing/constellation.rs
index 81a35241b..656a254d4 100644
--- a/compositing/constellation.rs
+++ b/compositing/constellation.rs
@@ -1219,6 +1219,15 @@ impl<LTF: LayoutTaskFactory, STF: ScriptTaskFactory> Constellation<LTF, STF> {
return false;
... | 9 | 223 | 40 |
3c04d7911b16d2c7b3f65b0550e21c48c34b3c56 | Glenn Watson | 2015-09-28T17:35:04 | servo: Merge #7766 - A few clean ups for Au type (from glennw:au-tidy); r=pcwalton
Source-Repo: https://github.com/servo/servo
Source-Revision: 007c22737df0f002203ca4e42b56afff7d4e1661 | diff --git a/gfx/paint_context.rs b/gfx/paint_context.rs
index 4981f4f88..87463981a 100644
--- a/gfx/paint_context.rs
+++ b/gfx/paint_context.rs
@@ -34,7 +34,7 @@ use std::{f32, mem, ptr};
use style::computed_values::{border_style, filter, image_rendering, mix_blend_mode};
use text::TextRun;
use text::glyph::CharInd... | 3 | 25 | 51 |
3bbe766d935e541dcfd1626ef1800ab42d413c45 | Patrick Walton | 2015-09-27T23:47:38 | servo: Merge #7765 - script: Stop reallocating so much when converting DOM strings to JS values (from pcwalton:less-ambitious-low-hanging-dromaeo-fruit); r=jdm
This is split out from #6900.
`size_hint()` in `utf16_units()` seems busted, so we do it ourselves.
r? @jdm
Source-Repo: https://github.com/servo/servo
Sour... | diff --git a/script/dom/bindings/conversions.rs b/script/dom/bindings/conversions.rs
index eed41d6f9..23105fa78 100644
--- a/script/dom/bindings/conversions.rs
+++ b/script/dom/bindings/conversions.rs
@@ -394,8 +394,9 @@ impl<T: Float + FromJSValConvertible<Config=()>> FromJSValConvertible for Finite
impl ToJSValCon... | 1 | 2 | 1 |
2c4d35bb6a44cdf23426d1ddad10a2a85e6d2191 | Philipp Hartwig | 2015-09-27T23:03:58 | servo: Merge #7711 - Use computed `display` property for hypothetical box of root element (from aopicier:root_layout); r=pcwalton
Closes #7558.
Source-Repo: https://github.com/servo/servo
Source-Revision: 45a0c48efdfc327f6f2d1a2a3b60d6590bb19984 | diff --git a/style/properties.mako.rs b/style/properties.mako.rs
index c1bca4d56..df4f73805 100644
--- a/style/properties.mako.rs
+++ b/style/properties.mako.rs
@@ -556,10 +556,14 @@ pub mod longhands {
}
#[inline]
- pub fn derive_from_display(_: super::display::computed_value::T,
+ pu... | 1 | 12 | 3 |
0549fe59e7a5f91b26f3effeb5dc8f94411fc934 | Jaydeep | 2015-09-27T14:19:30 | servo: Merge #7643 - Check for Extra pointer dereferencing (from jdramani:extra_ptr_dref); r=jdm
Solves issue #7640
Source-Repo: https://github.com/servo/servo
Source-Revision: 9523283c14f417014ca6d4fa8179c873bbb8f21f | diff --git a/compositing/compositor.rs b/compositing/compositor.rs
index 1d9392e87..a45dafd54 100644
--- a/compositing/compositor.rs
+++ b/compositing/compositor.rs
@@ -681,7 +681,7 @@ impl<Window: WindowMethods> IOCompositor<Window> {
fn collect_old_layers(&mut self,
pipeline_id: Pipe... | 4 | 10 | 10 |
fe5727bb9a685e408a8237933f46fb4fb449acd6 | Anthony Ramine | 2015-09-26T17:21:11 | servo: Merge #7733 - Properly consider radio button groups (from nox:checked); r=Manishearth
Radio button groups with missing or empty names are always the only element of their respective radio button group.
Source-Repo: https://github.com/servo/servo
Source-Revision: 37ce248f316ba3cb5a2cfb0b4bb95918c1c45828 | diff --git a/script/dom/htmlinputelement.rs b/script/dom/htmlinputelement.rs
index 33098d177..40020a74d 100644
--- a/script/dom/htmlinputelement.rs
+++ b/script/dom/htmlinputelement.rs
@@ -296,7 +296,7 @@ impl HTMLInputElementMethods for HTMLInputElement {
make_getter!(Name);
// https://html.spec.whatwg.org... | 1 | 25 | 16 |
d582f697f2988267769ce30bb23c656b5b3672b4 | Eli Friedman | 2015-09-26T16:45:51 | servo: Merge #7746 - Delete dead code (from eefriedman:debug-dead-code); r=nox
(#[cfg(debug)] is false in every normal servo configuration, and the
code in question doesn't compile.)
Source-Repo: https://github.com/servo/servo
Source-Revision: d4f5948294545860a88d6a266acaa4cf9b9ea1c6 | diff --git a/layout/layout_task.rs b/layout/layout_task.rs
index 28eacfd17..f0aba98b3 100644
--- a/layout/layout_task.rs
+++ b/layout/layout_task.rs
@@ -834,19 +834,6 @@ impl LayoutTask {
traversal);
}
- /// Verifies that every node was either marked as a leaf or... | 2 | 0 | 35 |
370f5a1d58ccb9e50a33bf587848d81e39db33c5 | Matt Brubeck | 2015-09-25T20:23:50 | servo: Merge #7742 - Update unicode-bidi to 0.2.2 (from mbrubeck:update-bidi); r=Manishearth
Fixes #7701 via servo/unicode-bidi#17.
Source-Repo: https://github.com/servo/servo
Source-Revision: d39c8546b6bf03c69b1cde925c72722dfd61e588 | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index f248ac4f1..d8e1833c5 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -958,7 +958,7 @@ dependencies = [
"string_cache 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
"string_cache_plugin 0.1.7 (registry+https://github.com/rust-lang/crate... | 1 | 2 | 2 |
6751b9d865d5f16ab846f923d1640782542163dd | Ravi Shankar | 2015-09-25T19:47:37 | servo: Merge #7741 - fixed the deprecated `as_slice` warning (from Wafflespeanut:warning_fix); r=jdm
I've put its original implementation from [`core/option.rs`](http://doc.servo.org/src/core/option.rs.html#692) instead of the dear departed `as_slice`
Source-Repo: https://github.com/servo/servo
Source-Revision: b7c00... | diff --git a/script/dom/websocket.rs b/script/dom/websocket.rs
index 304ea11e0..279447070 100644
--- a/script/dom/websocket.rs
+++ b/script/dom/websocket.rs
@@ -32,8 +32,8 @@ use script_task::ScriptTaskEventCategory::WebSocketEvent;
use script_task::{CommonScriptMsg, Runnable};
use std::borrow::ToOwned;
use std::cel... | 2 | 4 | 4 |
a9a8862161db3c4c8e46979807f6b7b31ebbabf6 | Prabhjyot Singh Sodhi | 2015-09-25T17:35:57 | servo: Merge #7497 - tests for devtools integration with network requests/responses (from psdh:devtest7473); r=jdm
Fixes #7473
Source-Repo: https://github.com/servo/servo
Source-Revision: 8027777e2409705b1d45cdd4c781e499fd5a7f0d | diff --git a/devtools/actors/network_event.rs b/devtools/actors/network_event.rs
index cd0ccc7cb..262e1e469 100644
--- a/devtools/actors/network_event.rs
+++ b/devtools/actors/network_event.rs
@@ -9,13 +9,14 @@
extern crate hyper;
use actor::{Actor, ActorMessageStatus, ActorRegistry};
+use devtools_traits::HttpRequ... | 5 | 40 | 21 |
6c5c467862c338ab27cf0e506839675f4d9ccc1c | Emilio Cobos Álvarez | 2015-09-25T16:52:52 | servo: Merge #7682 - webgl: Support texImage2D with a canvas as an argument (from emilio:webgl-texture2d); r=jdm
This involved some refactoring of the 2d context code, which lead to some more test passed there.
Source-Repo: https://github.com/servo/servo
Source-Revision: 0f8c1b460100f226df954a3924598434f3dda9b2 | diff --git a/script/dom/canvasrenderingcontext2d.rs b/script/dom/canvasrenderingcontext2d.rs
index 748f3746c..9a6443c05 100644
--- a/script/dom/canvasrenderingcontext2d.rs
+++ b/script/dom/canvasrenderingcontext2d.rs
@@ -143,6 +143,10 @@ impl CanvasRenderingContext2D {
.unwrap();
}
+ pub fn ipc_r... | 3 | 84 | 73 |
6389b5e4516725109ada8248d86dc18132dba120 | James Graham | 2015-09-25T14:18:06 | servo: Merge #7651 - Implement resettable and String-valued prefs (from jgraham:prefs_reset); r=Ms2ger
Source-Repo: https://github.com/servo/servo
Source-Revision: e04c2c78ee43ad81f2794d908a13744b6b976443 | diff --git a/compositing/constellation.rs b/compositing/constellation.rs
index a97972254..81a35241b 100644
--- a/compositing/constellation.rs
+++ b/compositing/constellation.rs
@@ -905,7 +905,7 @@ impl<LTF: LayoutTaskFactory, STF: ScriptTaskFactory> Constellation<LTF, STF> {
containi... | 10 | 226 | 46 |
facda5f613789122f1982852f0511160042a0451 | Patrick Walton | 2015-09-25T01:57:40 | servo: Merge #7736 - Less ambitious optimize set property (from pcwalton:less-ambitious-optimize-set-property); r=Ms2ger
Splitting the parts that have r+ out of #6823.
Source-Repo: https://github.com/servo/servo
Source-Revision: d7b875170956f3a26b46e49d3d5c990fa4acc974 | diff --git a/script/dom/document.rs b/script/dom/document.rs
index 70849da48..db4c72af8 100644
--- a/script/dom/document.rs
+++ b/script/dom/document.rs
@@ -226,7 +226,6 @@ impl CollectionFilter for AppletsFilter {
}
}
-
impl Document {
#[inline]
pub fn loader(&self) -> Ref<DocumentLoader> {
@@ -269,... | 9 | 22 | 17 |
0e37e87bde8bf5d7a97d9f439f72ee466d9ed7c1 | Bryan Bell | 2015-09-25T00:18:07 | servo: Merge #7703 - gfx: Fix border-radius panic when a corner has 0px and >0px borders (from bjwbell:bugfix-0px-and-non-0px-border-widths); r=pcwalton
When one border is 0px and the other is >0px then the border corner
drawing code panics when computing the values to use in drawing the
border corner arcs.
This fixe... | diff --git a/gfx/paint_context.rs b/gfx/paint_context.rs
index 32a0aa42a..4981f4f88 100644
--- a/gfx/paint_context.rs
+++ b/gfx/paint_context.rs
@@ -63,6 +63,14 @@ enum Direction {
Bottom
}
+#[derive(Copy, Clone)]
+enum BorderCorner {
+ TopLeft,
+ TopRight,
+ BottomRight,
+ BottomLeft,
+}
+
#[deriv... | 1 | 122 | 31 |
cb4f802fa54ab1cbb75817e17a08e668125cfbc4 | James Graham | 2015-09-24T17:05:28 | servo: Merge #7675 - Prevent crash trying to freeze script task with no page (from jgraham:freeze_crash); r=metajack
This fixes a crash resulting from a race between loading an initial
document and navigating to a subsequent document. If the navigation
happens before the initial document has had a chance to create its... | diff --git a/script/script_task.rs b/script/script_task.rs
index 96ff1a751..1c3b6c2cd 100644
--- a/script/script_task.rs
+++ b/script/script_task.rs
@@ -1282,6 +1282,11 @@ impl ScriptTask {
/// Handles freeze message
fn handle_freeze_msg(&self, id: PipelineId) {
+ // Workaround for a race condition w... | 1 | 5 | 0 |
5b3bfaf81e4c443b040a16364b52a0f69f6f6a39 | Glenn Watson | 2015-09-24T00:46:29 | servo: Merge #7724 - Ensure that animations expire correctly and stop compositing occurring after they finish (from glennw:expire-anims); r=pcwalton
There were two problems here:
(1) The animation state update function was only called when nodes were dirty or there were new animations.
(2) When all animations for a n... | diff --git a/layout/animation.rs b/layout/animation.rs
index dcb860308..863b1eb32 100644
--- a/layout/animation.rs
+++ b/layout/animation.rs
@@ -49,33 +49,42 @@ pub fn start_transitions_if_applicable(new_animations_sender: &Sender<Animation>
}
/// Processes any new animations that were discovered after style recalc... | 3 | 29 | 20 |
a21e5fba021eff4642f77a6487349c29780a3fff | Martin Robinson | 2015-09-23T23:22:31 | servo: Merge #7710 - A few small bits of refactoring to prepare for more advanced DisplayList layerization (from mrobinson:small-dl-refactor); r=pcwalton
This will be useful when PaintLayers that contain DisplayLists instead
of StackingContexts need to draw themselves. This is a simple
preparatory refactoring and does... | diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs
index f4267c6fb..6c001ab31 100644
--- a/gfx/display_list/mod.rs
+++ b/gfx/display_list/mod.rs
@@ -15,7 +15,7 @@
//! low-level drawing primitives.
use azure::azure::AzFloat;
-use azure::azure_hl::Color;
+use azure::azure_hl::{Color, DrawTarget};
use dis... | 2 | 143 | 151 |
097f391eddf28decc22b0732611620658537c3d5 | Manish Goregaokar | 2015-09-23T12:45:18 | servo: Merge #7697 - Rust upgrade to rustc 1.5.0-dev (6217b002b 2015-09-21) (from servo:rustup_20150921); r=Ms2ger
Snapshot doesn't exist yet. Rust master+ should work.
Also https://github.com/serde-rs/aster/pull/33 hasn't merged yet.
r? @Ms2ger @larsbergstrom
Source-Repo: https://github.com/servo/servo
Source-Revi... | diff --git a/canvas_traits/Cargo.toml b/canvas_traits/Cargo.toml
index 6bf2f6637..da8185572 100644
--- a/canvas_traits/Cargo.toml
+++ b/canvas_traits/Cargo.toml
@@ -23,7 +23,7 @@ git = "https://github.com/ecoal95/rust-offscreen-rendering-context"
git = "https://github.com/pcwalton/ipc-channel"
[dependencies.serde]
... | 33 | 151 | 152 |
d0cc80c0dca5f3cee79c8ab87c023400e57316bc | Lars Bergstrom | 2015-09-23T01:37:22 | servo: Merge #7713 - Update Cargo.lock files with linker updates for cleaner static linking (from larsbergstrom:update_linker_locks); r=glennw
r? @metajack @glennw
Source-Repo: https://github.com/servo/servo
Source-Revision: eca448363de576cf0108ac4d37fbbe1aeb659598 | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index 32ce4e171..da8bcba09 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -497,7 +497,7 @@ dependencies = [
[[package]]
name = "expat-sys"
version = "2.1.0"
-source = "git+https://github.com/servo/libexpat#b0f0d40b6651b0f6286f0f6bcc31c86c5c6c0f4f"
+source = "... | 1 | 29 | 11 |
87eff637578cd92e0fe201f88978aecfbf023a28 | Corey Farwell | 2015-09-22T22:48:22 | servo: Merge #7712 - Prefer element casting over mem::transmute (from frewsxcv:no-mem-transmute); r=saneyuki
None
Source-Repo: https://github.com/servo/servo
Source-Revision: b66dd621775f2277b2cd2424de8f4cb7d8efc9b6 | diff --git a/script/dom/element.rs b/script/dom/element.rs
index 1944d1d03..268e8f356 100644
--- a/script/dom/element.rs
+++ b/script/dom/element.rs
@@ -20,12 +20,11 @@ use dom::bindings::codegen::Bindings::NamedNodeMapBinding::NamedNodeMapMethods;
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
use d... | 1 | 24 | 49 |
dae0f2659283399c2d600c16127946214f25b51d | Maciej Skrzypkowski | 2015-09-22T13:58:55 | servo: Merge #7707 - Add plugins for compositing and net crates #7699 (from mskrzypkows:compositing_net_plugins); r=jdm
Changed to_string calls to to_owned calls
where was a need.
Source-Repo: https://github.com/servo/servo
Source-Revision: d588ce8d8503bf0b340abfb13e2bd6a228cab900 | diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml
index 9d0b611a5..4a45d43a4 100644
--- a/compositing/Cargo.toml
+++ b/compositing/Cargo.toml
@@ -43,6 +43,9 @@ path = "../canvas_traits"
[dependencies.canvas]
path = "../canvas"
+[dependencies.plugins]
+path = "../plugins"
+
[dependencies.azure]
git = "h... | 18 | 43 | 31 |
b4d909ad1d2f76e4033e0a27933ef8611ad08494 | Corey Farwell | 2015-09-21T23:31:04 | servo: Merge #7702 - Remove unnecessary `allow(dead_code)` function attributes (from frewsxcv:no-dead-code); r=nox
Source-Repo: https://github.com/servo/servo
Source-Revision: 434e1fa07475000ed7bc0eeae6d0b0bb1339c4b8 | diff --git a/style/values.rs b/style/values.rs
index 6907a7369..e58def1d6 100644
--- a/style/values.rs
+++ b/style/values.rs
@@ -279,7 +279,6 @@ pub mod specified {
_ => Err(())
}
}
- #[allow(dead_code)]
pub fn parse(input: &mut Parser) -> Result<Length, ()> {
... | 1 | 0 | 4 |
54d96a0a9b938760ce71379cc910728692415ee4 | Corey Farwell | 2015-09-20T16:21:22 | servo: Merge #7689 - Add/update spec links for SupportedPropertyNames methods (from frewsxcv:supported-property-names-links); r=nox
Source-Repo: https://github.com/servo/servo
Source-Revision: 566f1eb6f6886ab87c2c1813ec13a34074cced8e | diff --git a/script/dom/document.rs b/script/dom/document.rs
index fb67d8f84..123a4d8fe 100644
--- a/script/dom/document.rs
+++ b/script/dom/document.rs
@@ -1848,7 +1848,7 @@ impl DocumentMethods for Document {
collection.r().reflector().get_jsobject().get()
}
- // https://html.spec.whatwg.org/multip... | 3 | 8 | 7 |
5ac71ae8b23817e109e7536c4e9f844f153553be | Ali Sabil | 2015-09-20T15:23:20 | servo: Merge #7611 - Cache the `id` attribute on Element (from nox:cache-element-id); r=frewsxcv
Thanks to @asabil for the original work, I only rebased it.
Fixes #6359 and #7040.
Source-Repo: https://github.com/servo/servo
Source-Revision: d1269294e6c602c91012397c7584e3c2077e21ac | diff --git a/layout/wrapper.rs b/layout/wrapper.rs
index 0cfe3dd93..e39724f50 100644
--- a/layout/wrapper.rs
+++ b/layout/wrapper.rs
@@ -487,7 +487,7 @@ impl<'le> ::selectors::Element for LayoutElement<'le> {
#[inline]
fn get_id(&self) -> Option<Atom> {
unsafe {
- (*self.element.unsafe_get... | 3 | 39 | 43 |
f96539e5de007124d4de9abfe5d84b6611473208 | Michael Howell | 2015-09-20T06:22:13 | servo: Merge #7653 - Add transitions for CSS `calc()` (from notriddle:calc-transition); r=dzbarsky
Closes #7284
Source-Repo: https://github.com/servo/servo
Source-Revision: 5667283d1f50ad4f6bf9291dcbc5b6f659c4acc8 | diff --git a/style/animation.rs b/style/animation.rs
index b7104da56..32aae7c7c 100644
--- a/style/animation.rs
+++ b/style/animation.rs
@@ -28,7 +28,7 @@ use util::bezier::Bezier;
use util::geometry::Au;
use values::CSSFloat;
use values::computed::{Angle, LengthOrPercentageOrAuto, LengthOrPercentageOrNone};
-use va... | 2 | 75 | 5 |
d9cd1b47d9eb7ce1d2321a2993809bdbf3ca2272 | Sam Gibson | 2015-09-19T08:01:06 | servo: Merge #7654 - Move HSTS/CookieStorage to Arc<RwLock> from Ipc (from samfoo:hsts-cookie-arc); r=jdm
servo/servo#7421
Source-Repo: https://github.com/servo/servo
Source-Revision: 7f2d81933a6158926ff6d03acbc05f191cd5adb3 | diff --git a/net/http_loader.rs b/net/http_loader.rs
index b0dd1bfe3..7a6e5e3e3 100644
--- a/net/http_loader.rs
+++ b/net/http_loader.rs
@@ -3,26 +3,27 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+use cookie;
+use cookie_storage::CookieStorage;
use devtools_traits::{ChromeToDevtoolsControlMs... | 3 | 91 | 91 |
9f64882fed59ba0b75950b352f697dd79b29fdbf | Bryan Bell | 2015-09-19T04:54:44 | servo: Merge #7679 - Add css twitter fail whale html test & update ellipse_to_bezier comment (from bjwbell:reftest-twitter-fail-whale); r=pcwalton
cgaebel had a TODO for a css twitter fail whale reftest, which depended on elliptical border-radius support.
I didn't see any feasible way other than a reference image for ... | diff --git a/gfx/paint_context.rs b/gfx/paint_context.rs
index 62ac45bab..ab258e2ef 100644
--- a/gfx/paint_context.rs
+++ b/gfx/paint_context.rs
@@ -484,7 +484,81 @@ impl<'a> PaintContext<'a> {
radius.width <= 0. || radius.height <= 0.
}
- // Adapted from gecko:gfx/2d/PathHelpers.h:EllipseToBezier
+ ... | 1 | 75 | 81 |
8e7575c90c2055907974eea2f91d83b161b86045 | Hugo Thiessard | 2015-09-18T20:44:48 | servo: Merge #7680 - fixes #7390 : tidy now check the order of mod declarations even whith attribute (from Mylainos:Issue-#7390); r=metajack
Source-Repo: https://github.com/servo/servo
Source-Revision: d1b85de762c0193276010a019f931526c34c04ce | diff --git a/compositing/lib.rs b/compositing/lib.rs
index c4d974658..8852fe0ac 100644
--- a/compositing/lib.rs
+++ b/compositing/lib.rs
@@ -49,11 +49,11 @@ pub use constellation::Constellation;
pub mod compositor_task;
-mod surface_map;
-mod compositor_layer;
mod compositor;
+mod compositor_layer;
mod headless;... | 10 | 50 | 51 |
f2a65552082c8c8f7537ae70f003f739e19349df | Mathieu Rheaume | 2015-09-18T13:22:59 | servo: Merge #7447 - Issue #7382 Use descriptive enums instead of booleans for MIMEClassifier::classifer (from ddrmanxbxfr:master); r=jdm
Hi guys i've done a small pass of refactor in the MIMEClassifier implementation. (See issue #7382 )
- Moved the predicates to separate functions
- Added a mimetype enum so we ... | diff --git a/net/mime_classifier.rs b/net/mime_classifier.rs
index de1b445ab..a9eac63c8 100644
--- a/net/mime_classifier.rs
+++ b/net/mime_classifier.rs
@@ -6,45 +6,58 @@ use std::borrow::ToOwned;
pub struct MIMEClassifier {
image_classifier: GroupedClassifier,
- audio_video_classifer: GroupedClassifier,
+ ... | 2 | 111 | 49 |
3d661b324b9d2bf5e49e31ba7e6068839905db6c | Matt Brubeck | 2015-09-18T12:36:27 | servo: Merge #7669 - Set default limits on page zoom and pinch zoom (from mbrubeck:zoom); r=glennw
Currently these both clamp to 100% in one direction and are unbounded in the other direction. This sets default zoom constraints of 10% to 800%. r? @glennw
Source-Repo: https://github.com/servo/servo
Source-Revision: ... | diff --git a/compositing/compositor.rs b/compositing/compositor.rs
index 628dff1fb..a35ffe80e 100644
--- a/compositing/compositor.rs
+++ b/compositing/compositor.rs
@@ -55,6 +55,10 @@ use util::opts;
const BUFFER_MAP_SIZE: usize = 10000000;
+// Default viewport constraints
+const MAX_ZOOM: f32 = 8.0;
+const MIN_ZO... | 1 | 9 | 10 |
ce569ca9b77e8d0984d6f358bd76b155d0657a54 | Matt Brubeck | 2015-09-18T10:09:26 | servo: Merge #7667 - Snap to screen pixels instead of px (from mbrubeck:oh-snap); r=glennw
Fixes #7665. r? @glennw
Source-Repo: https://github.com/servo/servo
Source-Revision: 491d62c27cbd55ea5c4269bca11dc8584c77e170 | diff --git a/gfx/paint_context.rs b/gfx/paint_context.rs
index 7b52473ea..62ac45bab 100644
--- a/gfx/paint_context.rs
+++ b/gfx/paint_context.rs
@@ -93,13 +93,17 @@ struct CornerOrigin {
}
impl<'a> PaintContext<'a> {
+ pub fn screen_pixels_per_px(&self) -> f32 {
+ self.screen_rect.size.width as f32 / self... | 2 | 94 | 78 |
050ab0a9c5f912ccdae5fcaacd9ace9476829c44 | Matt Brubeck | 2015-09-18T07:32:40 | servo: Merge #7656 - Reconstruct flows when text/font styles change (from mbrubeck:incremental-text-6501); r=pcwalton
These styles are used during text shaping. When they change, we need to re-run shaping and construct new flows.
Fixes #6501. r? @pcwalton
Source-Repo: https://github.com/servo/servo
Source-Revision:... | diff --git a/layout/construct.rs b/layout/construct.rs
index a0b85802a..d13fd01bb 100644
--- a/layout/construct.rs
+++ b/layout/construct.rs
@@ -1309,10 +1309,9 @@ impl<'a> FlowConstructor<'a> {
pub fn repair_if_possible(&mut self, node: &ThreadSafeLayoutNode) -> bool {
// We can skip reconstructing the f... | 2 | 20 | 7 |
8bcc555d4d5d2117bfb3e567b2c9fb9af1bb25e6 | Matt Brubeck | 2015-09-18T05:36:18 | servo: Merge #7664 - Update glutin to latest upstream merge (from mbrubeck:glutinup); r=glennw
To pick up servo/glutin#47. r? @glennw
Source-Repo: https://github.com/servo/servo
Source-Revision: 3030eff4c6af5aa4fefbc9f12fc011c6b2093834 | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index 420796211..04b1d3fd5 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -639,16 +639,6 @@ dependencies = [
"libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
-[[package]]
-name = "gl_generator"
-version = "0.0.26"
-source = "registry+... | 1 | 4 | 14 |
d1460f30de6476254965cfbeda84eb2a777fafe0 | Martin Robinson | 2015-09-17T14:53:39 | servo: Merge #7587 - Ensure unique LayerIds for pseudo-elements (from mrobinson:layer-id); r=pcwalton
Currently pseudo-elements, like the fragments created for ::before and
::after, with layers will have the same LayerId as the body of their
owning fragments. Instead all LayerIds should be unique.
Fixes #2010.
Sourc... | diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs
index c1a13f1a7..d6192cbc2 100644
--- a/gfx/display_list/mod.rs
+++ b/gfx/display_list/mod.rs
@@ -692,7 +692,7 @@ impl StackingContextLayerCreator {
fn finish_building_current_layer(&mut self, stacking_context: &mut StackingContext) {
if let S... | 6 | 77 | 41 |
7f05ba987d9abb16f98a43c483d3d14c6a44eb1d | Patrick Walton | 2015-09-17T11:50:41 | servo: Merge #7644 - layout: Draw the insertion point in input elements (from pcwalton:carrot); r=mbrubeck
Known issues:
* The caret doesn't show up if there's no text present, because we don't create text runs in that case. This should be a followup.
* Text runs don't support decomposing ligatures into their consti... | diff --git a/gfx/text/glyph.rs b/gfx/text/glyph.rs
index b2e574c8e..9ce46b790 100644
--- a/gfx/text/glyph.rs
+++ b/gfx/text/glyph.rs
@@ -8,6 +8,7 @@ use euclid::point::Point2D;
use simd::u32x4;
use std::cmp::{Ordering, PartialOrd};
+use std::fmt;
use std::mem;
use std::u16;
use std::vec::Vec;
@@ -23,7 +24,7 @@ u... | 14 | 339 | 96 |
cdf2c86352da204c17d2650faf66c1793033df40 | Michael Howell | 2015-09-17T06:53:04 | servo: Merge #7588 - Actually store the overflow for inline-block elements (from notriddle:master); r=pcwalton
Fixes #7571
Source-Repo: https://github.com/servo/servo
Source-Revision: 9e914ca0db2820b365c06deedb8b5325c63c007b | diff --git a/layout/block.rs b/layout/block.rs
index 06a8c3906..40ab4fc4f 100644
--- a/layout/block.rs
+++ b/layout/block.rs
@@ -40,6 +40,7 @@ use flow::{ImmutableFlowUtils, LateAbsolutePositionInfo, MutableFlowUtils, Opaqu
use flow::{LAYERS_NEEDED_FOR_DESCENDANTS, NEEDS_LAYER};
use flow::{PostorderFlowTraversal, Pre... | 4 | 51 | 6 |
45d5bed87728a5094f01cf71e2f3556bf451e67a | Martin Robinson | 2015-09-17T02:43:59 | servo: Merge #7648 - Improve printing of DisplayLists (from mrobinson:print-tree); r=glennw
Use box tree characters to make DisplayLists easier to scan when
printing them out.
This is what the output looked like before:
```
#### start printing display list.
"####" Stacking context at Rect(800px×608px at (0px,0px)) wi... | diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs
index 4c0196b7e..c1a13f1a7 100644
--- a/gfx/display_list/mod.rs
+++ b/gfx/display_list/mod.rs
@@ -47,6 +47,7 @@ use util::geometry::{self, Au, MAX_RECT, ZERO_RECT};
use util::linked_list::prepend_from;
use util::mem::HeapSizeOf;
use util::opts;
+use util... | 5 | 125 | 83 |
ddda82230afb2ccf8b929e286b03f67da7220af7 | Anthony Ramine | 2015-09-16T16:41:10 | servo: Merge #7645 - Introduce structs for compositing and script task constructors' arguments (from nox:omtc-types); r=Ms2ger
Extracted from @pcwalton's #4271.
Source-Repo: https://github.com/servo/servo
Source-Revision: 2879da54f943c9379b0c86461a87e20911bc0a0f | diff --git a/compositing/compositor.rs b/compositing/compositor.rs
index 7b0314e0d..628dff1fb 100644
--- a/compositing/compositor.rs
+++ b/compositing/compositor.rs
@@ -3,7 +3,8 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
use compositor_layer::{CompositorData, CompositorLayer, WantsScrollEvent... | 8 | 256 | 243 |
01996ce5315be65275d6c983d7c878218d88e6e7 | Bryan Bell | 2015-09-16T16:13:52 | servo: Merge #7642 - gfx: Add elliptical border-radius shorthand parsing (from bjwbell:shorthand-parse-elliptical-border-radius); r=jdm
Adds support for parsing shorthand border-radius values such as:
/* The syntax of the second radius allows one to four values */
/* (first radius values) / radius */
bord... | diff --git a/style/properties.mako.rs b/style/properties.mako.rs
index 9bd8ea108..79e1a5e71 100644
--- a/style/properties.mako.rs
+++ b/style/properties.mako.rs
@@ -5144,16 +5144,18 @@ pub mod shorthands {
'border-%s-radius' % (corner)
for corner in ['top-left', 'top-right', 'bottom-right', 'bottom-l... | 2 | 32 | 24 |
32ca6d70d5b263d57344d99e3a14a69a92a0d229 | Ms2ger | 2015-09-16T14:34:32 | servo: Merge #7628 - Emit markers for all events, not just UI events (from Ms2ger:events-markers); r=jdm
Source-Repo: https://github.com/servo/servo
Source-Revision: df083ccb528f2997fbea4724fcd463104bf8d87d | diff --git a/script/devtools.rs b/script/devtools.rs
index 6c843e9e9..f1ccb2a06 100644
--- a/script/devtools.rs
+++ b/script/devtools.rs
@@ -19,7 +19,7 @@ use js::jsapi::{ObjectClassName, RootedObject, RootedValue};
use js::jsval::UndefinedValue;
use msg::constellation_msg::PipelineId;
use page::{IterablePage, Page}... | 6 | 151 | 173 |
fe4c5716372606fdda07be57562d31c46047449f | Jinwoo Song | 2015-09-16T12:31:48 | servo: Merge #7605 - Implement "transform: skew()" (from nox:skew); r=mbrubeck
Thanks to @Jinwoo-Song for the original commit, which I just rebased and cleaned up. Fixes #6237.
Source-Repo: https://github.com/servo/servo
Source-Revision: 6a12f00d6d392651bae10365b4c806f36d704b21 | diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml
index d466d425a..1fec7e751 100644
--- a/canvas/Cargo.toml
+++ b/canvas/Cargo.toml
@@ -38,5 +38,5 @@ features = [ "serde-serialization" ]
log = "0.3"
num = "0.1.24"
gleam = "0.1"
-euclid = "0.1"
+euclid = "0.2"
diff --git a/canvas_traits/Cargo.toml b/canvas_traits/... | 19 | 80 | 57 |
feff1792c4fe9b6a4ff1a5485100369014252509 | Aidan Hobson Sayers | 2015-09-15T18:11:11 | servo: Merge #7623 - Match forwarded events as atoms, fixes #7495 (from aidanhs:aphs-atomise-forwarded-events); r=nox
Hopefully I understood the issue correctly...
Source-Repo: https://github.com/servo/servo
Source-Revision: 4935323ebf29218321c6f566719e3a2113b91bda | diff --git a/script/dom/htmlbodyelement.rs b/script/dom/htmlbodyelement.rs
index fa1ddcbdd..a09825574 100644
--- a/script/dom/htmlbodyelement.rs
+++ b/script/dom/htmlbodyelement.rs
@@ -140,21 +140,19 @@ impl VirtualMethods for HTMLBodyElement {
});
},
(name, AttributeMutation:... | 1 | 9 | 11 |
412a9e7af54ef7ba2c2c2e1c1eb950659c90d6f3 | James Graham | 2015-09-15T04:08:28 | servo: Merge #7548 - Add get/set pref extensions to webdriver server (from jgraham:webdriver_prefs); r=metajack
This can be used by the test framework to ensure that the correct prefs are
set for a test without restarting the browser
Source-Repo: https://github.com/servo/servo
Source-Revision: 67cf241acdeb58d05cf2150... | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index 796ebb85c..1ad6bb526 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -1861,7 +1861,7 @@ dependencies = [
[[package]]
name = "webdriver"
version = "0.2.3"
-source = "git+https://github.com/jgraham/webdriver-rust.git#80b3fdf3f7412066268e00df25087200cbb47cc... | 3 | 164 | 16 |
9d5f6a4a76df0a2314efdeed9f4cdd37bb824c70 | João Oliveira | 2015-09-15T03:31:53 | servo: Merge #7631 - rewrite uses of map as if let (from jxs:rewrite_uses_of_map); r=jdm
in the end only found this case as re-writable, am i missing some?
Source-Repo: https://github.com/servo/servo
Source-Revision: e3d36bfceb21bc96bb6f791c295a7e18da6e3dc4 | diff --git a/script/dom/document.rs b/script/dom/document.rs
index 74528cac9..de4f6a842 100644
--- a/script/dom/document.rs
+++ b/script/dom/document.rs
@@ -798,12 +798,19 @@ impl Document {
match key {
Key::Space if !prevented && state == KeyState::Released => {
let maybe_elem: O... | 1 | 10 | 3 |
52a669c7286794700ce330074e2c1f4c05e398ea | Aidan Hobson Sayers | 2015-09-14T20:57:55 | servo: Merge #7633 - Remove SslProvider, fixes #7627 (from aidanhs:aphs-remove-sslprovider); r=jdm
Source-Repo: https://github.com/servo/servo
Source-Revision: e107f112d87a4cac66e8aa1d5b2daf1e4bcdebc7 | diff --git a/net/http_loader.rs b/net/http_loader.rs
index 6aae9fc89..b0dd1bfe3 100644
--- a/net/http_loader.rs
+++ b/net/http_loader.rs
@@ -9,14 +9,13 @@ use flate2::read::{DeflateDecoder, GzDecoder};
use hsts::secure_url;
use hyper::Error as HttpError;
use hyper::client::{Request, Response, Pool};
-use hyper::erro... | 1 | 4 | 28 |
8fa1f07ab7d0d54ed36507ce7d4fff7dc67809cf | João Oliveira | 2015-09-14T14:57:42 | servo: Merge #7549 - Move setting UserAgent header into http_loader::load, (from jxs:master); r=jdm
closes #7541
Source-Repo: https://github.com/servo/servo
Source-Revision: 35c30ab70df6821992769ff7a2b057cfe2f2673c | diff --git a/net/http_loader.rs b/net/http_loader.rs
index 031fa5ec8..6aae9fc89 100644
--- a/net/http_loader.rs
+++ b/net/http_loader.rs
@@ -11,7 +11,7 @@ use hyper::Error as HttpError;
use hyper::client::{Request, Response, Pool};
use hyper::error::Result as HttpResult;
use hyper::header::{AcceptEncoding, Accept, C... | 2 | 16 | 13 |
abb6be924027d26fd3625a3aa0a5a51a484684c8 | Ms2ger | 2015-09-14T08:38:02 | servo: Merge #7622 - Use static atoms in some places (from Ms2ger:atoms); r=nox
Source-Repo: https://github.com/servo/servo
Source-Revision: 97710f0739410e7b464591f482c2dc117e528bbe | diff --git a/script/dom/htmlinputelement.rs b/script/dom/htmlinputelement.rs
index d0facdaa1..e02d43c82 100644
--- a/script/dom/htmlinputelement.rs
+++ b/script/dom/htmlinputelement.rs
@@ -520,7 +520,7 @@ impl VirtualMethods for HTMLInputElement {
self.radio_group_updated(
mutation... | 3 | 4 | 5 |
aa16ba654e5817db2435325f041d08a4ae6e9b87 | Ms2ger | 2015-09-13T15:20:25 | servo: Merge #7616 - Stop implementing Reflectable for JS<T> (from Ms2ger:js-reflector); r=jdm
Source-Repo: https://github.com/servo/servo
Source-Revision: e10c5c74cc48a203aaeb7da3fd51b062c1311eac | diff --git a/script/dom/bindings/js.rs b/script/dom/bindings/js.rs
index 5345d08ee..e50bf68e4 100644
--- a/script/dom/bindings/js.rs
+++ b/script/dom/bindings/js.rs
@@ -88,6 +88,12 @@ impl<T: Reflectable> JS<T> {
}
}
+impl<T: Reflectable> JSTraceable for JS<T> {
+ fn trace(&self, trc: *mut JSTracer) {
+ ... | 2 | 12 | 21 |
2e80688793fce0d13d9745ece82d8b1ec0295629 | Corey Farwell | 2015-09-13T12:23:42 | servo: Merge #7614 - Fix a few incorrect Element interfaces (from frewsxcv:incorrect-element-interfaces); r=nox
Source-Repo: https://github.com/servo/servo
Source-Revision: dbd614045b415640c0d466a68ea26cd94ece356c | diff --git a/script/dom/create.rs b/script/dom/create.rs
index 9b226c73e..55bef5246 100644
--- a/script/dom/create.rs
+++ b/script/dom/create.rs
@@ -116,9 +116,13 @@ pub fn create_element(name: QualName, prefix: Option<Atom>,
atom!("base") => make!(HTMLBaseElement),
atom!("bdi") => make!(... | 2 | 36 | 26 |
9c008f1b07fc73fe3d3e29b3a6e1610bdb00e9d8 | Simon Sapin | 2015-09-12T15:10:37 | servo: Merge #7610 - Replace reftest with a problematic file name with a unit test (from servo:filename-parsing); r=saneyuki
Fix #7609, "error: unable to create file tests/ref/hello_a?foo#bar.html (Invalid argument)" during git checkout on Windows.
Behavior change: passing an nonexistent file name on the command line... | diff --git a/util/opts.rs b/util/opts.rs
index 08124b1eb..28a5908e4 100644
--- a/util/opts.rs
+++ b/util/opts.rs
@@ -14,7 +14,7 @@ use prefs;
use std::cmp;
use std::default::Default;
use std::env;
-use std::fs::{File, PathExt};
+use std::fs::File;
use std::io::{self, Read, Write};
use std::path::Path;
use std::pr... | 1 | 13 | 13 |
17807cc0bba6b8cff371b632517d45264f39012f | Corey Farwell | 2015-09-12T14:05:18 | servo: Merge #7613 - Minor script::dom::window::Window cleanup (from frewsxcv:minor-window-cleanup); r=nox
Source-Repo: https://github.com/servo/servo
Source-Revision: a63e2935ed7847442aae995237396da117a2c53b | diff --git a/script/dom/window.rs b/script/dom/window.rs
index 2ca420d44..a6338821d 100644
--- a/script/dom/window.rs
+++ b/script/dom/window.rs
@@ -53,7 +53,6 @@ use util::geometry::{self, Au, MAX_RECT};
use util::str::{DOMString, HTML_SPACE_CHARACTERS};
use util::{breakpoint, opts};
-use euclid::scale_factor::Sca... | 1 | 17 | 28 |
48deb6660aae473ee643890535f1691d8d77513a | Patrick Walton | 2015-09-11T17:20:13 | servo: Merge #7600 - layout: Allow the overflow area of the `<body>` to be scrolled (from pcwalton:body-overflow-scroll); r=mbrubeck
Fixes scrolling on Twitter.
r? @mbrubeck
Source-Repo: https://github.com/servo/servo
Source-Revision: 8d7ba12f28a873880c1f51b122d4fc185294c849 | diff --git a/layout/layout_task.rs b/layout/layout_task.rs
index 41f895215..cb56262b1 100644
--- a/layout/layout_task.rs
+++ b/layout/layout_task.rs
@@ -1031,7 +1031,11 @@ impl LayoutTask {
flow_ref::deref_mut(layout_root));
let root_size = {
let root_flow = fl... | 3 | 10 | 1 |
99bfeba2463ee59660a20d2da9f4c0776d076e49 | Patrick Walton | 2015-09-11T16:03:39 | servo: Merge #7550 - layout: Defend the block formatting context speculation against going wrong in the presence of blocks that overflow in the inline direction (from pcwalton:block-formatting-context-overflow); r=mbrubeck
Makes the Google search result links appear.
Closes #7298.
r? @mbrubeck
Source-Repo: https://... | diff --git a/layout/block.rs b/layout/block.rs
index 720b529bc..06a8c3906 100644
--- a/layout/block.rs
+++ b/layout/block.rs
@@ -1347,10 +1347,16 @@ impl BlockFlow {
let mut inline_size_of_preceding_left_floats = Au(0);
let mut inline_size_of_preceding_right_floats = Au(0);
if self.formatting... | 1 | 10 | 4 |
5ede735a08bc859f3a671e65fc4b09a208a3e442 | Bryan Bell | 2015-09-11T05:55:41 | servo: Merge #7602 - Improve err msg when failing to output png (from bjwbell:improve_err_msg_when_writing_png); r=pcwalton
Before on at least Linux the following failure is hard to root cause:
[~/servo] ./target/debug/servo -o tmp.png ./tests/html/lipsum.html
thread '<main>' panicked at 'assertion failed: re... | diff --git a/compositing/compositor.rs b/compositing/compositor.rs
index b5dfd8d4e..187ee6136 100644
--- a/compositing/compositor.rs
+++ b/compositing/compositor.rs
@@ -1505,7 +1505,7 @@ impl<Window: WindowMethods> IOCompositor<Window> {
let mut img = self.draw_png(framebuffer_ids, texture_ids, width, ... | 1 | 1 | 1 |
75b60663724706468dd668c1f779ef0b1d07dbe2 | Connor Imes | 2015-09-10T19:31:57 | servo: Merge #7595 - Refresh cef and gonk lock files; update heartbeats dependencies (from connorimes:update-hbs); r=larsbergstrom
Source-Repo: https://github.com/servo/servo
Source-Revision: f190ba360e41465d43972826b6715eb39e7b9822 | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index a23c94bea..b5cd385b3 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -743,7 +743,7 @@ dependencies = [
[[package]]
name = "hbs-common-sys"
version = "0.1.0"
-source = "git+https://github.com/libheartbeats/heartbeats-simple-sys.git#2b415b92cd955e63c4b939b... | 1 | 2 | 2 |
e94cd6edca280f5f39b01ac7556043e6f47cf298 | Bryan Bell | 2015-09-09T22:55:16 | servo: Merge #7527 - Use SIMD in fast path for advance_for_char_range (from bjwbell:simd_advance_for_char_range); r=metajack
In advance_for_char_range add a fast SIMD code path for the the common
case where there are no detailed glyphs.
r? @mbrubeck
Source-Repo: https://github.com/servo/servo
Source-Revision: c8382... | diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml
index 078cca786..90e4dcace 100644
--- a/gfx/Cargo.toml
+++ b/gfx/Cargo.toml
@@ -103,3 +103,18 @@ git = "https://github.com/servo/rust-freetype"
[target.x86_64-apple-darwin.dependencies.core-text]
git = "https://github.com/servo/core-text-rs"
+
+[target.x86_64-unknown-lin... | 4 | 94 | 1 |
6fce6d5040be65f1572c15ed537d636bd12723da | Connor Imes | 2015-09-09T21:24:48 | servo: Merge #7581 - Add energy monitoring and characterization scripts (from connorimes:power-profiling); r=larsbergstrom
Add the energy-profiling feature. Users can compile the proper (or their own) version of energymon libraries to capture power/energy data at runtime. The results are accessed through heartbeats.... | diff --git a/profile/heartbeats.rs b/profile/heartbeats.rs
index e782067f8..6eaff00e7 100644
--- a/profile/heartbeats.rs
+++ b/profile/heartbeats.rs
@@ -51,6 +51,7 @@ pub fn init() {
maybe_create_heartbeat(&mut hbs, ProfilerCategory::ScriptWebSocketEvent);
maybe_create_heartbeat(&mut hbs, ProfilerCategory::Sc... | 8 | 188 | 5 |
6e0d1a465ce991290790e86be638ebeb92449735 | Bryan Bell | 2015-09-09T19:30:41 | servo: Merge #7577 - gfx: Fix bug with 1px width borders disappearing (from bjwbell:borders_pixel_rounding_bug); r=mbrubeck
In to_nearest_azure_rect when rounding to pixel coordinates, maintain
the invariant of rect non-overlap (if before rounding two rects don't overlap).
The previous code rounded the rect top left ... | diff --git a/gfx/paint_context.rs b/gfx/paint_context.rs
index c4d883596..d8d8f74d8 100644
--- a/gfx/paint_context.rs
+++ b/gfx/paint_context.rs
@@ -1549,13 +1549,38 @@ impl ToAzurePoint for Point2D<Au> {
pub trait ToAzureRect {
fn to_nearest_azure_rect(&self) -> Rect<AzFloat>;
+ fn to_nearest_non_empty_azur... | 1 | 30 | 1 |
895506e2b631ba8af74b456f758b0e35cd976cd7 | Jack Moffitt | 2015-09-09T18:53:21 | servo: Merge #7583 - Fix some build warnings (from metajack:warning-police); r=jdm
Source-Repo: https://github.com/servo/servo
Source-Revision: 50f5ae1d358cd5472ad3f7f72d05568e44ec8932 | diff --git a/style_traits/lib.rs b/style_traits/lib.rs
index f47eac39b..f1348fa79 100644
--- a/style_traits/lib.rs
+++ b/style_traits/lib.rs
@@ -11,8 +11,11 @@
#![feature(custom_derive)]
#![feature(plugin)]
#![plugin(serde_macros)]
+#![plugin(plugins)]
#![deny(unsafe_code)]
+
+
extern crate euclid;
extern crate... | 1 | 3 | 0 |
bb3b2dbcecbdb3082b86947a07998447eacc6b64 | Martin Robinson | 2015-09-09T16:52:56 | servo: Merge #7563 - Layerize StackingContexts that are on top of layers (from mrobinson:layerize-stacking-contexts); r=pcwalton
StackingContexts that should be painted on top of StackingContexts that
are already layerized should automatically get their own layer. This
will ensure proper painting order.
Source-Repo: ... | diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs
index d04576726..4c0196b7e 100644
--- a/gfx/display_list/mod.rs
+++ b/gfx/display_list/mod.rs
@@ -36,6 +36,7 @@ use paint_task::PaintLayer;
use smallvec::SmallVec;
use std::collections::linked_list::{self, LinkedList};
use std::fmt;
+use std::mem;
use s... | 4 | 124 | 9 |
66741baac38aef18322e2e143d6979dbfaca5c55 | Akos Kiss | 2015-09-09T10:37:08 | servo: Merge #7576 - Bump up skia and js packages to follow recent fixes (from akosthekiss:bump-skia-js); r=Ms2ger
Source-Repo: https://github.com/servo/servo
Source-Revision: 0d37e8f96b7f40d14bf4fbb0b66e42a01302a336 | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index eb8812462..2a0d9a778 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -830,7 +830,7 @@ dependencies = [
[[package]]
name = "js"
version = "0.1.0"
-source = "git+https://github.com/servo/rust-mozjs#ff77d7152515b8dbfe29cb5f883e3a348673741c"
+source = "git+h... | 1 | 2 | 2 |
3c0350cff3b3157984f995a5f72b79484d3b9171 | Eli Friedman | 2015-09-09T06:05:17 | servo: Merge #7523 - Fix up some unnecessary uses of `unsafe` (from eefriedman:unnecessary-unsafe); r=SimonSapin
Source-Repo: https://github.com/servo/servo
Source-Revision: be9a9ffda10fa2c50b13f79dabd49255f29f12f6 | diff --git a/gfx/font.rs b/gfx/font.rs
index 6fffb8451..b1765e8ae 100644
--- a/gfx/font.rs
+++ b/gfx/font.rs
@@ -6,9 +6,8 @@ use euclid::{Point2D, Rect, Size2D};
use smallvec::SmallVec;
use std::borrow::ToOwned;
use std::cell::RefCell;
-use std::mem;
use std::rc::Rc;
-use std::slice;
+use std::str;
use std::sync::... | 7 | 15 | 31 |
d2b414b313974701c8239201491337996aeb8337 | Connor Imes | 2015-09-09T03:59:54 | servo: Merge #7567 - Add heartbeats for new script profiler categories (from connorimes:script-heartbeats); r=jdm
Source-Repo: https://github.com/servo/servo
Source-Revision: 2c77776428105b68c1b7c86f4d6b4e0223db3185 | diff --git a/profile/heartbeats.rs b/profile/heartbeats.rs
index 0d7f9511d..e782067f8 100644
--- a/profile/heartbeats.rs
+++ b/profile/heartbeats.rs
@@ -35,6 +35,22 @@ pub fn init() {
maybe_create_heartbeat(&mut hbs, ProfilerCategory::PaintingPrepBuff);
maybe_create_heartbeat(&mut hbs, ProfilerCategory::Paint... | 1 | 16 | 0 |
e03b46ca91366f3c619f544264eced67b329d45d | Glenn Watson | 2015-09-09T02:39:09 | servo: Merge #7557 - Handle cases where the layout root is None. Fixes #6375 (from glennw:fix-layout-panic); r=pcwalton
Source-Repo: https://github.com/servo/servo
Source-Revision: 4221b354cfc05e4857ba4c1a160298965e243330 | diff --git a/layout/layout_task.rs b/layout/layout_task.rs
index 0bf61466e..41f895215 100644
--- a/layout/layout_task.rs
+++ b/layout/layout_task.rs
@@ -156,6 +156,14 @@ pub struct LayoutTaskData {
pub visible_rects: Arc<HashMap<LayerId, Rect<Au>, DefaultState<FnvHasher>>>,
}
+impl LayoutTaskData {
+ pub fn ... | 1 | 91 | 92 |
1ab31031af3723be532068175904d29b0b3aed6d | Connor Imes | 2015-09-08T15:32:56 | servo: Merge #7547 - Combine script profiling with profile crates. Fixes #7514 (from connorimes:move_script_profiling); r=jdm
The script crate had its own built-in profiling which was basically doing the same thing as the profile crate. This wraps the internal profiling around the main profile functionality. Script-... | diff --git a/compositing/pipeline.rs b/compositing/pipeline.rs
index 15bfed44c..6f6372f39 100644
--- a/compositing/pipeline.rs
+++ b/compositing/pipeline.rs
@@ -331,6 +331,7 @@ impl PipelineContent {
self.resource_task,
self.storage_task.clone(),
... | 6 | 71 | 57 |
a6f9ceae3801bc581f2cb4aa6990ed497ac8e73b | Mathieu Rheaume | 2015-09-08T06:28:42 | servo: Merge #7556 - Remove unnecessary `mut` on variables declared in components/layout/block.rs (from ddrmanxbxfr:MutabilityCleanup); r=Ms2ger
Small cleanup over mutable variables in components/layout/block.rs.
Thanks for looking into it!
Source-Repo: https://github.com/servo/servo
Source-Revision: 282f9ade931342e... | diff --git a/layout/block.rs b/layout/block.rs
index a9532d6ab..a12d3d1bc 100644
--- a/layout/block.rs
+++ b/layout/block.rs
@@ -2436,7 +2436,7 @@ pub trait ISizeAndMarginsComputer {
// Invariant: inline-start_margin + inline-size + inline-end_margin ==
// available_inline-size
- let (inline_... | 1 | 3 | 3 |
2457d10d90ba184fe2e6d594d9ef4b8a34f3b04b | Michael Howell | 2015-09-08T03:40:03 | servo: Merge #7560 - Include the overflow of the inline block itself (from notriddle:master); r=pcwalton
Closes #7372.
Source-Repo: https://github.com/servo/servo
Source-Revision: 3fa5c9185cd699a5cad000923cd1ac8826dc819a | diff --git a/layout/fragment.rs b/layout/fragment.rs
index b6c5e00a4..924f3eaf8 100644
--- a/layout/fragment.rs
+++ b/layout/fragment.rs
@@ -2175,6 +2175,19 @@ impl Fragment {
overflow = overflow.union(&border_box.inflate(outline_width, outline_width))
}
+ // Include the overflow of the b... | 1 | 13 | 0 |
d5ba85e519a41412117e9a2d39d06e7e1e76ceba | Patrick Walton | 2015-09-05T03:53:17 | servo: Merge #7533 - layout: Use a special path that treats `margin: auto` as zero for inline-block inline size computation (from pcwalton:inline-block-margin-auto); r=mbrubeck
Places the search icon in the right place on the Google SERPs.
r? @mbrubeck
Source-Repo: https://github.com/servo/servo
Source-Revision: 0bc... | diff --git a/layout/block.rs b/layout/block.rs
index 68b149b5c..a9532d6ab 100644
--- a/layout/block.rs
+++ b/layout/block.rs
@@ -505,6 +505,8 @@ pub enum BlockType {
AbsoluteNonReplaced,
FloatReplaced,
FloatNonReplaced,
+ InlineBlockReplaced,
+ InlineBlockNonReplaced,
}
#[derive(Clone, PartialE... | 1 | 110 | 6 |
68a668b21f3b5faa1c27d68020e6f87a3325b114 | wilmoz | 2015-09-05T03:18:52 | servo: Merge #7337 - Documentation of inheritance in type ids (from wilcus:InheritanceDocumentation); r=mbrubeck
Aditional documentation about this issue https://github.com/servo/servo/issues/7205
Source-Repo: https://github.com/servo/servo
Source-Revision: da0b9d7c0185f0898fd47f5326e8e084d08a2fc0 | diff --git a/script/dom/mod.rs b/script/dom/mod.rs
index e9bc07162..a0f436e51 100644
--- a/script/dom/mod.rs
+++ b/script/dom/mod.rs
@@ -54,6 +54,23 @@
//! This invariant is enforced by the lint in
//! `plugins::lints::inheritance_integrity`.
//!
+//! The same principle applies to typeids,
+//! the derived type enum... | 1 | 17 | 0 |
1caaa8dfbb734aa618178595709012eb9bf9dfd8 | Patrick Walton | 2015-09-05T01:59:11 | servo: Merge #7534 - layout: Lay absolutely-positioned blocks with inline containing blocks out of flow (from pcwalton:inline-absolute-out-of-flow); r=mbrubeck
Removes the long space before the site-specific drop-down in the Google SERPs.
r? @glennw
Source-Repo: https://github.com/servo/servo
Source-Revision: aeb8dc... | diff --git a/layout/fragment.rs b/layout/fragment.rs
index fd31eb107..b6c5e00a4 100644
--- a/layout/fragment.rs
+++ b/layout/fragment.rs
@@ -2376,6 +2376,13 @@ impl Fragment {
self.style.get_box().position == position::T::absolute
}
+ pub fn is_inline_absolute(&self) -> bool {
+ match self.spe... | 2 | 23 | 9 |
720ae01c32833513a2f7654aaf0eaf6bf77357f7 | Martin Robinson | 2015-09-04T23:31:54 | servo: Merge #7487 - Have PaintLayers own StackingContexts instead of the opposite (from mrobinson:paint-layer-upgrade); r=pcwalton
Previously, StackingContexts might have a PaintLayer. We switch the
ownership, for several reasons:
* We want PaintLayers to potentially contain something other
than a StackingCo... | diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs
index 8df8f03b5..6c261872f 100644
--- a/gfx/display_list/mod.rs
+++ b/gfx/display_list/mod.rs
@@ -28,8 +28,9 @@ use azure::azure_hl::Color;
use euclid::approxeq::ApproxEq;
use euclid::num::Zero;
use euclid::{Point2D, Rect, SideOffsets2D, Size2D, Matrix2D... | 6 | 201 | 164 |
3fb8beaf10c1614c819556731b111ca5a561bed9 | Patrick Walton | 2015-09-04T18:55:04 | servo: Merge #7544 - layout: Stop double-counting `position: relative` offsets for stacking contexts (from pcwalton:stacking-context-relative-offset); r=mbrubeck
Fixes the location of the gear menu on the Google SERPs.
r? @mbrubeck
Source-Repo: https://github.com/servo/servo
Source-Revision: 7df4ff7572bf131aca3643d0... | diff --git a/layout/block.rs b/layout/block.rs
index be55574f3..68b149b5c 100644
--- a/layout/block.rs
+++ b/layout/block.rs
@@ -1913,7 +1913,6 @@ impl Flow for BlockFlow {
self.base.position.size.to_physical(self.base.writing_mode);
// Compute the origin and clipping rectangle for children.
- ... | 1 | 2 | 2 |
770836931e965b3091291004164c0198849de2a4 | James Graham | 2015-09-04T17:02:12 | servo: Merge #7545 - Update prefs API to return an Option<bool> (from jgraham:get_pref_option); r=jdm
This allows for situations where there is no reasonable default
to apply for the pref value e.g. when we are just listing values
Source-Repo: https://github.com/servo/servo
Source-Revision: 9d4217990060b3d2c93a4b39fe... | diff --git a/compositing/constellation.rs b/compositing/constellation.rs
index f4344d7a2..716bd2a58 100644
--- a/compositing/constellation.rs
+++ b/compositing/constellation.rs
@@ -891,7 +891,7 @@ impl<LTF: LayoutTaskFactory, STF: ScriptTaskFactory> Constellation<LTF, STF> {
containi... | 7 | 12 | 12 |
fbaa319e33358a4fcc34ef0eb1a6c22c2821f619 | Matt Brubeck | 2015-09-04T16:23:58 | servo: Merge #7543 - Update glutin (from mbrubeck:glutin-up); r=pcwalton
To servo/glutin#46
Source-Repo: https://github.com/servo/servo
Source-Revision: f8ba9a81116e11249845189c6af8978df1693c4b | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index 59389a78d..a94409231 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -636,7 +636,7 @@ dependencies = [
[[package]]
name = "glutin"
version = "0.3.5"
-source = "git+https://github.com/servo/glutin?branch=servo#0b055f889ce0baaa0fc186da4f3b5c31b7c6fd18"
+so... | 1 | 1 | 1 |
f878d6e7f8daf744e0f3af49b9bc0908c8cdd367 | João Oliveira | 2015-09-04T12:46:11 | servo: Merge #7508 - Add style_traits crate to improve crate separation, (from jxs:master); r=SimonSapin
closes #7353
Source-Repo: https://github.com/servo/servo
Source-Revision: cc1eb3f741554b3f1711cd1938d1c16b6b7d2879 | diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml
index fe8f44489..417e8a0ca 100644
--- a/compositing/Cargo.toml
+++ b/compositing/Cargo.toml
@@ -19,6 +19,9 @@ path = "../layout_traits"
[dependencies.script_traits]
path = "../script_traits"
+[dependencies.style_traits]
+path = "../style_traits"
+
[depen... | 18 | 269 | 156 |
669c578bf09ae2134d4a866330e068a445562ff1 | Simon Sapin | 2015-09-04T08:15:10 | servo: Merge #7539 - Fix or silence some warnings (from servo:warnings); r=SimonSapin
Source-Repo: https://github.com/servo/servo
Source-Revision: 8d21a7924676454d954a3e649bb649d46968b5d3 | diff --git a/style/properties.mako.rs b/style/properties.mako.rs
index 52eefd96c..e92308193 100644
--- a/style/properties.mako.rs
+++ b/style/properties.mako.rs
@@ -6641,8 +6641,8 @@ pub fn modify_style_for_text(style: &mut Arc<ComputedValues>) {
style.padding.padding_right != computed::LengthOrPercentage:... | 2 | 3 | 2 |
a9fc2b726cf5fab99b868696b85ffdaa8532eac9 | Simon Sapin | 2015-09-03T22:09:02 | servo: Merge #7518 - Initial support for CSS Custom Properties (from servo:custom-properties); r=pcwalton
https://drafts.csswg.org/css-variables/
Missing:
* `var()` in shorthand property declarations.
* Correct handling of EOF in custom property declarations.
r? @pcwalton
Source-Repo: https://github.com/servo/serv... | diff --git a/script/dom/element.rs b/script/dom/element.rs
index 83574e7b6..f9d3920cf 100644
--- a/script/dom/element.rs
+++ b/script/dom/element.rs
@@ -62,7 +62,7 @@ use dom::virtualmethods::{VirtualMethods, vtable_for};
use devtools_traits::AttrInfo;
use smallvec::VecLike;
use style::legacy::{UnsignedIntegerAttrib... | 6 | 586 | 97 |
d58c01e95c223e38ca7e5f9095db6765546f3491 | Matt Brubeck | 2015-09-03T20:37:38 | servo: Merge #7443 - Implement get_table_for_tag on FreeType (from mbrubeck:get_table); r=pcwalton
Updates freetype to pick up servo/rust-freetype#37
r? @glennw
Source-Repo: https://github.com/servo/servo
Source-Revision: 0ad284766b3f12097dce1e5858b5d07e870478eb | diff --git a/gfx/font.rs b/gfx/font.rs
index f0b0c1bfc..59e3cc376 100644
--- a/gfx/font.rs
+++ b/gfx/font.rs
@@ -42,7 +42,7 @@ pub trait FontHandleMethods: Sized {
fn glyph_h_advance(&self, GlyphId) -> Option<FractionalPixel>;
fn glyph_h_kerning(&self, GlyphId, GlyphId) -> FractionalPixel;
fn metrics(&se... | 6 | 39 | 23 |
f32b16bc42b812ea0963f59b46b89e3e7bb36fe2 | Thiago Pontes | 2015-09-03T18:36:23 | servo: Merge #7522 - Make use of FromStr and Default traits in lib canvas (from thiagopnts:from-str-canvas); r=Manishearth
fixes #7517
Source-Repo: https://github.com/servo/servo
Source-Revision: d3efcb707c6dc26b171ffada2e1ca48d5abbb4b6 | diff --git a/canvas_traits/lib.rs b/canvas_traits/lib.rs
index 6f2924d21..00cde267e 100644
--- a/canvas_traits/lib.rs
+++ b/canvas_traits/lib.rs
@@ -37,6 +37,8 @@ use ipc_channel::ipc::{IpcSender, IpcSharedMemory};
use layers::platform::surface::NativeSurface;
use offscreen_gl_context::GLContextAttributes;
use serde... | 2 | 109 | 82 |
7711e27cd0ccb25363304b447dd56d4905e430c4 | Patrick Walton | 2015-09-03T17:55:03 | servo: Merge #7207 - layout: Fix several bugs relating to inline borders, padding, and margins (from pcwalton:surround-whitespace-stripping); r=mbrubeck
* The code that attempted to strip out borders that span multiple
fragments in the same element could go wrong if fragments were
stripped out due to text clumping... | diff --git a/layout/construct.rs b/layout/construct.rs
index d701edfc4..eb43c81b9 100644
--- a/layout/construct.rs
+++ b/layout/construct.rs
@@ -27,7 +27,8 @@ use fragment::{InlineAbsoluteHypotheticalFragmentInfo, TableColumnFragmentInfo};
use fragment::{InlineBlockFragmentInfo, SpecificFragmentInfo, UnscannedTextFrag... | 6 | 288 | 130 |
99959e4b471b74d27f42b9194e2bd3ce57aad6dc | Corey Farwell | 2015-09-03T04:57:13 | servo: Merge #7526 - Upgrade rust-block to silence warning (from frewsxcv:bump-no-warnings); r=jdm
https://github.com/SSheldon/rust-block/pull/1
Relevant to https://github.com/servo/servo/pull/7513
Source-Repo: https://github.com/servo/servo
Source-Revision: 3a09c027e2f19b3b0fdf0b55730532b942103411 | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index db7016feb..b29e113ce 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -118,7 +118,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "block"
-version = "0.1.0"
+version = "0.1.1"
source = "registry+https://github.co... | 1 | 2 | 2 |
795b7db059e815fda170c5d80a08927a978a71f4 | Eli Friedman | 2015-09-02T23:28:37 | servo: Merge #7521 - Remove unnecessary uses of DOMRefCell (from eefriedman:unnecessary-refcell); r=jdm
Source-Repo: https://github.com/servo/servo
Source-Revision: 0f596cdb55ed5123ad5f9b095e22214fab8c82b7 | diff --git a/script/dom/storageevent.rs b/script/dom/storageevent.rs
index c83fb4807..3b623390e 100644
--- a/script/dom/storageevent.rs
+++ b/script/dom/storageevent.rs
@@ -2,7 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */... | 1 | 12 | 13 |
66da164aa8c5b2a1fcf308e4f913c365797cf170 | Manish Goregaokar | 2015-09-02T22:11:30 | servo: Merge #7519 - Make style clippy-free (from Manishearth:clippyfix); r=SimonSapin
(except for properties.rs)
I might add more fixes to this PR later.
r? @SimonSapin
Source-Repo: https://github.com/servo/servo
Source-Revision: d01ab617341891bf0c91f1fba0ebcf13df9150a6 | diff --git a/style/animation.rs b/style/animation.rs
index 3f1a20c52..34043e47a 100644
--- a/style/animation.rs
+++ b/style/animation.rs
@@ -798,26 +798,26 @@ fn build_identity_transform_list(list: &Vec<TransformOperation>) -> Vec<Transfor
let mut result = vec!();
for operation in list {
- match oper... | 5 | 129 | 129 |
78c3a9667c741e2af56783822391bdb02f519272 | Prabhjyot Singh Sodhi | 2015-09-02T21:03:10 | servo: Merge #7511 - make AttrVal tokens() and atom() return or panic (from psdh:attrtokato); r=Ms2ger
Fixes #7479
Source-Repo: https://github.com/servo/servo
Source-Revision: da02dba9793f373c6c9cdc1e0bd1c3411cfcc4ba | diff --git a/script/dom/attr.rs b/script/dom/attr.rs
index 134d71564..4c5f2c09d 100644
--- a/script/dom/attr.rs
+++ b/script/dom/attr.rs
@@ -75,28 +75,28 @@ impl AttrValue {
AttrValue::Atom(value)
}
- pub fn tokens<'a>(&'a self) -> Option<&'a [Atom]> {
+ pub fn as_tokens<'a>(&'a self) -> &'a [Atom... | 8 | 31 | 35 |
256c1ba1f9a61fc6adfb8b62f4008fc4e2a42b5c | Ms2ger | 2015-09-02T18:32:44 | servo: Merge #7515 - Lint devtools (from Ms2ger:devtools-lint); r=jdm
Source-Repo: https://github.com/servo/servo
Source-Revision: b1b8258a87cf4db69039057124057b0906186d43 | diff --git a/devtools/Cargo.toml b/devtools/Cargo.toml
index 0c794bd11..c55830868 100644
--- a/devtools/Cargo.toml
+++ b/devtools/Cargo.toml
@@ -20,6 +20,9 @@ path = "../msg"
[dependencies.util]
path = "../util"
+[dependencies.plugins]
+path = "../plugins"
+
[dependencies.ipc-channel]
git = "https://github.com/pc... | 11 | 74 | 71 |
6fc8e5c2f0047ec64d1c99a81901d0b40fce2332 | Brandon Fairchild | 2015-09-02T18:05:58 | servo: Merge #7499 - Improve style nit check for space after a comma (from nerith:style); r=metajack
Fixes #7345.
Source-Repo: https://github.com/servo/servo
Source-Revision: 3424e234c8c86e787edfce6dc63ed155617e0e85 | diff --git a/gfx/font.rs b/gfx/font.rs
index 4cf902e28..f0b0c1bfc 100644
--- a/gfx/font.rs
+++ b/gfx/font.rs
@@ -30,7 +30,7 @@ use util::geometry::Au;
pub trait FontHandleMethods: Sized {
fn new_from_template(fctx: &FontContextHandle, template: Arc<FontTemplateData>, pt_size: Option<Au>)
- ->... | 13 | 19 | 19 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.