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 |
|---|---|---|---|---|---|---|---|
64267bcc6d16b4b29de1c843a5c688f2a02e4c25 | Corey Farwell | 2016-04-18T18:46:12 | servo: Merge #10640 - Cleanup code regarding mimesniff 'apache bug' (from frewsxcv:apache-flag); r=KiChjang
Source-Repo: https://github.com/servo/servo
Source-Revision: 6edcad206d0888da1ba845e80d020c488c747131 | diff --git a/net/mime_classifier.rs b/net/mime_classifier.rs
index 3b97566f0..e9bc4ed4f 100644
--- a/net/mime_classifier.rs
+++ b/net/mime_classifier.rs
@@ -28,6 +28,20 @@ pub enum ApacheBugFlag {
OFF
}
+impl ApacheBugFlag {
+ /// https://mimesniff.spec.whatwg.org/#supplied-mime-type-detection-algorithm
+ ... | 2 | 16 | 16 |
cf983e351749a188f01992ab922861a28c745f9a | Peter | 2016-04-18T17:47:14 | servo: Merge #10667 - Updated euclid to version 0.6.5 (from peterjoel:euclid_0.6.5); r=frewsxcv
And updated existing usages of Matrix4 to use Matrix4D<T>
This version is necessary to complete DOMMatrix implementation.
Source-Repo: https://github.com/servo/servo
Source-Revision: 6056ecd8519f574c2ea9037a919a63edba17d0... | diff --git a/compositing/compositor.rs b/compositing/compositor.rs
index e0fb0e144..71528e8b8 100644
--- a/compositing/compositor.rs
+++ b/compositing/compositor.rs
@@ -14,7 +14,7 @@ use euclid::point::TypedPoint2D;
use euclid::rect::TypedRect;
use euclid::scale_factor::ScaleFactor;
use euclid::size::TypedSize2D;
-u... | 9 | 94 | 94 |
929f8d666933a9847d02484cc43b2050b3b6e2f0 | Emilio Cobos Álvarez | 2016-04-18T12:13:37 | servo: Merge #10682 - servo: Bump glutin (from emilio:glutin-update); r=Ms2ger
Fixes #10475
Source-Repo: https://github.com/servo/servo
Source-Revision: 080880b46a77eb84dc110e337f09d56d7d695ee2 | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index a1d24d9fa..2d5d9d40d 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -785,7 +785,7 @@ dependencies = [
"net_traits 0.0.1",
"script_traits 0.0.1",
"servo-egl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
- "servo-glutin 0.4.14 (regist... | 1 | 3 | 3 |
c7d620e138ec2d0757bdc30580a50703a48a4906 | Yoav Alon | 2016-04-18T01:10:03 | servo: Merge #10677 - update url crate (from yoava333:master); r=jdm
This fixes https://github.com/servo/servo/issues/10548
Source-Repo: https://github.com/servo/servo
Source-Revision: 8819dab4e3e13414c99844c81bfa2d7cf2bee687 | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index 0ab1a074a..a1d24d9fa 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -39,7 +39,7 @@ dependencies = [
"script_traits 0.0.1",
"style 0.0.1",
"style_tests 0.0.1",
- "url 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)",
+ "url 0.5.9 (regist... | 1 | 23 | 23 |
65f381ac69c6c44bbf36f98cd997ac1c41b7fcff | Corey Farwell | 2016-04-17T18:20:13 | servo: Merge #10666 - Refactor, cleanup HSTS related code (from frewsxcv:hsts-cleanup); r=SimonSapin
Source-Repo: https://github.com/servo/servo
Source-Revision: 317629d86e323fca8603ce278e76e1be7758dd3a | diff --git a/net/hsts.rs b/net/hsts.rs
index 336b66bf0..8bbecb86e 100644
--- a/net/hsts.rs
+++ b/net/hsts.rs
@@ -11,19 +11,19 @@ use url::Url;
use util::resource_files::read_resource_file;
#[derive(RustcDecodable, RustcEncodable, Clone)]
-pub struct HSTSEntry {
+pub struct HstsEntry {
pub host: String,
pu... | 3 | 33 | 35 |
82b9e817bf46e7e97be8cc4f300308be73190df7 | Corey Farwell | 2016-04-17T05:10:30 | servo: Merge #10662 - Make `read_resource_file` param simpler and more idiomatic (from frewsxcv:resource-param); r=jdm
`<P: AsRef<Path>>` is also what `File::open` uses as a generic type for
the parameter.
Source-Repo: https://github.com/servo/servo
Source-Revision: 9935e82de6854b334e3b7ce3bd2816c736c38650 | diff --git a/net/hsts.rs b/net/hsts.rs
index 795c1cae0..336b66bf0 100644
--- a/net/hsts.rs
+++ b/net/hsts.rs
@@ -112,7 +112,7 @@ impl HSTSList {
}
pub fn preload_hsts_domains() -> Option<HSTSList> {
- read_resource_file(&["hsts_preload.json"]).ok().and_then(|bytes| {
+ read_resource_file("hsts_preload.json").... | 3 | 6 | 8 |
77ccdd573334da36ab5234cc5326071d19c84b50 | Matt Brubeck | 2016-04-17T02:48:04 | servo: Merge #10655 - Update margins when merging inline fragments (from mbrubeck:merge-margin); r=SimonSapin
Fixes #10633. r? @pcwalton
Source-Repo: https://github.com/servo/servo
Source-Revision: fd994c457eabc9163dfef4c97f757dca97af76ff | diff --git a/layout/fragment.rs b/layout/fragment.rs
index 8f2d5b83a..5612a322b 100644
--- a/layout/fragment.rs
+++ b/layout/fragment.rs
@@ -1728,6 +1728,7 @@ impl Fragment {
this_info.insertion_point = other_info.insertion_point;
}
self.border_padding.inline_end =... | 1 | 1 | 0 |
980c8cd6eceb168e968d79ea98890b4d6b4a6f31 | Matt Brubeck | 2016-04-16T22:01:12 | servo: Merge #10643 - Fix handling of borders and padding for empty/stripped inline flows (from mbrubeck:empty-span-border); r=pcwalton
This forces fragment generation for empty inline flows, if they have borders or padding. Fixes #10533 and #2001. Also includes fixes for other bugs that were uncovered by this chang... | diff --git a/layout/construct.rs b/layout/construct.rs
index 4099e1f9a..ee9619423 100644
--- a/layout/construct.rs
+++ b/layout/construct.rs
@@ -13,6 +13,7 @@
#![deny(unsafe_code)]
+use app_units::Au;
use block::BlockFlow;
use context::LayoutContext;
use data::{HAS_NEWLY_CONSTRUCTED_FLOW, PrivateLayoutData};
@@... | 5 | 142 | 50 |
415ef37f4d45e91c567455b91c3f839684155140 | Josh Matthews | 2016-04-16T21:20:19 | servo: Merge #10650 - Disable tinyfiledialogs on non-OS X and Linux platforms (from jdm:disabletfd); r=KiChjang
I haven't been able to fix the appveyor build yet, so this gives us back a usable Windows build.
Source-Repo: https://github.com/servo/servo
Source-Revision: cc290c6e8a3a8576e57e48dd21fa74aa0e1cf3a9 | diff --git a/net/Cargo.toml b/net/Cargo.toml
index f5ec9bac7..5d1a100ec 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -32,9 +32,6 @@ git = "https://github.com/servo/ipc-channel"
[dependencies.webrender_traits]
git = "https://github.com/servo/webrender_traits"
-[dependencies.tinyfiledialogs]
-git = "https://gi... | 3 | 11 | 3 |
04d98940ed5ee99fe5235de6b574d99a5c2fce86 | Keith Yeung | 2016-04-16T19:58:31 | servo: Merge #10628 - Add missing gecko keyword values to styles (from KiChjang:extra-gecko-values); r=bholley
Not sure if I caught them all.
Part of #10408.
r? @bholley
Source-Repo: https://github.com/servo/servo
Source-Revision: cc32c66e28f129e7ec14c5a55b5f2448a6994495 | diff --git a/style/properties.mako.rs b/style/properties.mako.rs
index 4fce2ae45..b68d47ad1 100644
--- a/style/properties.mako.rs
+++ b/style/properties.mako.rs
@@ -55,8 +55,8 @@ class Keyword(object):
self.name = name
self.values = values
self.gecko_constant_prefix = gecko_constant_prefix or... | 1 | 12 | 9 |
63977aab8ddf810a6d3ad009bd71cf0370f3c173 | Rizky Luthfianto | 2016-04-16T11:09:06 | servo: Merge #10649 - Fix Document#elementFromPoint no viewport available test (from rilut:fix-elementFromPoint-no-viewport-available-test); r=nox
Source-Repo: https://github.com/servo/servo
Source-Revision: e0a100cacb812113a43b7425d8878fb1c6d153db | diff --git a/script/dom/document.rs b/script/dom/document.rs
index b76df5d6a..d87e80b7a 100644
--- a/script/dom/document.rs
+++ b/script/dom/document.rs
@@ -2687,6 +2687,10 @@ impl DocumentMethods for Document {
let window = window_from_node(self);
let viewport = window.window_size().unwrap().visible_... | 1 | 4 | 0 |
d065d94503d19db498e1cd9b8a783be5ae80a6d0 | Patrick Walton | 2016-04-16T01:28:47 | servo: Merge #10644 - layout: Make absolutely-positioned blocks not generate {ib} splits (from pcwalton:absolute-ib-split); r=mbrubeck
Improves YouTube.
Closes #10642.
r? @mbrubeck
Source-Repo: https://github.com/servo/servo
Source-Revision: 86778a0d714e4e9d2696d54ec422aede47ba3cb9 | diff --git a/layout/construct.rs b/layout/construct.rs
index 8ba85710a..4099e1f9a 100644
--- a/layout/construct.rs
+++ b/layout/construct.rs
@@ -512,19 +512,20 @@ impl<'a, ConcreteThreadSafeLayoutNode: ThreadSafeLayoutNode>
} else if flow.need_anonymous_flow(&*kid_flow) {
consecuti... | 1 | 14 | 13 |
0275db32b1d9bf2446586d023b51b1cb539d07ff | Michael Howell | 2016-04-15T23:55:12 | servo: Merge #10637 - layout: Do not propagate floats in or out of absolutely positioned flows (from notriddle:absolute_float_line_height); r=pcwalton
Fixes #10625
Source-Repo: https://github.com/servo/servo
Source-Revision: 812c4ad69916e29fe2743cee02ab71b000050987 | diff --git a/layout/sequential.rs b/layout/sequential.rs
index 6ca733249..bc4668f33 100644
--- a/layout/sequential.rs
+++ b/layout/sequential.rs
@@ -9,6 +9,7 @@ use context::{LayoutContext, SharedLayoutContext};
use display_list_builder::DisplayListBuildState;
use euclid::point::Point2D;
use floats::SpeculatedFloatP... | 1 | 10 | 4 |
4c1e1c5b550d9eba40496e0508df5f0b08f673b6 | Manish Goregaokar | 2016-04-15T22:33:41 | servo: Merge #10572 - Replace watcher threads with panic handlers (from Manishearth:and-now-his-watch-is-ended); r=asajeffrey
Source-Repo: https://github.com/servo/servo
Source-Revision: ccfd768c4bd6874c67f1c45c23d770f617452a07 | diff --git a/servo/main.rs b/servo/main.rs
index 08ed645b2..b5e2812a5 100644
--- a/servo/main.rs
+++ b/servo/main.rs
@@ -35,6 +35,7 @@ extern crate servo;
use servo::Browser;
use servo::compositing::windowing::WindowEvent;
use servo::util::opts::{self, ArgumentParsingResult};
+use servo::util::panicking::initiate_pa... | 4 | 112 | 53 |
19bcf74978c4ce6d4f1f8951534a708b02e60c99 | Rizky Luthfianto | 2016-04-15T18:31:23 | servo: Merge #10426 - Fix Document#elementsFromPoint no viewport available test (from rilut:fix-elementsFromPoint-no-viewport-available-test); r=nox
Fixes #10093 and improves #10034.
Source-Repo: https://github.com/servo/servo
Source-Revision: 44d7657487797575bb47aa295a13b496dd2cd69c | diff --git a/script/dom/document.rs b/script/dom/document.rs
index bb5f85e74..b76df5d6a 100644
--- a/script/dom/document.rs
+++ b/script/dom/document.rs
@@ -1551,8 +1551,6 @@ impl Document {
}
pub fn nodes_from_point(&self, page_point: &Point2D<f32>) -> Vec<UntrustedNodeAddress> {
- assert!(self.GetD... | 1 | 4 | 2 |
15cc82967570ca10020ad9846b2c515b47bb745b | Bobby Holley | 2016-04-15T17:09:48 | servo: Merge #10627 - Use kwargs in mako to reduce all the parameters (from bholley:mako_kwargs); r=SimonSapin
This should keep things more manageable.
Source-Repo: https://github.com/servo/servo
Source-Revision: a96b98f85b2e4dce88a48c844d251546ada8afdf | diff --git a/style/properties.mako.rs b/style/properties.mako.rs
index ee37412da..4fce2ae45 100644
--- a/style/properties.mako.rs
+++ b/style/properties.mako.rs
@@ -51,7 +51,7 @@ def to_camel_case(ident):
class Keyword(object):
def __init__(self, name, values, gecko_constant_prefix=None,
- extra... | 1 | 34 | 68 |
6828aa5e54bc8bc44d35c0c2c70247f23650f5b3 | Corey Farwell | 2016-04-15T13:20:39 | servo: Merge #10629 - Flatten a couple `net` implementations (from frewsxcv:flatten); r=Ms2ger
Working on some of the TLS related code in `net` and tried to clean up a couple implementations along the way.
Source-Repo: https://github.com/servo/servo
Source-Revision: f39ec2b15e7db394c8ca375dd1b85081d6d790a5 | diff --git a/net/file_loader.rs b/net/file_loader.rs
index a6e8eb470..db87cb333 100644
--- a/net/file_loader.rs
+++ b/net/file_loader.rs
@@ -72,54 +72,54 @@ pub fn factory(load_data: LoadData,
cancel_listener: CancellationListener) {
assert!(&*load_data.url.scheme == "file");
spawn_named("file... | 2 | 58 | 58 |
fd9cf3227232b87e748abea356c43f13a03ce21e | Alan Jeffrey | 2016-04-15T12:05:45 | servo: Merge #10345 - Replace side-effecting unwrap_or_else by if let in constellation (from asajeffrey:make-nox-happy); r=nox
This addresses @nox's comments in #10295.
Source-Repo: https://github.com/servo/servo
Source-Revision: 6c5cfb738a050944e2f7494f19f9272523ca155b | diff --git a/compositing/constellation.rs b/compositing/constellation.rs
index 817e9e3fb..0e65c36ec 100644
--- a/compositing/constellation.rs
+++ b/compositing/constellation.rs
@@ -53,6 +53,7 @@ use script_traits::{LayoutMsg as FromLayoutMsg, ScriptMsg as FromScriptMsg, Scri
use std::borrow::ToOwned;
use std::collect... | 1 | 143 | 97 |
1089f72ec0cbb839562dd2928306b5a072c6af53 | Manish Goregaokar | 2016-04-15T11:25:01 | servo: Merge #10585 - Rust upgrade to 2016-04-12 (from servo:rustup_20160414); r=Ms2ger
This currently spews out a ton of ld errors of the form
```
/home/manishearth/Mozilla/.cargo/git/checkouts/mozjs-06d7f04b6dbb8a8e/master/mozjs/js/src/jit/JitFrameIterator.h:455: error: undefined reference to 'js::jit::SnapshotRead... | diff --git a/plugins/Cargo.toml b/plugins/Cargo.toml
index 9a1820a46..7e7a3bd20 100644
--- a/plugins/Cargo.toml
+++ b/plugins/Cargo.toml
@@ -15,7 +15,7 @@ rev = "9dca15de3e8ea266d3e7e868c0f358ed4fa5f195"
optional = true
[dependencies]
-tenacious = "0.1.2"
+tenacious = "0.2.0"
[features]
default = []
diff --git ... | 9 | 67 | 56 |
46bd0bfe2d2ee2c3bb2e8e717ea4319c4d2b6947 | Josh Matthews | 2016-04-15T07:14:59 | servo: Merge #10555 - Remove unnecessary indirection in HTTP unit tests (from jdm:http_response_refactor); r=ms2ger
Many of the HTTP unit tests use a custom request factory as well as a custom request that contained test logic. This is unnecessarily convoluted, and exists solely because the complete set of headers was... | diff --git a/net/http_loader.rs b/net/http_loader.rs
index 6578a83b8..f27801af5 100644
--- a/net/http_loader.rs
+++ b/net/http_loader.rs
@@ -154,9 +154,9 @@ fn load_for_consumer(load_data: LoadData,
let ui_provider = TFDProvider;
let context = load_data.context.clone();
- match load::<WrappedHttpRequest,... | 1 | 38 | 37 |
29a95efe0956919f768f5e07bc8cb828a5a8881f | Stephen (Ziyun) Li | 2016-04-15T04:33:51 | servo: Merge #10626 - Use the document base url when resolving iframe URLs (from sliz1:10576); r=KiChjang
Fixes #10576.
Source-Repo: https://github.com/servo/servo
Source-Revision: 7faa3ed9cb87ebfa62554940e916bb7e4d04512b | diff --git a/script/dom/htmliframeelement.rs b/script/dom/htmliframeelement.rs
index 3824d981a..fc3396648 100644
--- a/script/dom/htmliframeelement.rs
+++ b/script/dom/htmliframeelement.rs
@@ -82,8 +82,7 @@ impl HTMLIFrameElement {
if url.is_empty() {
None
} else {
- ... | 1 | 1 | 2 |
70b0007da8163a15e895f9849cda779376f8518e | Daniel | 2016-04-15T02:31:23 | servo: Merge #10328 - 401 authorization UI then restart request/save successful auth creds (from DDEFISHER:master); r=jdm
Step 7 of the NCSU student project Implement HTTP authorization UI
> make an authorization UI appear when a 401 HTTP response is received (StatusCode::Unauthorized) - in load in http_loader.rs, ri... | diff --git a/net/Cargo.toml b/net/Cargo.toml
index 955ceb24f..f5ec9bac7 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -32,6 +32,9 @@ git = "https://github.com/servo/ipc-channel"
[dependencies.webrender_traits]
git = "https://github.com/servo/webrender_traits"
+[dependencies.tinyfiledialogs]
+git = "https://gi... | 4 | 66 | 3 |
58f929f6273e87acfafb51f997f0db5c1d5f9e23 | Liamsi | 2016-04-15T01:27:36 | servo: Merge #10591 - Use the document base url when resolving script URLs (from Liamsi:base_url_script_element); r=KiChjang
Does this resolve #10578?
Source-Repo: https://github.com/servo/servo
Source-Revision: 9896e530941411c10c73125de66d41512c3b4097 | diff --git a/script/dom/htmlscriptelement.rs b/script/dom/htmlscriptelement.rs
index efe5fe545..b5a6a473d 100644
--- a/script/dom/htmlscriptelement.rs
+++ b/script/dom/htmlscriptelement.rs
@@ -272,10 +272,7 @@ impl HTMLScriptElement {
// TODO: Step 15: environment settings object.
- let window = win... | 1 | 2 | 5 |
4ff2bee7660d7f5dc957b5a843c50f18d42e34b0 | Patrick Walton | 2016-04-15T00:30:28 | servo: Merge #10458 - layout: Disallow margins from collapsing through block formatting contexts per CSS 2.1 § 8.3.1 (from pcwalton:block-formatting-context-margin-collapse); r=mbrubeck
Closes #10449.
r? @mbrubeck
Source-Repo: https://github.com/servo/servo
Source-Revision: 7d7404333d75cfd1aab3df07597304d5e78617b5 | diff --git a/layout/block.rs b/layout/block.rs
index 763698d85..fa91b847b 100644
--- a/layout/block.rs
+++ b/layout/block.rs
@@ -809,6 +809,7 @@ impl BlockFlow {
// At this point, `cur_b` is at the content edge of our box. Now iterate over children.
let mut floats = self.base.floats.clone();
... | 3 | 51 | 21 |
5ef13692c9af716bdda11cc6e75a3f1225bc6b8b | Nick Fitzgerald | 2016-04-14T19:33:54 | servo: Merge #10589 - Take the stdout lock when printing profile data (from fitzgen:lock-stdout-when-printing-profile); r=larsbergstrom
Acquiring the stdout lock while printing the profile data prevents other
messages printed to stdout from being interleaved with prints from elsewhere.
Source-Repo: https://github.com... | diff --git a/profile/time.rs b/profile/time.rs
index 22b917454..6a1152a2d 100644
--- a/profile/time.rs
+++ b/profile/time.rs
@@ -12,6 +12,7 @@ use profile_traits::time::{TimerMetadataReflowType, TimerMetadataFrameType};
use std::borrow::ToOwned;
use std::cmp::Ordering;
use std::collections::BTreeMap;
+use std::io::{... | 1 | 10 | 5 |
d218e8e041561d5f5e5aa806316c765537cccbef | Alan Jeffrey | 2016-04-14T17:29:08 | servo: Merge #10609 - Make add_panic_object in thread.rs borrow rather than own the object (from asajeffrey:add-panic-object-borrows); r=Manishearth
r? @Manishearth
Source-Repo: https://github.com/servo/servo
Source-Revision: 4807dadf19175d38414130a74eb1163c65129ba6 | diff --git a/util/thread.rs b/util/thread.rs
index b8fba1aa7..aa0baac20 100644
--- a/util/thread.rs
+++ b/util/thread.rs
@@ -57,7 +57,7 @@ pub fn spawn_named<F>(name: String, f: F)
pub trait AddFailureDetails {
fn add_panic_message(&mut self, message: String);
- fn add_panic_object(&mut self, object: Box<Any... | 1 | 2 | 2 |
beee4c1f3f70c30afbfc0dd6cb237a78e435b91f | Bobby Holley | 2016-04-14T16:28:34 | servo: Merge #10556 - Automatically generate Gecko style struct setters for most keyword properties (from bholley:keyword_setters); r=SimonSapin
Source-Repo: https://github.com/servo/servo
Source-Revision: e21e5551ec96831d7b001933b2e5588aff9fbccc | diff --git a/style/properties.mako.rs b/style/properties.mako.rs
index ecbfe5af0..ee37412da 100644
--- a/style/properties.mako.rs
+++ b/style/properties.mako.rs
@@ -50,9 +50,11 @@ def to_camel_case(ident):
return re.sub("_([a-z])", lambda m: m.group(1).upper(), ident.strip("_").capitalize())
class Keyword(objec... | 1 | 125 | 93 |
f280d11debb3c325197f0fdee377e4c46d1ad4dc | Josh Matthews | 2016-04-14T15:32:22 | servo: Merge #10610 - Replace instances of infallible unwrap with expect (from jdm:unwrap); r=SimonSapin
Source-Repo: https://github.com/servo/servo
Source-Revision: 415fd93a502b47c03d2eb856cbd76a99e0bf0392 | diff --git a/compositing/constellation.rs b/compositing/constellation.rs
index e824340c1..817e9e3fb 100644
--- a/compositing/constellation.rs
+++ b/compositing/constellation.rs
@@ -867,7 +867,7 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF>
failure.parent_... | 1 | 2 | 2 |
402aae6f4efd906abbc35421e48cac781be103e9 | Alan Jeffrey | 2016-04-14T14:25:17 | servo: Merge #10587 - Added panic message to failures (from asajeffrey:add-failure-panic-message); r=Manishearth
Added the panic message to failures. This is a step towards #10334, since it gives us access to the panic error message when we fire a `mozbrowsererror` event. The remaining steps are also to record the bac... | diff --git a/compositing/constellation.rs b/compositing/constellation.rs
index 97d3fca36..e824340c1 100644
--- a/compositing/constellation.rs
+++ b/compositing/constellation.rs
@@ -653,9 +653,9 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF>
// Messages from script
-... | 9 | 88 | 37 |
b23e9152c37963ef96db52b3959669166566eae8 | Simon Sapin | 2016-04-14T13:44:35 | servo: Merge #10606 - Remove the url! plugin (from servo:remove-url-plugin); r=nox
In rust-url 1.0 the `Url` struct is going to have private fields, and there is no way to to create an aribitrary one without going through the parser.
The plugin never had a clear demonstrated performance benefit, it was made mostly be... | diff --git a/compositing/constellation.rs b/compositing/constellation.rs
index 74b09dcb4..97d3fca36 100644
--- a/compositing/constellation.rs
+++ b/compositing/constellation.rs
@@ -868,7 +868,7 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF>
parent_info,
... | 13 | 9 | 174 |
06b65449a8fe073cd974ce4eafc5765e72c473af | Stephen (Ziyun) Li | 2016-04-14T08:40:11 | servo: Merge #10594 - Remove containing_page_pipeline_id (from sliz1:10576); r=Ms2ger
Fixes https://github.com/servo/servo/issues/10569
Source-Repo: https://github.com/servo/servo
Source-Revision: 11f4d3f35609552feded6de56cc95aaf73ccc699 | diff --git a/script/dom/htmliframeelement.rs b/script/dom/htmliframeelement.rs
index 7273e063e..56ad1d3df 100644
--- a/script/dom/htmliframeelement.rs
+++ b/script/dom/htmliframeelement.rs
@@ -66,7 +66,6 @@ pub struct HTMLIFrameElement {
htmlelement: HTMLElement,
pipeline_id: Cell<Option<PipelineId>>,
su... | 1 | 1 | 10 |
cf6a33b931f06bfa20397c5627ef74d1fcdd03c8 | Michael Howell | 2016-04-13T22:02:33 | servo: Merge #10579 - Propogate transformed clipping regions to nested flows (from notriddle:overflow_premature_clip); r=pcwalton
Fixes #10559
Source-Repo: https://github.com/servo/servo
Source-Revision: 84f01d1d7b1b1b893cbb28097b65c21c5fada8b3 | diff --git a/layout/block.rs b/layout/block.rs
index 07b70070f..763698d85 100644
--- a/layout/block.rs
+++ b/layout/block.rs
@@ -48,13 +48,13 @@ use incremental::{BUBBLE_ISIZES, REFLOW, REFLOW_OUT_OF_FLOW, REPAINT};
use layout_debug;
use layout_thread::DISPLAY_PORT_SIZE_FACTOR;
use model::{CollapsibleMargins, MaybeA... | 2 | 55 | 47 |
b45babe0acf043f17712c72f9f50dbff80f36d6b | Di Xu | 2016-04-13T21:21:48 | servo: Merge #10566 - replace Fallible<()> with ErrorResult (from xudifsd:error-result); r=Ms2ger
Fixes #10541
Source-Repo: https://github.com/servo/servo
Source-Revision: 697300bb16ae2fc27e0ac507210f65de4254f33d | diff --git a/script/dom/canvasrenderingcontext2d.rs b/script/dom/canvasrenderingcontext2d.rs
index aa5c7d9f7..492b98f0e 100644
--- a/script/dom/canvasrenderingcontext2d.rs
+++ b/script/dom/canvasrenderingcontext2d.rs
@@ -19,7 +19,7 @@ use dom::bindings::codegen::Bindings::ImageDataBinding::ImageDataMethods;
use dom::b... | 4 | 20 | 20 |
3f4366dc493ab421c6ebec51e6cf0ffff984f050 | Josh Matthews | 2016-04-13T20:41:26 | servo: Merge #10573 - Do not support XHR.responseXML in worker globals. Fixes #8931 (from jdm:xhrintermittent); r=Manishearth
Source-Repo: https://github.com/servo/servo
Source-Revision: 4f6331953e3d6cdb40e2c96c9119a0a3298026c1 | diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs
index 1d7c2bffd..8d6716201 100644
--- a/script/dom/xmlhttprequest.rs
+++ b/script/dom/xmlhttprequest.rs
@@ -828,6 +828,12 @@ impl XMLHttpRequestMethods for XMLHttpRequest {
// https://xhr.spec.whatwg.org/#the-responsexml-attribute
fn G... | 1 | 6 | 0 |
620f90b82d2002a6885feb16dd895c989fcf7d71 | Tim van der Meij | 2016-04-13T19:20:05 | servo: Merge #10489 - Replace use of `debug!` by `warn!` in `constellation.rs` (from timvandermeij:constellation-debug-warn); r=jdm
Fixes #10483.
Source-Repo: https://github.com/servo/servo
Source-Revision: 628c54948a02b1c947e916fb87b98d00d1e2d537 | diff --git a/compositing/constellation.rs b/compositing/constellation.rs
index 3512fde45..74b09dcb4 100644
--- a/compositing/constellation.rs
+++ b/compositing/constellation.rs
@@ -265,14 +265,14 @@ impl<'a> Iterator for FrameTreeIterator<'a> {
let frame = match self.frames.get(&frame_id) {
... | 1 | 48 | 48 |
b4e5aada90452670c377a1719105ade9382ff032 | Emilio Cobos Álvarez | 2016-04-13T18:39:52 | servo: Merge #10557 - layout: Take in account max and min inline size for inline fragments (from emilio:inline-block-max-width); r=pcwalton
Improves MDN.
r? @mbrubeck or @pcwalton
Source-Repo: https://github.com/servo/servo
Source-Revision: 66c20b2ced7e982197f83bfe92ca6c12db8afba3 | diff --git a/layout/fragment.rs b/layout/fragment.rs
index 439e8a79f..03638be5f 100644
--- a/layout/fragment.rs
+++ b/layout/fragment.rs
@@ -1029,12 +1029,15 @@ impl Fragment {
fn style_specified_intrinsic_inline_size(&self) -> IntrinsicISizesContribution {
let flags = self.quantities_included_in_intrinsi... | 1 | 23 | 8 |
222f5c262d8d0075acb06cdf5d1414ef1c851df2 | Keith Yeung | 2016-04-13T15:58:25 | servo: Merge #10189 - Implement CORS preflight fetch (from KiChjang:cors-preflight-fetch); r=jdm
Fixes #10145.
Source-Repo: https://github.com/servo/servo
Source-Revision: d21ff2fa137155e8db649c100886962300a58140 | diff --git a/net/Cargo.toml b/net/Cargo.toml
index 58a60da2b..955ceb24f 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -44,6 +44,7 @@ openssl = "0.7.6"
rustc-serialize = "0.3"
threadpool = "1.0"
time = "0.1.17"
+unicase = "1.4.0"
url = {version = "0.5.7", features = ["heap_size"]}
uuid = { version = "0.2", fe... | 5 | 147 | 35 |
ba9c5ab8fa6b09ae60fe89538b340b84b18958d3 | Saurav Sachidanand | 2016-04-13T14:57:50 | servo: Merge #10565 - Update to byteorder 0.5 (from saurvs:master); r=Ms2ger
Finishes https://github.com/servo/servo/issues/10437.
Source-Repo: https://github.com/servo/servo
Source-Revision: d566f1c143e051b3c3d4ff9e9d8087af8b45dbd6 | diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml
index de3335887..cec58afb9 100644
--- a/compositing/Cargo.toml
+++ b/compositing/Cargo.toml
@@ -89,7 +89,7 @@ git = "https://github.com/servo/webrender"
app_units = {version = "0.2.3", features = ["plugins"]}
euclid = {version = "0.6.4", features = ["plugin... | 6 | 84 | 65 |
41e1c300b8885da67421109735ac07e7a1b75226 | Ms2ger | 2016-04-13T12:41:11 | servo: Merge #10564 - Remove a pointless Url clone (from Ms2ger:url-clone); r=Manishearth
Source-Repo: https://github.com/servo/servo
Source-Revision: 9954ee1334e6224409bf82db620d80721f56bb13 | diff --git a/compositing/constellation.rs b/compositing/constellation.rs
index e61419eeb..3512fde45 100644
--- a/compositing/constellation.rs
+++ b/compositing/constellation.rs
@@ -955,7 +955,7 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF>
// Compare the pipeline's u... | 1 | 1 | 1 |
9d5060e7f7f43081e7d71751e0385ef8438a1772 | Mauricio Collares | 2016-04-13T12:01:12 | servo: Merge #10524 - Add some Gecko-supported CSS keyword properties (from mauricioc:keyword_values); r=SimonSapin
I have added all properties that are marked with (exactly) PARSE_VALUES and H | K in [0] to properties.mako.rs, as part of #10408. A few questions and remarks:
* I created a SVG style struct. Should tho... | diff --git a/style/properties.mako.rs b/style/properties.mako.rs
index 6a8ab086b..ecbfe5af0 100644
--- a/style/properties.mako.rs
+++ b/style/properties.mako.rs
@@ -145,6 +145,9 @@ def new_style_struct(name, is_inherited, gecko_name=None, additional_methods=Non
THIS_STYLE_STRUCT = style_struct
return ""
+de... | 1 | 121 | 18 |
ac157f29b07717b9da176be24013c374b8ddb891 | Ms2ger | 2016-04-13T11:19:59 | servo: Merge #10562 - Update gcc (from servo:gcc); r=Manishearth
Source-Repo: https://github.com/servo/servo
Source-Revision: 650e3502f6e5dd4de1c1b1be3ced159d414fe4c3 | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index 8cb85eb55..87385ab85 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -48,15 +48,6 @@ dependencies = [
"webrender_traits 0.1.0 (git+https://github.com/servo/webrender_traits)",
]
-[[package]]
-name = "advapi32-sys"
-version = "0.1.2"
-source = "registry... | 1 | 7 | 20 |
032877874b93108cf1609bc3eddc93c443305d6a | Josh Matthews | 2016-04-13T10:39:38 | servo: Merge #8658 - Implement origin concept and browsing contextless documents (from jdm:origin2); r=Ms2ger+jdm
These pave the way for implementing other parts of specifications more thoroughly.
Source-Repo: https://github.com/servo/servo
Source-Revision: 9b57d8d686d361c0dfba1056523cbea12abd148b | diff --git a/script/dom/bindings/trace.rs b/script/dom/bindings/trace.rs
index 16138b336..50c3fbf68 100644
--- a/script/dom/bindings/trace.rs
+++ b/script/dom/bindings/trace.rs
@@ -89,6 +89,7 @@ use style::properties::PropertyDeclarationBlock;
use style::restyle_hints::ElementSnapshot;
use style::selector_impl::Pseud... | 5 | 117 | 20 |
046f9cdec95afea5185e3492da26fb470bf31ef2 | Alan Jeffrey | 2016-04-13T09:53:51 | servo: Merge #10554 - Fast fail_handle_script_loaded_url_in_iframe_msg (from asajeffrey:fast-fail-handle-script-loaded-url-in-iframe); r=Ms2ger
Source-Repo: https://github.com/servo/servo
Source-Revision: aec297565b582f38960902d5590f83f3f9949696 | diff --git a/compositing/constellation.rs b/compositing/constellation.rs
index ad97678fe..e61419eeb 100644
--- a/compositing/constellation.rs
+++ b/compositing/constellation.rs
@@ -943,7 +943,10 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF>
let old_pipeline = old_pipel... | 1 | 21 | 20 |
64a74b966047b402ec4b49c2686005de5f303be6 | Ulf Nilsson | 2016-04-13T02:21:54 | servo: Merge #10497 - Share prefs to content processes (from kaksmet:multiprocess-prefs); r=pcwalton
Without this `./mach run -b -- -M` would start fine but navigating to a site would fail with:
`thread 'ScriptThread PipelineId { namespace_id: PipelineNamespaceId(0), index: PipelineIndex(0) }' panicked at 'assertion ... | diff --git a/compositing/constellation.rs b/compositing/constellation.rs
index 84970bc1a..ad97678fe 100644
--- a/compositing/constellation.rs
+++ b/compositing/constellation.rs
@@ -468,6 +468,11 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF>
let child_process = if opts::get... | 4 | 26 | 4 |
9ca6888952cebce62a81f7f2f3878ad7abd8d995 | Michael Howell | 2016-04-13T01:42:38 | servo: Merge #10486 - Take transform:translate into account when computing clipping regions (from notriddle:overflow_premature_clip); r=pcwalton
Note that this only works for translation; a more general fix would
require major changes to how display lists work.
Closes #10431?
Source-Repo: https://github.com/servo/se... | diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs
index 16ac9a29e..ee40b1c75 100644
--- a/gfx/display_list/mod.rs
+++ b/gfx/display_list/mod.rs
@@ -1388,7 +1388,7 @@ impl DisplayItem {
impl fmt::Debug for DisplayItem {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
- write!(f, "{} @ ... | 2 | 43 | 11 |
68f12e956e65822551c24948d466be3b292fe10f | Stjepan Glavina | 2016-04-13T01:00:59 | servo: Merge #10546 - Fix typo: `cannot not outlive` -> `cannot outlive` (from stjepang:fix-typo-in-jsrs); r=Ms2ger
A `Root` cannot outlive the `RootCollection` it is recorded in.
The docs were saying otherwise.
r? @jdm
Source-Repo: https://github.com/servo/servo
Source-Revision: bbcbd35095bdfcd9b8e7eb329209682e8940... | diff --git a/script/dom/bindings/js.rs b/script/dom/bindings/js.rs
index d171715d4..10b9a4813 100644
--- a/script/dom/bindings/js.rs
+++ b/script/dom/bindings/js.rs
@@ -566,7 +566,7 @@ impl<T: Castable> Root<T> {
impl<T: Reflectable> Root<T> {
/// Create a new stack-bounded root for the provided JS-owned value.... | 1 | 1 | 1 |
7735f3bc75fe86ce7b28ae1cc3f5707d5138f27d | Per Lundberg | 2016-04-12T20:54:25 | servo: Merge #10488 - Removed the T prefix for the style traits (from perlun:remove-t-prefix-on-style-structs); r=SimonSapin
More work as described in #10185.
I am getting _extremely_ weird compile-time errors with this one, when it's trying to expand the `lazy_static!` macro. I think I'll need help getting that part... | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index 9d7b87761..07c6aa3a0 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -697,7 +697,7 @@ dependencies = [
"heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
"ipc-channel 0.2.1 (git+https://github.com/servo/ipc-channel)",
"la... | 5 | 49 | 48 |
8cf82a4e4fb21319dce7a9e25d76b80bad15d4dc | Patrick Walton | 2016-04-12T05:08:11 | servo: Merge #10529 - layout: Make child stacking contexts of fixed position stacking contexts also fixed position (from pcwalton:nested-fixed-position-webrender); r=glennw
Improves YouTube.
Improves the Washington Post.
Closes #10526.
r? @glennw
Source-Repo: https://github.com/servo/servo
Source-Revision: 15033850... | diff --git a/layout/webrender_helpers.rs b/layout/webrender_helpers.rs
index fcf0e204a..1d21ab4e4 100644
--- a/layout/webrender_helpers.rs
+++ b/layout/webrender_helpers.rs
@@ -28,6 +28,7 @@ trait WebRenderStackingContextConverter {
pipeline_id: webrender_traits::PipelineId,
... | 1 | 17 | 8 |
5d1196f609fc73850c723583b00f97badd903605 | Alan Jeffrey | 2016-04-12T04:27:34 | servo: Merge #10534 - Re-enabled etc/ci/check_no_unwrap (from asajeffrey:reenable-check-no-unwrap); r=Manishearth
Got `etc/ci/check_no_unwrap.sh` to pass, and re-enabled it.
Source-Repo: https://github.com/servo/servo
Source-Revision: a61fc5285fa00915d538a9672c04030804f7db2d | diff --git a/compositing/compositor.rs b/compositing/compositor.rs
index 5950e13dc..e0fb0e144 100644
--- a/compositing/compositor.rs
+++ b/compositing/compositor.rs
@@ -755,7 +755,7 @@ impl<Window: WindowMethods> IOCompositor<Window> {
if !self.pipeline_details.contains_key(&pipeline_id) {
self.pi... | 2 | 25 | 17 |
eb40d76a33480d27c0546d6a0c3b26637262b630 | Keith Yeung | 2016-04-12T02:26:38 | servo: Merge #10522 - Various cleanups in HTMLInputElement (from KiChjang:input-cleanup); r=frewsxcv
Source-Repo: https://github.com/servo/servo
Source-Revision: 934ae41fc982058048f460a77687ab026c9a909f | diff --git a/layout/wrapper.rs b/layout/wrapper.rs
index ad8ce2f51..e76af843e 100644
--- a/layout/wrapper.rs
+++ b/layout/wrapper.rs
@@ -1050,7 +1050,7 @@ impl<'ln> ThreadSafeLayoutNode for ServoThreadSafeLayoutNode<'ln> {
return TextContent::Text(data);
}
if let Some(input) = this.downca... | 4 | 55 | 66 |
67287568bbea0f69b152b250f2f2f96de178d7a9 | Simon Sapin | 2016-04-12T01:43:22 | servo: Merge #10527 - Work around a Mako bug on Windows (from servo:cr); r=larsbergstrom
http://logs.glob.uno/?c=mozilla%23servo#c403766
https://i.imgur.com/j5Zv4LX.png
https://bitbucket.org/zzzeek/mako/issues/150/line-ending-handling-broken-on-win32
r? @larsbergstrom
Source-Repo: https://github.com/servo/servo
Sour... | diff --git a/style/build.rs b/style/build.rs
index 88e301b6b..4f7eaf760 100644
--- a/style/build.rs
+++ b/style/build.rs
@@ -50,8 +50,8 @@ import sys
from mako.template import Template
from mako import exceptions
try:
- print(Template(filename=os.environ['TEMPLATE'], input_encoding='utf8').render(PRODUCT=os.envir... | 1 | 2 | 2 |
98c9c23017ab5ba6143789743f9c06f4a4248585 | Emilio Cobos Álvarez | 2016-04-11T23:48:49 | servo: Merge #10224 - webgl: Add attribute validations and other nits (from emilio:shader-type-validations); r=jdm
Fixes https://github.com/servo/servo/issues/9958
Depends on a bunch of prs, and needs a test.
r? @jdm
Source-Repo: https://github.com/servo/servo
Source-Revision: f0014bd9cd5ac5db3e5a2f9fa8eafeb992df30... | diff --git a/canvas/webgl_paint_thread.rs b/canvas/webgl_paint_thread.rs
index c88f2a378..30e47c060 100644
--- a/canvas/webgl_paint_thread.rs
+++ b/canvas/webgl_paint_thread.rs
@@ -6,7 +6,7 @@ use canvas_traits::{CanvasCommonMsg, CanvasMsg, CanvasPixelData, CanvasData, Fro
use euclid::size::Size2D;
use gleam::gl;
us... | 6 | 60 | 32 |
30e8506d477bc9fd48ced395605862fedf01a55f | Patrick Walton | 2016-04-11T23:09:37 | servo: Merge #10493 - gfx: Clamp the font size we supply to Core Text to 0.01pt (from pcwalton:inline-font-size-zero); r=mbrubeck
Core Text treats a font size of 0.0 as 12.0, which is obviously not what
we want.
Improves Twitter.
Improves Reddit /r/rust.
Closes #10492.
r? @mbrubeck
Source-Repo: https://github.com/... | diff --git a/gfx/font_context.rs b/gfx/font_context.rs
index 7cb95e6fc..ff7715e2c 100644
--- a/gfx/font_context.rs
+++ b/gfx/font_context.rs
@@ -38,7 +38,7 @@ fn create_scaled_font(template: &Arc<FontTemplateData>, pt_size: Au) -> ScaledFo
#[cfg(target_os = "macos")]
fn create_scaled_font(template: &Arc<FontTemplat... | 3 | 28 | 17 |
e30040d1edf216ceaea3332bfb6446bf6ca61ee9 | Jack Moffitt | 2016-04-11T21:07:05 | servo: Merge #10445 - Use better JS engine defaults (from metajack:enable-asmjs); r=jdm
This adds in preferences for all the SM 39 available options (as
retrieved from Gecko), and uses the same defaults as Gecko. A few
properties are not supported yet, and incremental GC is still always
disabled regardless of the pref... | diff --git a/script/script_runtime.rs b/script/script_runtime.rs
index 509a7e93e..6147fc8bd 100644
--- a/script/script_runtime.rs
+++ b/script/script_runtime.rs
@@ -13,6 +13,8 @@ use js::glue::CollectServoSizes;
use js::jsapi::{DisableIncrementalGC, GCDescription, GCProgress};
use js::jsapi::{JSContext, JS_GetRuntime... | 3 | 195 | 3 |
d241ce7aa036e47971aea827dbaaff46192cbc8a | Ms2ger | 2016-04-11T19:03:53 | servo: Merge #10518 - Update smallvec (from Ms2ger:smallvec); r=KiChjang
Source-Repo: https://github.com/servo/servo
Source-Revision: b214205ba97cd031f19134431dae9bb4b9aecdb1 | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index 4a782120e..3ee4f743f 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -713,7 +713,7 @@ dependencies = [
"servo-fontconfig 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"servo-skia 0.20130412.6 (registry+https://github.com/rust-lang/crat... | 1 | 7 | 7 |
c5cf9ab13e91beb89a9441fc72a0301756ee9b8c | Ulf Nilsson | 2016-04-11T18:24:27 | servo: Merge #10496 - Fix sandboxing on OS X (from kaksmet:fix-sandbox); r=pcwalton
The main issue was resources_dir_path. Every time it was called it would start from the executable's path and walk up the hierarchy to find a directory named "resources". The sandbox was granted permission to read from the found resour... | diff --git a/compositing/sandboxing.rs b/compositing/sandboxing.rs
index 41273cad0..945e0605f 100644
--- a/compositing/sandboxing.rs
+++ b/compositing/sandboxing.rs
@@ -16,7 +16,9 @@ pub fn content_process_sandbox_profile() -> Profile {
Operation::FileReadAll(PathPattern::Subpath(PathBuf::from("/Library/Fonts"... | 3 | 30 | 26 |
39cdf8848a58fc53a9459eb509a670e8940f353a | Daniel Robertson | 2016-04-11T16:41:07 | servo: Merge #10490 - Add tests and clean up `FlexFlow::(block|inline)_mode_assign_inline_sizes` (from danlrobertson:correct-size); r=SimonSapin
Clean up `block_mode_assign_inline_sizes` and `inline_mode_assign_inline_sizes` and add extra css tests.
r? @SimonSapin
Source-Repo: https://github.com/servo/servo
Source-R... | diff --git a/layout/flex.rs b/layout/flex.rs
index 4c8f749b0..a506370c1 100644
--- a/layout/flex.rs
+++ b/layout/flex.rs
@@ -186,14 +186,20 @@ impl FlexFlow {
// FIXME (mbrubeck): Get correct mode for absolute containing block
let containing_block_mode = self.block_flow.base.writing_mode;
+ l... | 1 | 11 | 10 |
ff31f233120afe786802fb26db411549d318f704 | Corey Farwell | 2016-04-11T15:06:31 | servo: Merge #10513 - Extract out 'is the html body element' CSSOM concept (from frewsxcv:is_the_html_body_element); r=Ms2ger
Source-Repo: https://github.com/servo/servo
Source-Revision: f9f3b7529ba2c66b6203b0742c4cd89d03ddd772 | diff --git a/script/dom/htmlbodyelement.rs b/script/dom/htmlbodyelement.rs
index 8ac184ea5..ca133b88d 100644
--- a/script/dom/htmlbodyelement.rs
+++ b/script/dom/htmlbodyelement.rs
@@ -47,6 +47,16 @@ impl HTMLBodyElement {
let element = HTMLBodyElement::new_inherited(localName, prefix, document);
Node... | 2 | 12 | 6 |
5a6dc235407ff69af8d612fc60fe0a87b6ad72be | Corey Farwell | 2016-04-11T14:27:08 | servo: Merge #10519 - Update 'Extensions to the HTMLElement Interface' CSSOM spec links (from frewsxcv:links); r=KiChjang
Source-Repo: https://github.com/servo/servo
Source-Revision: 6939ff53c40d31fe96acca9f0e62641a59dbc086 | diff --git a/script/dom/htmlelement.rs b/script/dom/htmlelement.rs
index b3c95f891..566a86d88 100644
--- a/script/dom/htmlelement.rs
+++ b/script/dom/htmlelement.rs
@@ -233,7 +233,7 @@ impl HTMLElementMethods for HTMLElement {
document.commit_focus_transaction(FocusType::Element);
}
- // https://draf... | 1 | 5 | 5 |
82e21240cf6556a29aa342934dccf80ec386fc73 | Keith Yeung | 2016-04-11T12:27:02 | servo: Merge #10502 - Add API base url method to global objects (from KiChjang:fix-open-url-base); r=Ms2ger
This adds an `api_base_url` function to global objects, which fixes `open-url-base.htm` under XMLHttpRequest.
Source-Repo: https://github.com/servo/servo
Source-Revision: 07304235cc88c3bb823e072e31da2dadcf0ed1b... | diff --git a/script/dom/bindings/global.rs b/script/dom/bindings/global.rs
index 9cac7d9b9..e50f8ace9 100644
--- a/script/dom/bindings/global.rs
+++ b/script/dom/bindings/global.rs
@@ -143,6 +143,17 @@ impl<'a> GlobalRef<'a> {
}
}
+ /// Get the [base url](https://html.spec.whatwg.org/multipage/#api-b... | 2 | 12 | 1 |
a743f079d5348844b8315704f4cffa52de8bd083 | Ms2ger | 2016-04-11T08:43:48 | servo: Merge #10516 - Various cleanup (from Ms2ger:cleanup); r=nox
Source-Repo: https://github.com/servo/servo
Source-Revision: 5adf36231e739f57dc7d1d85b37fb2a47b8f5d74 | diff --git a/script/dom/bindings/js.rs b/script/dom/bindings/js.rs
index 1736758e7..d171715d4 100644
--- a/script/dom/bindings/js.rs
+++ b/script/dom/bindings/js.rs
@@ -606,6 +606,12 @@ impl<T: Reflectable> PartialEq for Root<T> {
}
}
+impl<T: Reflectable> Clone for Root<T> {
+ fn clone(&self) -> Root<T> {
+... | 3 | 20 | 29 |
cda5a9f934f1cfb8bd0d82e3e1249cfb658d37c5 | Corey Farwell | 2016-04-11T03:57:11 | servo: Merge #10514 - Various 'element.rs' cleanup (from frewsxcv:element-cleanup); r=KiChjang
Source-Repo: https://github.com/servo/servo
Source-Revision: 5aa62b3621f4793c559f6c7eb77e06259b0a00ea | diff --git a/script/dom/document.rs b/script/dom/document.rs
index f10c04ab8..ad68be717 100644
--- a/script/dom/document.rs
+++ b/script/dom/document.rs
@@ -903,7 +903,7 @@ impl Document {
for element in new_target.upcast::<Node>()
.inclusive_ancestors()
... | 9 | 29 | 31 |
4df53699e7dc9d846eaac4add16c5f2b65a5d7cc | Nazım Can Altınova | 2016-04-09T22:08:08 | servo: Merge #10503 - Replaced SendParam with BodyInit (from canaltinova:master); r=KiChjang
Replaced SendParam with BodyInit. Fixes #9433 .
Source-Repo: https://github.com/servo/servo
Source-Revision: e10ab5ae532037de37295680ce38eca27e2f5b95 | diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs
index 4569a9e7d..ab8f8f964 100644
--- a/script/dom/xmlhttprequest.rs
+++ b/script/dom/xmlhttprequest.rs
@@ -10,9 +10,9 @@ use dom::bindings::codegen::Bindings::BlobBinding::BlobMethods;
use dom::bindings::codegen::Bindings::EventHandlerBinding::E... | 1 | 6 | 8 |
540860b58e87420da25f37e49bc9b59f4157bd7a | Nazım Can Altınova | 2016-04-09T19:51:04 | servo: Merge #10501 - Removed unused imports from methods.rs (from canaltinova:master); r=KiChjang
Fixes #10500
Source-Repo: https://github.com/servo/servo
Source-Revision: 5a3d6850c686695a6a4c4f0e78bc19da6dfaddb2 | diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs
index fa5f165a2..d99dc3f10 100644
--- a/net/fetch/methods.rs
+++ b/net/fetch/methods.rs
@@ -12,7 +12,7 @@ use hyper::header::{Authorization, Basic, CacheDirective, ContentEncoding, Encod
use hyper::header::{ContentType, Headers, IfModifiedSince, IfNoneMatch};
u... | 1 | 1 | 1 |
ac8a03f92023b2c807e1114a3a156a7da8fd2fb7 | Shiroy | 2016-04-09T10:26:57 | servo: Merge #10203 - Avoid script execution when not found (from Shiroy:script-not-found-executed); r=Ms2ger
Fix #8391
If the status code is an error or has not been received, we discard data and prevent the script from being executed.
Source-Repo: https://github.com/servo/servo
Source-Revision: 4720992ffcf23a166b3... | diff --git a/script/dom/htmlscriptelement.rs b/script/dom/htmlscriptelement.rs
index 3a609a097..efe5fe545 100644
--- a/script/dom/htmlscriptelement.rs
+++ b/script/dom/htmlscriptelement.rs
@@ -28,6 +28,7 @@ use dom::window::ScriptHelpers;
use encoding::label::encoding_from_whatwg_label;
use encoding::types::{DecoderT... | 1 | 20 | 3 |
9cf5e8544fdb02a3e42445959871601bf62cf874 | Patrick Walton | 2016-04-09T01:21:21 | servo: Merge #10494 - layout: Make inner scroll wrappers acquire the overflow region of their contents (from pcwalton:overflow-scroll-nested-fixed-height); r=mbrubeck
Makes Twitter pages show up when scrolling, if WebRender is not in use.
WebRender does not yet support overflow:scroll.
r? @mbrubeck
Source-Repo: http... | diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs
index f4c6094f0..d2ca90fa8 100644
--- a/layout/display_list_builder.rs
+++ b/layout/display_list_builder.rs
@@ -1308,7 +1308,9 @@ impl FragmentDisplayListBuilding for Fragment {
}
};
let overflow = match mode {
-... | 1 | 3 | 1 |
02c75e2e7fb003253a3d815ac8d69d6658156ede | malayaleecoder | 2016-04-08T22:24:40 | servo: Merge #10320 - Rename imm_child_iter() and child_iter() (from malayaleecoder:master); r=KiChjang
Fixes #10286
Source-Repo: https://github.com/servo/servo
Source-Revision: 0a1efe4578e43c4ffc2f90ff0118660899a83ac4 | diff --git a/layout/block.rs b/layout/block.rs
index 103ac4c67..07b70070f 100644
--- a/layout/block.rs
+++ b/layout/block.rs
@@ -712,7 +712,7 @@ impl BlockFlow {
// Shift all kids down (or up, if margins are negative) if necessary.
if block_start_margin_value != Au(0) {
- for kid in self.... | 11 | 40 | 40 |
7b31b1a1a01839a3dbea8b795502082548c73f38 | Per Lundberg | 2016-04-08T19:54:28 | servo: Merge #10324 - Renamed the style structs (from perlun:rename-style-structs); r=bholley
Renamed style structs.
The idea is to rename all style structs from Foo to ServoFoo, as described out in #10185.
Source-Repo: https://github.com/servo/servo
Source-Revision: 4da38cdd7c26d24d6c9de75d3f3509ae372dd25b | diff --git a/gfx/font.rs b/gfx/font.rs
index 8e5a80939..304a201e2 100644
--- a/gfx/font.rs
+++ b/gfx/font.rs
@@ -16,7 +16,7 @@ use std::str;
use std::sync::Arc;
use std::sync::atomic::{ATOMIC_USIZE_INIT, AtomicUsize, Ordering};
use style::computed_values::{font_stretch, font_variant, font_weight};
-use style::proper... | 5 | 73 | 64 |
62e7e2adb292d1c83c44712de0fcc71cd4919317 | Keith Yeung | 2016-04-08T16:30:15 | servo: Merge #10471 - Use mime! macro in fetch methods (from KiChjang:mime-macro); r=emilio
Source-Repo: https://github.com/servo/servo
Source-Revision: 217e45006bc04a932650cbfda52388ce1d2a5698 | diff --git a/net/Cargo.toml b/net/Cargo.toml
index f8c9a6bb5..58a60da2b 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -38,6 +38,7 @@ flate2 = "0.2.0"
hyper = { version = "0.8", features = [ "serde-serialization" ] }
immeta = "0.3.1"
log = "0.3.5"
+mime = "0.2.0"
mime_guess = "1.6.0"
openssl = "0.7.6"
rustc-... | 4 | 16 | 14 |
de3f36a7cf4ffe962f627298d661675fa608cea1 | Daniel Robertson | 2016-04-08T15:05:32 | servo: Merge #10444 - Correct x and y input for origin_rect (from danlrobertson:fix9824); r=asajeffrey
Fix error in construction of the `origin_rect` for `UnioningFragmentBorderBoxIterator`.
r? @asajeffrey
Source-Repo: https://github.com/servo/servo
Source-Revision: a026e8626731bbc638f84fcd5747134eb153ac6a | diff --git a/layout/query.rs b/layout/query.rs
index 2d914ece8..e5f58289c 100644
--- a/layout/query.rs
+++ b/layout/query.rs
@@ -442,7 +442,7 @@ impl FragmentBorderBoxIterator for UnioningFragmentScrollAreaIterator {
self.level = Some(level);
self.is_child = true;
self... | 1 | 1 | 1 |
94015b1a1787c1e61b1b0627e3e7ff6877ad6031 | UK992 | 2016-04-08T11:45:03 | servo: Merge #10466 - Silent some warnings (from UK992:fix); r=KiChjang
Source-Repo: https://github.com/servo/servo
Source-Revision: 6150e174c14b74ad560ab3b4f3f6ded9ba95b7e2 | diff --git a/util/thread.rs b/util/thread.rs
index f32e6ccd4..9451d0a43 100644
--- a/util/thread.rs
+++ b/util/thread.rs
@@ -7,7 +7,7 @@ use opts;
use serde::Serialize;
use std::borrow::ToOwned;
use std::io::{Write, stderr};
-use std::panic::{PanicInfo, take_handler, set_handler};
+use std::panic::{PanicInfo, take_h... | 1 | 6 | 7 |
e24da73fbbd2c5d389f2040b1f771fc606a57627 | Arnaud Marant | 2016-04-08T06:21:58 | servo: Merge #10463 - Issue #10456 Remove unused import warnings in HTMLLegendElement (from amarant:10456-HTMLLegendElement-warnings); r=KiChjang
Fixes #10456.
Source-Repo: https://github.com/servo/servo
Source-Revision: b6c4f5157183ee976a915a4073120102cc7f430e | diff --git a/script/dom/htmllegendelement.rs b/script/dom/htmllegendelement.rs
index 343f28f9c..d0b348711 100644
--- a/script/dom/htmllegendelement.rs
+++ b/script/dom/htmllegendelement.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://mozi... | 1 | 1 | 2 |
cf210da0c937e2b4edfdbf324318dd58fafc33c0 | Manish Goregaokar | 2016-04-08T05:20:18 | servo: Merge #10470 - Remove str_to_string lint (from Manishearth:kill-str-string); r=KiChjang
Specialization makes all of the options equally efficient.
Source-Repo: https://github.com/servo/servo
Source-Revision: f31aa5cb86857a7479096e7dadf8dcac12151f76 | diff --git a/plugins/lib.rs b/plugins/lib.rs
index b949d516b..c4e21c0ad 100644
--- a/plugins/lib.rs
+++ b/plugins/lib.rs
@@ -70,5 +70,4 @@ fn register_clippy(reg: &mut Registry) {
}
#[cfg(not(feature = "clippy"))]
fn register_clippy(reg: &mut Registry) {
- reg.register_late_lint_pass(box lints::str_to_string::Str... | 4 | 0 | 51 |
16ef16cf6c09ab6b74506afe728aa9f6a1595ced | Matt Brubeck | 2016-04-08T04:40:11 | servo: Merge #10469 - Some minor layout cleanups (from mbrubeck:layout-misc); r=pcwalton
* Prevent unnecessary copying in `strip_leading_whitespace_if_necessary`
* Remove unused argument to `adjust_clipping_region_for_children` (silences a compiler warning)
r? @pcwalton
Source-Repo: https://github.com/servo/servo
So... | diff --git a/layout/block.rs b/layout/block.rs
index 519a76c08..103ac4c67 100644
--- a/layout/block.rs
+++ b/layout/block.rs
@@ -1921,8 +1921,7 @@ impl Flow for BlockFlow {
CoordinateSystem::Own);
self.fragment.adjust_clipping_region_for_children(
&mu... | 4 | 8 | 9 |
0832ba813496f4d0250eca10dca394b8c515575b | Stjepan Glavina | 2016-04-08T03:59:07 | servo: Merge #10465 - Fix rebasing error (from stjepang:rescue-jit-prefs); r=KiChjang
This PR mistakenly removed JIT enabling/disabling by preference:
https://github.com/servo/servo/pull/10342/files
Look for `get_pref`.
I'm putting the missing piece of code into the appropriate place in
script_runtime.rs
r? @KiChjan... | diff --git a/script/script_runtime.rs b/script/script_runtime.rs
index 35c0bdd61..509a7e93e 100644
--- a/script/script_runtime.rs
+++ b/script/script_runtime.rs
@@ -13,7 +13,7 @@ use js::glue::CollectServoSizes;
use js::jsapi::{DisableIncrementalGC, GCDescription, GCProgress};
use js::jsapi::{JSContext, JS_GetRuntime... | 2 | 11 | 2 |
e41811345fdc75aa166db3be224ee97ffc15a3eb | Alan Jeffrey | 2016-04-08T01:34:38 | servo: Merge #10423 - Removed sources of panic from piepline.rs (from asajeffrey:constellation-pipeline-hardening); r=emilio,jdm
Fixes #10422.
Source-Repo: https://github.com/servo/servo
Source-Revision: bcac1a3c95f6e34b6b0c060ee1f8283d0a384bf8 | diff --git a/compositing/pipeline.rs b/compositing/pipeline.rs
index bb96e2a65..8c22ce034 100644
--- a/compositing/pipeline.rs
+++ b/compositing/pipeline.rs
@@ -124,13 +124,19 @@ impl Pipeline {
/// Returns the channels wrapped in a struct.
pub fn create<LTF, STF>(state: InitialPipelineState)
... | 1 | 59 | 29 |
89b3ccaea64fd9edc58584d6fb1131d75b13a9fa | Matt Brubeck | 2016-04-08T00:31:17 | servo: Merge #10361 - Fixes for insertion point caret rendering (from mbrubeck:empty-caret); r=pcwalton
This contains several fixes for the code to position and render the insertion point. The main effect is that the insertion point is now rendered correctly when in an empty input field. See the individual commit me... | diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs
index 0c04c8394..8832eac31 100644
--- a/layout/display_list_builder.rs
+++ b/layout/display_list_builder.rs
@@ -1014,13 +1014,9 @@ impl FragmentDisplayListBuilding for Fragment {
// display list items.
let mut clip = (*clip).... | 3 | 81 | 37 |
5988eadbf229523f34927cc16713b5f6905ef2b3 | Keith Yeung | 2016-04-07T22:09:41 | servo: Merge #10438 - Properly inherit text decorations (from KiChjang:text-decoration-fix); r=mbrubeck
Fixes #8684.
Fixes #8783.
Source-Repo: https://github.com/servo/servo
Source-Revision: eda8784c34012b1916b524fb7afd7707c795c5e7 | diff --git a/style/properties.mako.rs b/style/properties.mako.rs
index 290e048af..46bc02823 100644
--- a/style/properties.mako.rs
+++ b/style/properties.mako.rs
@@ -2314,30 +2314,24 @@ pub mod longhands {
}
fn derive<Cx: TContext>(context: &Cx) -> computed_value::T {
- // Start with no de... | 1 | 15 | 21 |
178f0bf31bf652565213dd634d730c5bd578ac00 | Patrick Walton | 2016-04-07T21:16:23 | servo: Merge #10462 - servo: Update WebRender (from pcwalton:wrup3); r=glennw
Closes #10256.
r? @glennw
Source-Repo: https://github.com/servo/servo
Source-Revision: 1af756c07fc2a0610c455b659890790b35b2ef03 | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index 122dca34b..7116af5ce 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -2308,9 +2308,10 @@ dependencies = [
[[package]]
name = "webrender"
version = "0.1.0"
-source = "git+https://github.com/servo/webrender#03357a5ae9472723a8a9400f561367796390e6d2"
+source... | 1 | 3 | 2 |
44e0dfa178608ceebcb4b15153518284834e7364 | Matt Brubeck | 2016-04-07T17:52:37 | servo: Merge #10402 - Avoid unnecessary Arc::clone and Arc::make_mut (from mbrubeck:make_mut); r=pcwalton
r? @pcwalton
Source-Repo: https://github.com/servo/servo
Source-Revision: 39ab006c8f71404d2fcd81f7715b7b9e47d5aead | diff --git a/layout/construct.rs b/layout/construct.rs
index 6ee484e4c..8ba85710a 100644
--- a/layout/construct.rs
+++ b/layout/construct.rs
@@ -973,7 +973,7 @@ impl<'a, ConcreteThreadSafeLayoutNode: ThreadSafeLayoutNode>
block_flow));
let fragment = Fragment::from_opaque_node_and_style(node.o... | 2 | 13 | 1 |
882de9004140c8b3e4fea01c23c97c008a0d73ba | Patrick Walton | 2016-04-07T16:00:13 | servo: Merge #10450 - layout: Allow non-absolutely-positioned elements with `overflow: scroll` set to be scrolled (from pcwalton:overflow-scroll-non-positioned); r=mbrubeck
This makes them establish stacking contexts, which is a CSS 2.1 spec
violation. However, we were already violating the spec here for
absolutely-po... | diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs
index 2a132cf7f..16ac9a29e 100644
--- a/gfx/display_list/mod.rs
+++ b/gfx/display_list/mod.rs
@@ -725,8 +725,15 @@ impl fmt::Debug for StackingContext {
"Pseudo-StackingContext"
};
- write!(f, "{} at {:?} with overflow {:?}: {... | 4 | 24 | 28 |
9b5904c955c01dea077b4dab965afe9bb719348d | Ms2ger | 2016-04-07T10:48:20 | servo: Merge #10453 - Update uuid (from Ms2ger:uuid); r=KiChjang
Source-Repo: https://github.com/servo/servo
Source-Revision: 5cf89fea48fb1fc58fd665384cbaa2060decff31 | diff --git a/net/Cargo.toml b/net/Cargo.toml
index 81795b40a..f8c9a6bb5 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -44,5 +44,5 @@ rustc-serialize = "0.3"
threadpool = "1.0"
time = "0.1.17"
url = {version = "0.5.7", features = ["heap_size"]}
-uuid = "0.1.16"
+uuid = { version = "0.2", features = ["v4"] }
we... | 6 | 33 | 42 |
dd09f8f0d18772da2652f648f28d0584156e78a0 | Stjepan Glavina | 2016-04-07T10:08:55 | servo: Merge #10430 - Remove URL.base (it was removed from the spec) (from stjepang:remove-url-base); r=Ms2ger
Spec: https://url.spec.whatwg.org/#concept-url-url
Discussion on IRC: http://logs.glob.uno/?c=mozilla%23servo&s=1+Apr+2016&e=1+Apr+2016#c397947
r? @nox
Source-Repo: https://github.com/servo/servo
Source-Rev... | diff --git a/script/dom/url.rs b/script/dom/url.rs
index 06e1af5b1..6438e2585 100644
--- a/script/dom/url.rs
+++ b/script/dom/url.rs
@@ -13,7 +13,7 @@ use dom::urlhelper::UrlHelper;
use dom::urlsearchparams::URLSearchParams;
use std::borrow::ToOwned;
use std::default::Default;
-use url::{Host, ParseResult, Url, UrlP... | 1 | 18 | 24 |
bb8a03012de8cdb0e22aea716c31f27043fff547 | Alan Jeffrey | 2016-04-07T05:18:10 | servo: Merge #10420 - Added --soft-fail option (from asajeffrey:add-soft-fail-option); r=KiChjang
At the moment, wptrunner always runs the WPT tests with `servo --hard-fail`. To test hardening, we need to switch off `--hard-fail`. This PR introduces a `--soft-fail` option to do that.
Source-Repo: https://github.com/s... | diff --git a/util/opts.rs b/util/opts.rs
index 30fc68275..403095154 100644
--- a/util/opts.rs
+++ b/util/opts.rs
@@ -541,6 +541,7 @@ pub fn from_cmdline_args(args: &[String]) -> ArgumentParsingResult {
"A user stylesheet to be added to every document", "file.css");
opts.optflag("z", "headless", ... | 1 | 2 | 1 |
ff08013d744b5d2b6d12c9f3088c29beefbd3edd | Josh Matthews | 2016-04-07T03:30:23 | servo: Merge #10435 - Fix warnings from old dependencies (from jdm:glgenbump); r=Ms2ger
Source-Repo: https://github.com/servo/servo
Source-Revision: dc3f199043d4cf74b83f33c94960e199c0cfa7b3 | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index c79dc272b..eb412f127 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -30,7 +30,7 @@ dependencies = [
"net_tests 0.0.1",
"net_traits 0.0.1",
"net_traits_tests 0.0.1",
- "offscreen_gl_context 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)... | 1 | 18 | 29 |
95e9c94b202ac66cae85e660721523fe34786fae | Olaf Buddenhagen | 2016-04-06T23:48:03 | servo: Merge #10447 - Update ipc-channel for two important bug fixes (from antrik:update-ipc_channel-5); r=jdm
This fixes https://github.com/servo/servo/issues/10260 by pulling in
https://github.com/servo/ipc-channel/pull/61 (fix receive for messages
close to packet size) and https://github.com/servo/ipc-channel/pull/... | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index aca54108e..c79dc272b 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -976,7 +976,7 @@ dependencies = [
[[package]]
name = "ipc-channel"
version = "0.2.1"
-source = "git+https://github.com/servo/ipc-channel#0774ccb79b1b2c2c7518e0d14010c1ab3e5c247d"
+sourc... | 1 | 10 | 2 |
a04aab45e95b8e0a5887b365b9054f034d83a5c3 | Mauricio Collares | 2016-04-06T21:48:15 | servo: Merge #10407 - Move some CSS properties to match Gecko's representation (from mauricioc:issue10403); r=bholley
Fixes #10403. Animation had an extra transition-delay property, which was also moved to Box. Let me know if I should squash the commits.
Source-Repo: https://github.com/servo/servo
Source-Revision: 2... | diff --git a/layout/block.rs b/layout/block.rs
index 72bd5de12..390810e98 100644
--- a/layout/block.rs
+++ b/layout/block.rs
@@ -359,7 +359,7 @@ impl CandidateBSizeIterator {
};
// If the style includes `box-sizing: border-box`, subtract the border and padding.
- let adjustment_for_box_sizing... | 10 | 92 | 90 |
8f5b7fa32b6e0897e4365ed766db573d22e9122a | Alan Jeffrey | 2016-04-06T20:27:25 | servo: Merge #10424 - Removed uses of unwrap in compositor (from asajeffrey:compositor-hardening); r=Wafflespeanut
Fixes #10421.
Source-Repo: https://github.com/servo/servo
Source-Revision: 0e51be0c37c74a440d03b295c75a38d5f603c013 | diff --git a/compositing/compositor.rs b/compositing/compositor.rs
index ad5fc71b7..5950e13dc 100644
--- a/compositing/compositor.rs
+++ b/compositing/compositor.rs
@@ -362,8 +362,10 @@ impl webrender_traits::RenderNotifier for RenderNotifier {
let pipeline_id = pipeline_id.from_webrender();
if let ... | 1 | 124 | 64 |
637236cbd39f2b7e07ae12a86fb77946f262c9e5 | Lars Bergstrom | 2016-04-06T19:45:59 | servo: Merge #10414 - Update mozjs_sys to pick up Aarch64 fix (from larsbergstrom:mozjs_aarch_update); r=KiChjang
r? @Ms2ger @jdm
Source-Repo: https://github.com/servo/servo
Source-Revision: b3b6a51e22911947dde779a235fe66b3c21d718d | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index 935e60306..35e6f722b 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -1252,7 +1252,7 @@ dependencies = [
[[package]]
name = "mozjs_sys"
version = "0.0.0"
-source = "git+https://github.com/servo/mozjs#5ac99916d4b9c1d1c2ffc896619f1daaf8fc84c4"
+source = "g... | 1 | 1 | 1 |
68c1977d011769dbabe1fb6e2723d5ccf1e94e9a | Ms2ger | 2016-04-06T18:25:25 | servo: Merge #10410 - Update webdriver (from Ms2ger:update-webdriver); r=jdm
Source-Repo: https://github.com/servo/servo
Source-Revision: 35fbcbe9a8cc6bf23debf6d84bdeb7c37f436741 | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index 927d1aab7..935e60306 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -2284,14 +2284,13 @@ dependencies = [
[[package]]
name = "webdriver"
-version = "0.7.0"
+version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependenci... | 3 | 4 | 5 |
d38100ff99450861d79c4a65b972a45c69a3a370 | Ms2ger | 2016-04-06T17:44:55 | servo: Merge #10173 - Bump Rust to 2016-04-06 (from servo:rustup); r=nox
Source-Repo: https://github.com/servo/servo
Source-Revision: 14eabf0d32b94dba0c0ec0ffcc3b9b950d1e2821 | diff --git a/plugins/Cargo.toml b/plugins/Cargo.toml
index 298be495f..cb4818d1e 100644
--- a/plugins/Cargo.toml
+++ b/plugins/Cargo.toml
@@ -15,7 +15,7 @@ rev = "9dca15de3e8ea266d3e7e868c0f358ed4fa5f195"
optional = true
[dependencies]
-tenacious = "0.1.0"
+tenacious = "0.1.2"
url = {version = "0.5.7", features = [... | 4 | 9 | 9 |
95645573242bbe0ca15c2d4221aca284e1159217 | Ms2ger | 2016-04-06T14:31:22 | servo: Merge #10429 - Remove some unused dependencies from util (from servo:util); r=KiChjang
Source-Repo: https://github.com/servo/servo
Source-Revision: 0b37c7559509b8250d09f4d8072e45598697d832 | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index 053d6ed1a..28b602cb3 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -2184,7 +2184,6 @@ version = "0.0.1"
dependencies = [
"app_units 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
"bitflags 0.3.3 (registry+https://github.com/rust-lang... | 3 | 0 | 12 |
bf615cc036bd176e9d75e9d281f75f2c8d58a1a0 | Michael Howell | 2016-04-06T10:00:51 | servo: Merge #10419 - Whitespace stripping should not result in a dangling, open border (from notriddle:whitespace_border); r=mbrubeck
No open issue (found it while working on #7681).
Source-Repo: https://github.com/servo/servo
Source-Revision: cb943b016f77b9d670291c5026b8566b5c0d5edf | diff --git a/layout/construct.rs b/layout/construct.rs
index d9727e5c8..6ee484e4c 100644
--- a/layout/construct.rs
+++ b/layout/construct.rs
@@ -1782,20 +1782,20 @@ pub fn strip_ignorable_whitespace_from_start(this: &mut LinkedList<Fragment>) {
remaining_fragment.inline_context {
... | 2 | 9 | 7 |
b5dd90f0751c18870cfe68656b863f808e7afdc5 | Rahul Sharma | 2016-04-06T07:51:21 | servo: Merge #10342 - Refactors some entities from script_thread into script_runtime (from creativcoder:script-runtime-module); r=Ms2ger
Fixes #10271.
Source-Repo: https://github.com/servo/servo
Source-Revision: 883cde424b61f4a06d52da5448da0095503b29b8 | diff --git a/script/cors.rs b/script/cors.rs
index b9794a3f1..da8c3db68 100644
--- a/script/cors.rs
+++ b/script/cors.rs
@@ -20,7 +20,7 @@ use hyper::mime::{Mime, SubLevel, TopLevel};
use hyper::status::StatusClass::Success;
use net_traits::{AsyncResponseListener, Metadata, ResponseAction};
use network_listener::{Ne... | 28 | 298 | 261 |
fa41885822e8179f4d710fbbfb0afb59708a0a66 | Hugo Thiessard | 2016-04-06T06:51:27 | servo: Merge #10319 - Issue #10284 Ignore alternate stylesheets (from Mylainos:Issue-#10284); r=emilio
Source-Repo: https://github.com/servo/servo
Source-Revision: 6171188f595fa5585bf5e6609e97f90830b77281 | diff --git a/script/dom/htmllinkelement.rs b/script/dom/htmllinkelement.rs
index 00d382e48..e7af4f537 100644
--- a/script/dom/htmllinkelement.rs
+++ b/script/dom/htmllinkelement.rs
@@ -89,8 +89,17 @@ fn get_attr(element: &Element, local_name: &Atom) -> Option<String> {
fn string_is_stylesheet(value: &Option<String>) -... | 1 | 11 | 2 |
6779f5731924a2cdb0603b9d4cdc98797df7e013 | Mauricio Collares | 2016-04-05T20:02:03 | servo: Merge #10406 - Move CSS image-rendering property from Effects to InheritedBox (from mauricioc:issue10404); r=bholley
Fixes #10404
Source-Repo: https://github.com/servo/servo
Source-Revision: 0d0e08638da02922353fb165c4d4f3aff59c2ab0 | diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs
index e6034bb29..73b747d82 100644
--- a/layout/display_list_builder.rs
+++ b/layout/display_list_builder.rs
@@ -566,7 +566,7 @@ impl FragmentDisplayListBuilding for Fragment {
webrender_image: webrender_image,
... | 3 | 5 | 3 |
a8306593ea8b494a02dcdc4e92121a61d8779467 | dhaval0603 | 2016-04-05T12:11:11 | servo: Merge #10399 - Private browsing - Initial steps (from jdm:pb); r=jdm
Rebase of #10160.
Source-Repo: https://github.com/servo/servo
Source-Revision: d1e8b79583a6d9ff5a0860307d55b72b7177f77a | diff --git a/compositing/constellation.rs b/compositing/constellation.rs
index b41f75c7b..b52a1a223 100644
--- a/compositing/constellation.rs
+++ b/compositing/constellation.rs
@@ -1675,6 +1675,19 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF>
ReadyToSave::Ready
}
+ ... | 5 | 36 | 0 |
33c871cc6b40e883914c894dc8201e419e846be2 | Manish Goregaokar | 2016-04-05T07:32:01 | servo: Merge #10329 - Skip printing the backtrace for RecvError/SendError (from Manishearth:skip-backtrace); r=asajeffrey
We currently get tons of useless backtraces clogging up the output when we have a panic cascade. This adds a handler that outputs a single line when a thread panics due to a sender or receiver hang... | diff --git a/util/lib.rs b/util/lib.rs
index 9a06ee1b7..3f9755c43 100644
--- a/util/lib.rs
+++ b/util/lib.rs
@@ -9,6 +9,7 @@
#![cfg_attr(feature = "non-geckolib", feature(decode_utf16))]
#![feature(optin_builtin_traits)]
#![feature(plugin)]
+#![feature(panic_handler)]
#![feature(reflect_marker)]
#![feature(step_by... | 3 | 47 | 1 |
b4cae8585f64b6b4011e88df4238dd560c8220d1 | Stjepan Glavina | 2016-04-05T00:20:13 | servo: Merge #10325 - Add preferences to enable/disable the JITs (from stjepang:pref-disable-jit); r=mbrubeck
When creating a runtime (script.rs), we check prefs and then enable or
disable the JITs (Baseline and Ion) accordingly.
Closes #10278.
Source-Repo: https://github.com/servo/servo
Source-Revision: 863c905025e... | diff --git a/script/script_thread.rs b/script/script_thread.rs
index cfce8de27..5cd38e805 100644
--- a/script/script_thread.rs
+++ b/script/script_thread.rs
@@ -57,7 +57,7 @@ use js::jsapi::{DisableIncrementalGC, JS_AddExtraGCRootsTracer, JS_SetWrapObject
use js::jsapi::{GCDescription, GCProgress, JSGCInvocationKind, ... | 1 | 11 | 1 |
88b5840107d034d08d4d5e03afc8ef0775846f6d | Josh Matthews | 2016-04-04T23:22:24 | servo: Merge #10400 - Update block package to reduce warnings (from jdm:block); r=SimonSapin
Source-Repo: https://github.com/servo/servo
Source-Revision: d6c5fd8dabe51365f72fcbfa90eb16115a274110 | diff --git a/servo/Cargo.lock b/servo/Cargo.lock
index 8486374cd..053d6ed1a 100644
--- a/servo/Cargo.lock
+++ b/servo/Cargo.lock
@@ -140,7 +140,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "block"
-version = "0.1.4"
+version = "0.1.5"
source = "registry+https://github.co... | 1 | 2 | 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.