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
0612d42899da820838d943c4c4eea5c102e65de5
Jonathan Schuster
2016-02-18T21:44:28
servo: Merge #9526 - #8465: Update node::remove comments to reflect standard (from schuster:node-remove); r=nox My updates so far for issue #8465. See comments there for more information. Source-Repo: https://github.com/servo/servo Source-Revision: 2374e9d30e015884e87305006ac61a77b7efd5ee
diff --git a/script/dom/node.rs b/script/dom/node.rs index c42635a37..ac96158f7 100644 --- a/script/dom/node.rs +++ b/script/dom/node.rs @@ -1551,12 +1551,15 @@ impl Node { Some(index) } }; - // Step 6. + // Step 6. pre-removing steps for node iterators + // S...
2
8
3
0726688d7314409c9c88405ec67d7701cc8c0052
Keith Yeung
2016-02-18T20:55:18
servo: Merge #9383 - Clean up XHR API (from KiChjang:xhr-cleanup); r=Ms2ger I've also added annotations about the steps that we're performing within each method. Source-Repo: https://github.com/servo/servo Source-Revision: 96d185359d78e82d2f41a56a1793f7e657c2d103
diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs index 49075d331..eb565c8bf 100644 --- a/script/dom/xmlhttprequest.rs +++ b/script/dom/xmlhttprequest.rs @@ -55,7 +55,6 @@ use std::ascii::AsciiExt; use std::borrow::ToOwned; use std::cell::{Cell, RefCell}; use std::default::Default; -use std::s...
1
137
84
580960ba7a0de5b1d00922c3eef321be29996a89
Keith Yeung
2016-02-18T16:56:19
servo: Merge #8952 - Implement planned navigation (from KiChjang:planned-navigation); r=Manishearth Fixes #3648. Note that I have only implemented "mutate action URL" and "get action URL". The remaining ones can have E-less easy issues created for them. Source-Repo: https://github.com/servo/servo Source-Revision: fe...
diff --git a/profile/time.rs b/profile/time.rs index f954912a1..5bb2a0cc0 100644 --- a/profile/time.rs +++ b/profile/time.rs @@ -96,6 +96,7 @@ impl Formattable for ProfilerCategory { ProfilerCategory::ScriptImageCacheMsg => "Script Image Cache Msg", ProfilerCategory::ScriptInputEvent => "Scrip...
4
63
10
6ed9b0cadaaa3df565991ab1316e0da5c4f96a1f
Glenn Watson
2016-02-18T12:18:15
servo: Merge #9668 - Ensure when calculating font metrics that the total line height matches requested line height (from glennw:inline-accuracy); r=pcwalton This fixes rounding accuracy issues that could result in layout producing results off by a small number of Au. Source-Repo: https://github.com/servo/servo Source...
diff --git a/layout/inline.rs b/layout/inline.rs index c95012a6f..3e3e6506c 100644 --- a/layout/inline.rs +++ b/layout/inline.rs @@ -1928,9 +1928,14 @@ impl InlineMetrics { #[inline] pub fn from_font_metrics(font_metrics: &FontMetrics, line_height: Au) -> InlineMetrics { let leading = line_height - (...
1
7
2
eccf6656b3fab34466c3e0fe82bb5ad01a96f279
Anthony Ramine
2016-02-18T09:21:29
servo: Merge #9686 - Move util::logical_geometry to style (from nox:mv-logical_geometry); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: eee0d4efeba1ee77e864a495b6e1992c8ad088cc
diff --git a/layout/block.rs b/layout/block.rs index c26cd450b..05ffa1838 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -59,11 +59,11 @@ use std::sync::Arc; use style::computed_values::{border_collapse, box_sizing, display, float, overflow_x, overflow_y}; use style::computed_values::{position, text_align, tra...
24
23
24
a700d715c9ec27d52d23bc8fa536d48e0af931ee
Nikki
2016-02-18T00:24:51
servo: Merge #9608 - Implementation of HTTP Redirect Fetch step (from nikkisquared:implement_http_redirect_fetch); r=jdm I've made a first draft of a complete implementation of HTTP Redirect Fetch, most of which is just refactored out of HTTP Fetch. I've also made some minor changes in a few other steps, all collected...
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index 7cd930761..8559fa5fa 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -7,10 +7,10 @@ use fetch::response::ResponseMethods; use http_loader::{NetworkHttpRequestFactory, WrappedHttpResponse}; use http_loader::{create_http_connector, obtain_re...
2
151
131
b4d637bebbd8ecb5746cd5ab18c357b09a5a9350
Kamil Muszyński
2016-02-17T23:29:32
servo: Merge #9683 - Issue #9561 continued - renamed *_thread_source to *_task_source (from kmuszyn:9561-more-thread-source-renamings); r=jdm components/script/dom/bindings/global.rs modified -> all *_thread_source occurrences renamed to *_task_source to comply with spec Source-Repo: https://github.com/servo/servo So...
diff --git a/script/dom/bindings/global.rs b/script/dom/bindings/global.rs index 4559db0f0..e0e558e0f 100644 --- a/script/dom/bindings/global.rs +++ b/script/dom/bindings/global.rs @@ -142,7 +142,7 @@ impl<'a> GlobalRef<'a> { /// `ScriptChan` used to send messages to the event loop of this global's /// thre...
6
19
19
1480134b79e04f171afe67e2741488d6bd9b6cbd
Rebecca
2016-02-17T21:14:01
servo: Merge #9662 - Add support for websocket cookies (from rebstar6:websocket_cookies); r=jdm Addresses both cookies in request and response. Resolves #9540. Source-Repo: https://github.com/servo/servo Source-Revision: bc034845b7e543e4e71fa21d6bf99e9f10ddb6c5
diff --git a/net/http_loader.rs b/net/http_loader.rs index cad5cef69..d1e0bef10 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -351,7 +351,7 @@ fn set_default_accept(headers: &mut Headers) { } } -fn set_request_cookies(url: Url, headers: &mut Headers, cookie_jar: &Arc<RwLock<CookieStorage>>) { +pub...
4
23
7
1134d0f7f0bc1d4ac2ede60dcd2d04b3c29ddfa7
Daniel Robertson
2016-02-17T12:24:15
servo: Merge #9664 - Implement RootedReference<T> for Option<JS<T>> (from danlrobertson:i9654); r=KiChjang A basic implementation of `RootedReference for Option<JS<T>>` based off of other implementations of `RootedReference` for `Option` wrapped types. Really I just wanted an excuse to read more in `bindings` :smile:...
diff --git a/script/dom/bindings/js.rs b/script/dom/bindings/js.rs index 37d673f3c..1736758e7 100644 --- a/script/dom/bindings/js.rs +++ b/script/dom/bindings/js.rs @@ -444,6 +444,13 @@ impl<T: Reflectable> RootedReference<T> for Option<Root<T>> { } } +/// Get an `Option<&T> out of an `Option<JS<T>>` +impl<T: R...
3
10
3
dae704f4c828adec41aed38fda1b36bc2373734a
Peter
2016-02-17T09:53:21
servo: Merge #9632 - Addresses Issue #1716. Indicated part of the document (from peterjoel:issue_1716); r=KiChjang Fixes #1716. Source-Repo: https://github.com/servo/servo Source-Revision: 8d63eff463417cdc739dd291d0ae4ab225b8dce5
diff --git a/script/dom/document.rs b/script/dom/document.rs index a3af57b08..de1172ed6 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -107,6 +107,7 @@ use style::context::ReflowGoal; use style::restyle_hints::ElementSnapshot; use style::servo::Stylesheet; use time; +use url::percent_encoding::p...
1
33
12
8e71b76e9a622f83fb1b1a99c43e59f5afb1e188
zakorgyula
2016-02-17T09:05:26
servo: Merge #9657 - Move parse_integer and parse_unsigned_integer from util::str to style::attr (from zakorgy:refactor); r=KiChjang Fixes #9637 Source-Repo: https://github.com/servo/servo Source-Revision: c075092fe067292b58a781169da937d1f047b62e
diff --git a/script/dom/htmltableelement.rs b/script/dom/htmltableelement.rs index c2a2e31d2..94c0b6dc9 100644 --- a/script/dom/htmltableelement.rs +++ b/script/dom/htmltableelement.rs @@ -18,7 +18,8 @@ use dom::node::{Node, document_from_node}; use dom::virtualmethods::VirtualMethods; use std::cell::Cell; use strin...
3
49
49
576f13e0dcf40424eee23b54d78d8bfe4741b088
Ben
2016-02-17T07:26:05
servo: Merge #9667 - CORS Preflight Logic Fix (from Tycheon:9472); r=KiChjang Fix check to set flag if any header is not a simple header, rather than only if all headers are simple headers. Fix failing tests to allow merge in advance of @nikkibee's changes as per @jdm's direction via IRC. Source-Repo: https://github....
diff --git a/script/cors.rs b/script/cors.rs index e64583e0a..0c225db1b 100644 --- a/script/cors.rs +++ b/script/cors.rs @@ -77,7 +77,7 @@ impl CORSRequest { let mut req = CORSRequest::new(referer, destination, mode, method, headers); req.preflight_flag = !is_simple_method(&req.method)...
1
1
1
25e3880feccfe854b3386bf6c011da8bc1093552
Paul Rouget
2016-02-16T22:09:28
servo: Merge #9643 - Follow executable symlink to resolve resources directory (from paulrouget:resolveSymlink); r=larsbergstrom We need this if we ever want to be able to install Servo, for example: https://github.com/paulrouget/homebrew-servo Source-Repo: https://github.com/servo/servo Source-Revision: c193f0f3a2f7a...
diff --git a/util/resource_files.rs b/util/resource_files.rs index 67ae9f655..dcb9646f4 100644 --- a/util/resource_files.rs +++ b/util/resource_files.rs @@ -34,6 +34,8 @@ pub fn resources_dir_path() -> PathBuf { // under `<servo source>[/$target_triple]/target/debug` // or `<servo source>[/$ta...
1
2
0
daa4ad6b6aebecf326cfb2d0e498fa7178ac262c
Daniel Robertson
2016-02-16T21:21:44
servo: Merge #9625 - Implement step 9 of XHR Open method (from danlrobertson:i9547); r=KiChjang Implement step 9 of the [XMLHttpRequest Open](https://xhr.spec.whatwg.org/#dom-xmlhttprequest-open) method. Thanks to @KiChjang for all the help! As always, comments and critiques are welcomed! Fix: #9547 Source-Repo: htt...
diff --git a/net/http_loader.rs b/net/http_loader.rs index e21ade1b2..cad5cef69 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -14,6 +14,7 @@ use hsts::{HSTSEntry, HSTSList, secure_url}; use hyper::Error as HttpError; use hyper::client::{Pool, Request, Response}; use hyper::header::{Accept, AcceptEncodi...
2
43
6
08fcf8d5075c29dc50eaf69e8dca72804fccd02b
Daniel Robertson
2016-02-16T17:43:55
servo: Merge #9600 - Add informative error messages when parsing command line options returns an error (from danlrobertson:opts_parser_err); r=ecoal95 The background behind why I'm submitting this PR is slightly embarrassing. After running `./mach` with some servo options I got the following stack backtrace. ``` thre...
diff --git a/util/opts.rs b/util/opts.rs index 17315ad97..b154abe21 100644 --- a/util/opts.rs +++ b/util/opts.rs @@ -587,31 +587,32 @@ pub fn from_cmdline_args(args: &[String]) -> ArgumentParsingResult { }; let tile_size: usize = match opt_match.opt_str("s") { - Some(tile_size_str) => tile_size_str.p...
1
12
9
78630ba3c62996cee5f34046d04ba3e4c12d11cf
Corey Farwell
2016-02-16T13:42:26
servo: Merge #9653 - Bump 'regex', 'regex-syntax' to pick up perf improvements (from servo:bump-regex); r=KiChjang Generated using: ``` ./mach cargo-update -p regex ./mach cargo-update -p regex-syntax ``` Diff: https://github.com/rust-lang-nursery/regex/compare/8ca7815092d05c9e1e9d3eff6d324babb99aedd3...0.1.51 Mor...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index e128053f1..39b651e09 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -55,10 +55,10 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "0.4.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencie...
1
19
13
38d102ac644a0acabf1013beb70a159783230ba9
Anthony Ramine
2016-02-16T11:20:20
servo: Merge #9636 - Move util::cursor to style_traits (from nox:mv-cursor); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: f0d4c03bd9c9e181aa1225aec978c2f539e9aeb0
diff --git a/compositing/compositor_thread.rs b/compositing/compositor_thread.rs index a9da70763..618bac967 100644 --- a/compositing/compositor_thread.rs +++ b/compositing/compositor_thread.rs @@ -20,9 +20,9 @@ use script_traits::{AnimationState, EventResult, ScriptToCompositorMsg}; use std::fmt::{Debug, Error, Format...
16
22
11
a74d9269f38a9b8dbc192e7ff1061a6c999fe07d
Jayflux
2016-02-15T23:03:01
servo: Merge #9647 - refactor, moving functions into attr and htmlfontelemend fixes #9639 … (from Jayflux:hotfix/9638); r=nox …#9638 Source-Repo: https://github.com/servo/servo Source-Revision: 5f8cfcd512bddba306def79aaec6cae6cdbff76b
diff --git a/script/dom/htmlfontelement.rs b/script/dom/htmlfontelement.rs index 5d7dbe7ed..ae2744110 100644 --- a/script/dom/htmlfontelement.rs +++ b/script/dom/htmlfontelement.rs @@ -15,7 +15,7 @@ use dom::node::Node; use dom::virtualmethods::VirtualMethods; use string_cache::Atom; use style::values::specified; -u...
3
203
204
3e68562cdb9aaca4ed03a416073a5e6735ab17fa
Prabhjyot Singh Sodhi
2016-02-15T21:05:47
servo: Merge #9648 - fix Node-isEqualNode.html test failure (from psdh:fixnodeiseual); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 3ef0bb4b374e45fe8e9fb1192307c1b0224a0006
diff --git a/script/dom/node.rs b/script/dom/node.rs index 5e02dc3d0..c42635a37 100644 --- a/script/dom/node.rs +++ b/script/dom/node.rs @@ -2134,7 +2134,7 @@ impl NodeMethods for Node { } fn is_equal_node(this: &Node, node: &Node) -> bool { // Step 2. - if this.type_id() != no...
1
1
1
aef6e9f38fa663ac33d36290d8c2b8ac11b2f96b
Keith Yeung
2016-02-15T16:22:49
servo: Merge #9621 - Cache XHR JSON responses (from KiChjang:xhr-response-json); r=Ms2ger Fixes #3919. Source-Repo: https://github.com/servo/servo Source-Revision: 5ee5ce07baa10906a357bfb24e4f0c164bd36e26
diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs index 130cec9ec..42d1dc18e 100644 --- a/script/dom/xmlhttprequest.rs +++ b/script/dom/xmlhttprequest.rs @@ -17,7 +17,7 @@ use dom::bindings::conversions::{ToJSValConvertible}; use dom::bindings::error::{Error, ErrorResult, Fallible}; use dom::bi...
1
38
10
09247a240474640f3c68dffae56c16f139e52a9b
Anthony Ramine
2016-02-15T13:43:02
servo: Merge #9645 - Fix the hasInstance hook of interface objects (from nox:fix-has-instance); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 87c6889f44f67e9c8a186e1b4d95066a4e67ecd3
diff --git a/script/dom/bindings/interface.rs b/script/dom/bindings/interface.rs index 58646ad03..20f5f1c91 100644 --- a/script/dom/bindings/interface.rs +++ b/script/dom/bindings/interface.rs @@ -6,20 +6,19 @@ use dom::bindings::codegen::PrototypeList; use dom::bindings::conversions::get_dom_class; +use dom::bindi...
1
18
13
27a7bd9f5cfb8279a068c434b1217d516845ddc1
David Raifaizen
2016-02-15T04:45:35
servo: Merge #9634 - Adding warning to properties.mako.rs regarding the Mako parser mangling (from craftytrickster:issue/9564); r=Manishearth https://github.com/servo/servo/issues/9564#issuecomment-183765401 Source-Repo: https://github.com/servo/servo Source-Revision: c9b2ef5c7f5b23d815e8c3c78f972f6f880d6dbd
diff --git a/style/properties.mako.rs b/style/properties.mako.rs index 46d121c4f..d9d858073 100644 --- a/style/properties.mako.rs +++ b/style/properties.mako.rs @@ -4,6 +4,10 @@ // This file is a Mako template: http://www.makotemplates.org/ +// Please note that valid Rust syntax may be mangled by the Mako parser. ...
1
4
0
abd636c94489253a5ad62aa9b49f05060a308159
Daniel Robertson
2016-02-15T03:23:27
servo: Merge #9629 - Implement Blob response for XMLHttpRequest: #9623 (from danlrobertson:i9623); r=KiChjang My first attempt at implementing the Blob response for XMLHttpRequest. The expected result for the response `tests/wpt/web-platform-test/HMLHttpRequest/response-blob-data.htm` is also changed to `PASS`. Please...
diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs index d81bfe4ab..130cec9ec 100644 --- a/script/dom/xmlhttprequest.rs +++ b/script/dom/xmlhttprequest.rs @@ -22,6 +22,7 @@ use dom::bindings::js::{Root, RootedReference}; use dom::bindings::refcounted::Trusted; use dom::bindings::reflector::{Refl...
1
23
1
f476cdd7292ca6eda9176c0dc20c2fdf92030bb5
Anthony Ramine
2016-02-15T02:17:27
servo: Merge #9635 - Move util::bezier to style (from nox:mv-bezier); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 024d106f78e0e37adc3ddc24a56a0597c2bacf98
diff --git a/style/animation.rs b/style/animation.rs index 2dece8396..b152be5fc 100644 --- a/style/animation.rs +++ b/style/animation.rs @@ -3,6 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use app_units::Au; +use bezier::Bezier; use cssparser::{Color, RGBA}; use dom::{OpaqueNode, TResty...
4
2
2
d9aa4939d3c5a87d0fe7dd81ba39e51b1a403cb4
Peter
2016-02-14T22:57:55
servo: Merge #9642 - #9640 Refactor: Move util::str::is_token to script::dom::bindings::str (from peterjoel:issue_9640_move_util_str_is_token); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 4f07aa7a3a69b312def2ca1085d92378ec523bf9
diff --git a/script/dom/bindings/str.rs b/script/dom/bindings/str.rs index 26c8568ea..3f3c14bf8 100644 --- a/script/dom/bindings/str.rs +++ b/script/dom/bindings/str.rs @@ -10,7 +10,6 @@ use std::hash::{Hash, Hasher}; use std::ops; use std::str; use std::str::FromStr; -use util::str::is_token; /// Encapsulates th...
3
37
37
c0f737e37aee155634b0df9780f4df6c00d8fd50
Kamil Muszyński
2016-02-14T14:32:58
servo: Merge #9576 - Issue #9561 Renamed *_thread_source to *_task_source window.rs (from kmuszyn:9561-rename-thread-to-task); r=jdm Related to: https://github.com/servo/servo/issues/9561 Renamed *thread_source to *_task_source in components/script/dom/window.rs and files that use window methods. Source-Repo: https:...
diff --git a/script/dom/bindings/global.rs b/script/dom/bindings/global.rs index eeeb4d976..4559db0f0 100644 --- a/script/dom/bindings/global.rs +++ b/script/dom/bindings/global.rs @@ -144,7 +144,7 @@ impl<'a> GlobalRef<'a> { /// thread. pub fn dom_manipulation_thread_source(&self) -> Box<ScriptChan + Send> {...
8
96
96
6b847aea45490d2348a192991ec2d620dce17ce0
Jonathan Giddy
2016-02-12T19:50:58
servo: Merge #9618 - Calculate correct mp4 header length (from jongiddy:fix-mp4-size); r=jdm The calculation of MP4 frame length is incorrect, shifting values by 1 bit instead of 8 bits. It works for the test MP4 file because the length of the frame is less than 256 bytes, so the shifted values are all zero. This PR...
diff --git a/net/mime_classifier.rs b/net/mime_classifier.rs index fe844f822..b1ee9231b 100644 --- a/net/mime_classifier.rs +++ b/net/mime_classifier.rs @@ -325,8 +325,8 @@ impl Mp4Matcher { return false; } - let box_size = ((data[0] as u32) << 3 | (data[1] as u32) << 2 | - ...
1
2
2
b8248181259c81b3235199755a2d0c2e4f1efc95
Anthony Ramine
2016-02-12T16:15:51
servo: Merge #9606 - Bump js to get fix from servo/rust-mozjs#237 (from servo:bump-js); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: a746522b58d31e14fe509d2f11fcb01b2089fdb0
diff --git a/script/dom/bindings/conversions.rs b/script/dom/bindings/conversions.rs index 0ddee7981..3bf389a65 100644 --- a/script/dom/bindings/conversions.rs +++ b/script/dom/bindings/conversions.rs @@ -97,11 +97,15 @@ impl<T: Float + FromJSValConvertible<Config=()>> FromJSValConvertible for Finite impl <T: Reflecta...
2
19
7
b5dc71ce53eaff88e86a068786c5eb3d8b3039a5
Paul Rouget
2016-02-12T06:30:31
servo: Merge #9614 - input event should bubble (from paulrouget:inputEventBubbles); r=mbrubeck No test because: https://github.com/servo/servo/issues/9574#issuecomment-181558144 Fix #9574 Source-Repo: https://github.com/servo/servo Source-Revision: a24e86e76fb2bebc1ded68d17cda10aa10417364
diff --git a/script/dom/htmlinputelement.rs b/script/dom/htmlinputelement.rs index 6e7557465..6bc242338 100644 --- a/script/dom/htmlinputelement.rs +++ b/script/dom/htmlinputelement.rs @@ -952,7 +952,7 @@ impl Runnable for ChangeEventRunnable { let window = window.r(); let event = Event::new(GlobalRef...
1
1
1
ec143a1e245632dee2e28ce91abd4fb38378f379
Josh Matthews
2016-02-11T20:15:58
servo: Merge #8987 - Report CSS errors to script task for further processing (from jdm:devtoolsreport); r=glennw This was a missing piece from #8838. Source-Repo: https://github.com/servo/servo Source-Revision: b870aa90878acf97074fa55260beb8acfd125f22
diff --git a/devtools/lib.rs b/devtools/lib.rs index 5783c645b..1d96c9323 100644 --- a/devtools/lib.rs +++ b/devtools/lib.rs @@ -89,8 +89,8 @@ struct ConsoleMsg { timeStamp: u64, arguments: Vec<String>, filename: String, - lineNumber: u32, - columnNumber: u32, + lineNumber: usize, + columnNum...
7
44
20
3249549c53beffb1cee845f8099860d94d3c2b1c
Josh Matthews
2016-02-11T14:45:11
servo: Merge #8491 - Compile raw inline event handlers lazily. Resolves #8489 (from jdm:lazycompile); r=Ms2ger Per https://html.spec.whatwg.org/multipage/webappapis.html#getting-the-current-value-of-the-event-handler and https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-attributes:event-handlers-2 ....
diff --git a/script/dom/bindings/trace.rs b/script/dom/bindings/trace.rs index 6794f803a..f892b1f95 100644 --- a/script/dom/bindings/trace.rs +++ b/script/dom/bindings/trace.rs @@ -255,6 +255,15 @@ impl<A: JSTraceable, B: JSTraceable> JSTraceable for (A, B) { } } +impl<A: JSTraceable, B: JSTraceable, C: JSTrace...
5
210
67
55bd4cdb989c313cacfe1ee4ef0cd318622a50f5
Brandon Fairchild
2016-02-11T12:52:59
servo: Merge #9602 - Use JS_GetOwnPropertyDescriptorById in BrowserContext (fixes #6984) (from servo:bc-prop); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 3703e6d4f644ca97d1f5e012ce8edd8cfaa2c407
diff --git a/script/dom/browsingcontext.rs b/script/dom/browsingcontext.rs index d9b75153a..51baa7ba0 100644 --- a/script/dom/browsingcontext.rs +++ b/script/dom/browsingcontext.rs @@ -19,9 +19,8 @@ use js::jsapi::{HandleId, HandleObject, MutableHandle, MutableHandleValue}; use js::jsapi::{JSAutoCompartment, JSAutoReq...
1
5
9
cf5d835b32dad528899b8a49aa77428f68ae383f
Josh Matthews
2016-02-10T14:20:29
servo: Merge #6677 - Make iframes block the enclosing document's load event (from jdm:iframeblockonload); r=Ms2ger It occurs to me as I write this that this doesn't handle the case of removing the iframe from the document before it's finished loading. Consider this an early feedback release! Source-Repo: https://gith...
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 4bf942302..75734226f 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -832,7 +832,7 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF> let parent_pipeline = self.pipeli...
6
94
7
2e805f65852640c6fa442ba96a27c58945e6f297
Ms2ger
2016-02-10T09:09:31
servo: Merge #9590 - Update dlib (from Ms2ger:dlib); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: fc3f93235e9264a6379e370b635ae8a98e41a1be
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 3a0dcd234..4b55e6e0f 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -411,7 +411,7 @@ dependencies = [ [[package]] name = "dlib" -version = "0.2.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ ...
1
11
12
31ff84342a3313ee5edbe96770fd427a0b14080d
Nikki
2016-02-09T21:41:22
servo: Merge #9525 - Test filtered responses and implement Cors Check Fetch step (from nikkisquared:test_filtered_responses); r=asajeffrey I've been writing tests for creating filtered responses. So far I have three of the four types being made (namely, Basic, CORS, and Opaque), and just need to figure out how to make...
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index 5aee648dc..7cd930761 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -9,6 +9,7 @@ use http_loader::{create_http_connector, obtain_response}; use hyper::client::response::Response as HyperResponse; use hyper::header::{Accept, IfMatch, IfRan...
4
93
10
2f2db4b7295fe85651b5a85583bc475678791333
Tim van der Meij
2016-02-09T20:50:54
servo: Merge #9565 - Remove dead function Overflow::union_rect (from timvandermeij:dead-function); r=jdm Fixes #9556. This makes Servo compile with one warning less. Source-Repo: https://github.com/servo/servo Source-Revision: cb8be1434f61e6bfe4639d42b1422329b0451a47
diff --git a/layout/fragment.rs b/layout/fragment.rs index 692bffd3a..015fa2f05 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -2602,11 +2602,6 @@ impl Overflow { self.paint = self.paint.union(&other.paint); } - pub fn union_rect(&mut self, rect: &Rect<Au>) { - self.scroll = self....
1
0
5
346e9df2bae612918fa2829319179507f7f1e20e
Ms2ger
2016-02-09T16:12:23
servo: Merge #9584 - Give WindowProxy objects an innerObject hook (from Ms2ger:WindowProxy); r=jdm This ensures that UncheckedUnwrap(obj, /* stopAtOuter = */ true) will indeed stop at the WindowProxy ("outer window", in older SpiderMonkey jargon), which is necessary to prevent raw Window ("inner window") objects becom...
diff --git a/script/dom/browsingcontext.rs b/script/dom/browsingcontext.rs index b63fbaa6f..d9b75153a 100644 --- a/script/dom/browsingcontext.rs +++ b/script/dom/browsingcontext.rs @@ -12,7 +12,7 @@ use dom::document::Document; use dom::element::Element; use dom::window::Window; use js::JSCLASS_IS_GLOBAL; -use js::g...
2
3
7
9139b6f3b891639e60fb9860b7e6e7b36231db97
Ms2ger
2016-02-09T09:18:58
servo: Merge #9581 - Stop importing XMLHttpRequestResponseType variants (from Ms2ger:xhr-enum); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: b9ec889c44f29bffe4a914afe630835853babeaa
diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs index 4b8c251e7..d81bfe4ab 100644 --- a/script/dom/xmlhttprequest.rs +++ b/script/dom/xmlhttprequest.rs @@ -12,7 +12,6 @@ use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods; use dom::bindings::codegen::Bindings::XMLHttpRequestBind...
1
7
7
2e2817d82664c95ccbe9f33babe873acd5534f65
Michael Wu
2016-02-09T05:38:27
servo: Merge #9577 - Update html5ever to 0.5.0 (from michaelwu:h5e-update); r=Manishearth r? @Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 93cad4afd33ee59df1a0328ac41b8cebd657ec7b
diff --git a/script/Cargo.toml b/script/Cargo.toml index b06ae8e8e..e3c4f3a19 100644 --- a/script/Cargo.toml +++ b/script/Cargo.toml @@ -72,7 +72,7 @@ euclid = {version = "0.6.1", features = ["plugins"]} fnv = "1.0" heapsize = "0.2.5" heapsize_plugin = "0.1.2" -html5ever = {version = "0.4.2", features = ["heap_size"...
3
4
4
d0c6c4b3a66ce4aa6dbf75696024558d8847d405
Ms2ger
2016-02-08T23:38:00
servo: Merge #9571 - Remove the global argument to EventTarget::{fire_event, fire_simple_event} (from Ms2ger:fire); r=asajeffrey Source-Repo: https://github.com/servo/servo Source-Revision: 0124d90a6d1fb17a986b06825f8b3d2af0055144
diff --git a/script/dom/document.rs b/script/dom/document.rs index 38306619f..487b93a01 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -550,8 +550,7 @@ impl Document { self.ready_state.set(state); - self.upcast::<EventTarget>().fire_simple_event("readystatechange", - ...
9
30
45
4ccd9948569b53efb0aeef37c2b8ec2401432c0b
Tim van der Meij
2016-02-06T21:45:31
servo: Merge #9562 - Make step 3 of XHR's SetResponseType method match the specification (from timvandermeij:setresponsetype-spec); r=KiChjang Fixes #9552. Source-Repo: https://github.com/servo/servo Source-Revision: 2f52a168caa28fcbdcd84e31f093a866ac12955e
diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs index 93e46d145..2e948f44b 100644 --- a/script/dom/xmlhttprequest.rs +++ b/script/dom/xmlhttprequest.rs @@ -675,16 +675,18 @@ impl XMLHttpRequestMethods for XMLHttpRequest { // https://xhr.spec.whatwg.org/#the-responsetype-attribute fn S...
1
7
5
e73fcbfd456a4b185a7c2ec9bf527f073158b59e
Tim van der Meij
2016-02-05T22:32:47
servo: Merge #9542 - Update immeta dependency to resolve ImageCacheThread panic (from timvandermeij:immeta); r=jdm Fixes #9501. Before this patch, a website such as http://www.universiteitleiden.nl would consistently crash Servo. After this patch, the website loads just fine. Source-Repo: https://github.com/servo/se...
diff --git a/net/Cargo.toml b/net/Cargo.toml index 0c5e34874..5364a7555 100644 --- a/net/Cargo.toml +++ b/net/Cargo.toml @@ -40,4 +40,4 @@ flate2 = "0.2.0" uuid = "0.1.16" url = {version = "0.5.4", features = ["heap_size"]} websocket = "0.14.0" -immeta = "0.2" +immeta = "0.3.1" diff --git a/servo/Cargo.lock b/servo/...
2
3
3
00a6bbaaa839f7a43d0c635bb171beae04a10855
peterkort
2016-02-05T21:21:21
servo: Merge #9471 - fix #8461 (from peterkort:patch-1); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 5505bf1de50bb0b19c393739d29dadd2b2079171
diff --git a/script/timers.rs b/script/timers.rs index 1c1157d30..20797d02c 100644 --- a/script/timers.rs +++ b/script/timers.rs @@ -359,6 +359,7 @@ impl ActiveTimers { }; self.suspension_offset.set(self.suspension_offset.get() + additional_offset); + self.suspended_since.set(None); ...
1
1
0
9a1299c6a72b8f61c9cb97f0c9f507acb5224ac6
Ms2ger
2016-02-05T19:27:35
servo: Merge #9554 - Remove some unused dependencies from the util crate (from Ms2ger:util-deps); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 289232ef61ee928014f5c88fcaff4187865769e8
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index f78d15b3b..49672e924 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -2034,19 +2034,15 @@ name = "util" version = "0.0.1" dependencies = [ "app_units 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "azure 0.4.0 (git+https://github.com/...
3
1
33
03d4084f9aaf4fe7df02438e1bac17266808c76b
Anthony Ramine
2016-02-05T12:58:57
servo: Merge #9537 - Remove the casing plugin (from nox:rm-casing-plugin); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 3701edbf2b8be80ec5be08dd4392845fa2fb5cab
diff --git a/plugins/casing.rs b/plugins/casing.rs deleted file mode 100644 index 8a535cabf..000000000 --- a/plugins/casing.rs +++ /dev/null @@ -1,59 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can ...
2
2
63
ed410044fa0f1c2fa3878ee3a19493c70d0d44b4
Anthony Ramine
2016-02-05T07:12:03
servo: Merge #9538 - Specify android_glue version in android_glue/Cargo.toml (from nox:android-glue-version); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 8327ab86e002712c603d56ddaadaccddf2290b3b
diff --git a/servo/Cargo.toml b/servo/Cargo.toml index 1b0a92ff9..1faed776e 100644 --- a/servo/Cargo.toml +++ b/servo/Cargo.toml @@ -125,6 +125,7 @@ path = "../../ports/glutin" optional = true [dependencies.android_glue] +version = "0.1.3" optional = true [dependencies.log]
1
1
0
cd7b1e5020e060962e7d3dca6cd9591af963b7b9
Patrick Walton
2016-02-05T05:28:50
servo: Merge #9522 - layout: Separate out overflow-for-scrolling from overflow-for-paint (from pcwalton:two-overflows); r=mbrubeck Closes #9484. r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: fb3fe3d784c24cdfd8040af0282e5c2182ee2051
diff --git a/layout/block.rs b/layout/block.rs index 2e7a4e935..c26cd450b 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -43,7 +43,7 @@ use flow::{NEEDS_LAYER, PostorderFlowTraversal, PreorderFlowTraversal, Fragmenta use flow::{self, BaseFlow, EarlyAbsolutePositionInfo, Flow, FlowClass, ForceNonfloatedFlag}; u...
16
99
56
5814f1b92c850fc8c6a8461c5ea0c80576f2e5d3
Ms2ger
2016-02-05T04:32:25
servo: Merge #9536 - Remove a dead_code annotation from a live method (from Ms2ger:dead); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: b3bbea8be81f949e2af6e31cf67bcaaaeb8bd84b
diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs index 59feddfcc..93e46d145 100644 --- a/script/dom/xmlhttprequest.rs +++ b/script/dom/xmlhttprequest.rs @@ -1221,7 +1221,6 @@ impl XMLHttpRequest { } } - #[allow(dead_code)] fn final_mime_type(&self) -> Option<Mime> { ...
1
0
1
da69823cd8e77a7f7e28247eb41b8bdee35c6942
Manish Goregaokar
2016-02-05T02:51:37
servo: Merge #9521 - Make websockets work in a worker scope (from Manishearth:ws-worker); r=Ms2ger r? @jdm Source-Repo: https://github.com/servo/servo Source-Revision: b35801bf291466a4db4eb805fc86aba20a29545e
diff --git a/script/dom/websocket.rs b/script/dom/websocket.rs index c9658a1b5..c8544698e 100644 --- a/script/dom/websocket.rs +++ b/script/dom/websocket.rs @@ -8,7 +8,6 @@ use dom::bindings::codegen::Bindings::EventHandlerBinding::EventHandlerNonNull; use dom::bindings::codegen::Bindings::LocationBinding::LocationMet...
1
2
2
08e8dc72f0d2233d7693c7eea70baeb6315c003c
Ruud van Asseldonk
2016-02-05T02:02:13
servo: Merge #9523 - Upgrade to new Hasher API (from ruuda:hasher); r=Wafflespeanut This fixes #9494. Source-Repo: https://github.com/servo/servo Source-Revision: 87aaa5ffe0ca7da8771883ea40d04d7c1449eea9
diff --git a/gfx/font_context.rs b/gfx/font_context.rs index 6fc010fed..8262b0d15 100644 --- a/gfx/font_context.rs +++ b/gfx/font_context.rs @@ -20,9 +20,8 @@ use platform::font_template::FontTemplateData; use smallvec::SmallVec; use std::cell::RefCell; use std::collections::HashMap; -use std::collections::hash_stat...
9
14
20
5902760854fa17ad7a38c002352a8bd387811d7c
Bobby Holley
2016-02-04T17:55:09
servo: Merge #9515 - Stylo uplifts Part 2 (from bholley:stylo_uplifts_2); r=SimonSapin A bunch of random things that we might as well merge into the tree. Source-Repo: https://github.com/servo/servo Source-Revision: 629b1d33d5d6153da87d1ae176ea6c9b9298c650
diff --git a/layout/context.rs b/layout/context.rs index 53bb036d0..9657590be 100644 --- a/layout/context.rs +++ b/layout/context.rs @@ -50,6 +50,7 @@ pub fn heap_size_of_local_context() -> usize { }) } +// Keep this implementation in sync with the one in ports/geckolib/traversal.rs. fn create_or_get_local_con...
2
2
44
a33bcc9eb2b7e7031527be13fdec97282a874ea7
Florian Hahn
2016-02-04T15:30:21
servo: Merge #9469 - Integrate compiletest_rs (from fhahn:compiletest2); r=jdm This PR integrates `compiletest_rs` as suggested in #5646. I created a new `tests/compiletest` directory which contains separate crates for the tests. Currently this PR includes `compile-fail` tests for some lints (acutally all except in...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index a89113b67..741c2982d 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -6,6 +6,7 @@ dependencies = [ "bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "canvas 0.0.1", "canvas_traits 0.0.1", + "compiletest_helper 0.0.1", "compos...
2
31
0
41be2e927e1dd5590533811d8893ad3d39558d76
Paul Rouget
2016-02-04T14:29:17
servo: Merge #9517 - glutin update (from paulrouget:glutinUpdate); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: 9c21c2007b6c068eb2e0723a551b9a4206784a75
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index c65f8c6e7..a89113b67 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -726,7 +726,7 @@ dependencies = [ "net_traits 0.0.1", "script_traits 0.0.1", "servo-egl 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "servo-glutin 0.4.8 (registr...
1
3
3
61ff302407c04dbeb8f1a7f42212db685d7bd5d2
Tim van der Meij
2016-02-04T12:41:52
servo: Merge #9512 - Remove old features 'clone_from_slice' and 'convert' (from timvandermeij:feature-cleanup); r=frewsxcv Fixes #9495. Source-Repo: https://github.com/servo/servo Source-Revision: 647637193d12eb4869afa93106d3aa14721a0935
diff --git a/canvas/lib.rs b/canvas/lib.rs index 5a0b1a9e5..7377e0385 100644 --- a/canvas/lib.rs +++ b/canvas/lib.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/. */ -#![feature(clone_from_slice)] #![feature(nonzer...
3
0
3
a6d71989a710a76c6278bdef71f717073227f094
Ms2ger
2016-02-04T11:05:48
servo: Merge #9519 - Update Euclid (from Ms2ger:euclid); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 712b053f4f597a097767a0812013b95c7db8b3c9
diff --git a/canvas/Cargo.toml b/canvas/Cargo.toml index 942b10709..c0532721d 100644 --- a/canvas/Cargo.toml +++ b/canvas/Cargo.toml @@ -37,4 +37,4 @@ git = "https://github.com/servo/ipc-channel" log = "0.3" num = "0.1.24" gleam = "0.2" -euclid = {version = "0.4", features = ["plugins"]} +euclid = {version = "0.6.1"...
14
111
94
5499e0c91916fff8872fe21cf02d0f4dc6dde9ac
Keith Yeung
2016-02-04T08:54:14
servo: Merge #9516 - Implement "potential CORS request" (from KiChjang:potential-cors-request); r=nikkisquared Source-Repo: https://github.com/servo/servo Source-Revision: df454ac4dc714f348a2533633ad464285a8ef684
diff --git a/net_traits/request.rs b/net_traits/request.rs index d9f6a520b..2a85d1112 100644 --- a/net_traits/request.rs +++ b/net_traits/request.rs @@ -78,6 +78,12 @@ pub enum ResponseTainting { Opaque } +/// [CORS settings attribute](https://html.spec.whatwg.org/multipage/#attr-crossorigin-anonymous) +pub enu...
1
56
1
8a7f7fe829ae8f6fb63eb3df0de49d7f6f9ea74c
Glenn Watson
2016-02-04T04:16:49
servo: Merge #9503 - Ensure that text nodes don't inherit opacity (from glennw:fix-text-node-opacity); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: a9f6ab21536a8a33004e2ae3ebe2d39aad9e921c
diff --git a/style/properties.mako.rs b/style/properties.mako.rs index ac6722b63..46d121c4f 100644 --- a/style/properties.mako.rs +++ b/style/properties.mako.rs @@ -6958,6 +6958,12 @@ pub fn modify_style_for_text(style: &mut Arc<ComputedValues>) { padding.padding_bottom = computed::LengthOrPercentage::Length(A...
1
6
0
c04963a9b2409a793e0fc9581d5c807b0028b356
Mátyás Mustoha
2016-02-04T00:44:37
servo: Merge #9506 - Update gaol to f1da357 (from mmatyas:update_gaol); r=jdm servo/gaol@f1da357 adds AArch64 support to gaol, required for building Servo for this platform. Source-Repo: https://github.com/servo/servo Source-Revision: b794efee05fc638b260d5029039429e1c4fc3be7
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index aba9d867e..43df76cba 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -584,7 +584,7 @@ dependencies = [ [[package]] name = "gaol" version = "0.0.1" -source = "git+https://github.com/servo/gaol#491dba122d6741ea4e56c754505a69f6319d41e3" +source = "git+https...
1
1
1
8ee98ed752d4d403860735550bf8b886a627cbe4
Lars Bergstrom
2016-02-03T23:07:16
servo: Merge #9314 - Update cargo (from larsbergstrom:cargoup); r=Manishearth r? @Manishearth (wait for a try run first - I can't repro the -fPIC stuff from the previous one right now, but we'll see...) Source-Repo: https://github.com/servo/servo Source-Revision: 44b7ebf3cc3f9b5f90f81f89707179f1ae15513d
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 556bc7d75..aba9d867e 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -1640,12 +1640,12 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.2.4 (registry+https://github.com/rust-lang/crates.io-in...
1
2
2
0f9d12933f773a36c0e2fd7c48df699a33765bf8
Simon Martin
2016-02-03T17:59:35
servo: Merge #9121 - Issue #9095: Send a notification when a file load is cancelled (from simartin:issue_9095); r=jdm Fixes https://github.com/servo/servo/issues/9095 Source-Repo: https://github.com/servo/servo Source-Revision: dcf4218e30bdbb3d0371e99cc274b2b3da3d0da5
diff --git a/net/file_loader.rs b/net/file_loader.rs index cc4652c64..a6e8eb470 100644 --- a/net/file_loader.rs +++ b/net/file_loader.rs @@ -8,7 +8,7 @@ use mime_guess::guess_mime_type; use net_traits::ProgressMsg::{Done, Payload}; use net_traits::{LoadConsumer, LoadData, Metadata}; use resource_thread::{Cancellatio...
1
24
21
93207465d396fc62ca75a0cb6309b9fd15a06a02
Michael Howell
2016-02-03T06:59:26
servo: Merge #9500 - Bump quickersort version (from notriddle:ttt); r=nox (fixes an exception-safety bug in the heapsort fallback) Source-Repo: https://github.com/servo/servo Source-Revision: b1fffcd85de45b0c7b917beef2718621a323e5cf
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index dca125d48..556bc7d75 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -1455,7 +1455,7 @@ dependencies = [ [[package]] name = "quickersort" -version = "1.0.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependenci...
1
2
2
c01655ad2d6acca33255f1d014f538fdb787c34b
Keith Yeung
2016-02-03T06:08:51
servo: Merge #9498 - Update rust-url (from KiChjang:update-url); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 64ad9e17d9323862833daa60290b037ea8334424
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index 7c2d91a5d..eddb778fe 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -91,7 +91,7 @@ gleam = "0.2" euclid = {version = "0.4", features = ["plugins"]} serde = "0.6" serde_macros = "0.6" -url = "0.5.2" +url = "0.5.4" [target.x86_6...
17
46
44
3c79f237d795e4db35d0dacf43248ab274a63488
Ms2ger
2016-02-03T04:46:46
servo: Merge #9493 - Use the select macro on the paint thread (from Ms2ger:paint-thread-messages); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 2d4a5eb983d07609247affe4fb7bf0a9a4a17755
diff --git a/gfx/paint_thread.rs b/gfx/paint_thread.rs index 212ca28ee..fdb85aff3 100644 --- a/gfx/paint_thread.rs +++ b/gfx/paint_thread.rs @@ -30,7 +30,7 @@ use std::borrow::ToOwned; use std::collections::HashMap; use std::mem as std_mem; use std::sync::Arc; -use std::sync::mpsc::{Receiver, Select, Sender, channel...
1
8
15
3505098adda1b5267c6848042501d7f46bc52865
Emilio Cobos Álvarez
2016-02-03T01:34:11
servo: Merge #9510 - Update rust-selectors (from nox:bump-selectors); r=SimonSapin This commits updates rust-selectors to use the generic parser, and as such it moves the element state into the style crate. Source-Repo: https://github.com/servo/servo Source-Revision: ae20f2556bc7807b39b6649ac1f738644abcc26a
diff --git a/layout/Cargo.toml b/layout/Cargo.toml index fb006dd59..4d9c5d02a 100644 --- a/layout/Cargo.toml +++ b/layout/Cargo.toml @@ -61,7 +61,7 @@ fnv = "1.0" bitflags = "0.3" rustc-serialize = "0.3" libc = "0.2" -selectors = "0.2" +selectors = "0.4.1" smallvec = "0.1" string_cache = "0.2" euclid = {version =...
33
298
199
7bc5bdbe1a18722f3b6b3d889bd8ecff585a9889
Glenn Watson
2016-02-02T17:07:28
servo: Merge #9496 - Update ipc-channel to get deadlock fix for Linux (from glennw:update-ipc-channel); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 0ea86b084ba746cd7e5b93514a2269de3a957998
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 9ef0a1325..1124ec689 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -882,7 +882,7 @@ dependencies = [ [[package]] name = "ipc-channel" version = "0.2.0" -source = "git+https://github.com/servo/ipc-channel#1f1d0923a4a43523b151abc4f4dd7e2ae4a5ec4c" +sourc...
1
1
1
6b947d2be5aa6f27140a1a04af3ad640a880064a
Anthony Ramine
2016-02-01T19:29:46
servo: Merge #9470 - Bump Rust to 2016-01-31 nightly (from servo:rustup); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 9baa59a6b4de338be6cd65851694785d786cf492
diff --git a/plugins/lints/inheritance_integrity.rs b/plugins/lints/inheritance_integrity.rs index 8ced4fb4c..fc70920d5 100644 --- a/plugins/lints/inheritance_integrity.rs +++ b/plugins/lints/inheritance_integrity.rs @@ -46,9 +46,12 @@ impl LateLintPass for InheritancePass { // Find all #[dom_struct] field...
5
42
34
3db53f5f2db0e703344a62a2f7b7aa02f7706af6
Ms2ger
2016-02-01T15:50:07
servo: Merge #9485 - Update references to pcwalton's repositories (from servo:pcwalton); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: e7371b36dd0d3142e65fa54f87e023671c509e35
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index 708fd6fd6..7c2d91a5d 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -64,22 +64,22 @@ git = "https://github.com/servo/ipc-channel" git = "https://github.com/ecoal95/rust-offscreen-rendering-context" [target.arm-linux-androideabi....
3
15
15
fdf274c38ba0d8cf44502bd1785eb9749e9ebe7f
Glenn Watson
2016-02-01T00:56:54
servo: Merge #9452 - This updates gleam to a version that relies on OpenGL 3.3 (which is n… (from glennw:update-gleam-again); r=ecoal95 …eeded for the instancing changes in WR - see servo/gleam@fc7e28e). Hopefully the build machines and everyone using Servo has GL 3.3 available on their machines - if it causes any pr...
diff --git a/canvas/webgl_paint_thread.rs b/canvas/webgl_paint_thread.rs index 21362fa4c..913ef1b33 100644 --- a/canvas/webgl_paint_thread.rs +++ b/canvas/webgl_paint_thread.rs @@ -349,20 +349,20 @@ impl WebGLPaintThread { chan: IpcSender<WebGLResult<WebGLParameter>>) { let result = match par...
2
18
18
c77223cda8a78545ebafc80cd4c990d43ffd3213
Anthony Ramine
2016-01-31T23:08:15
servo: Merge #9473 - Bump clipboard to remove libc 0.1.z dependency (from nox:adieu-libc-1); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: ec06c256d70937e91acb7309d7518b76962ea3a4
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 57069e9b9..13b48d9a5 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -201,11 +201,11 @@ dependencies = [ [[package]] name = "clipboard" version = "0.1.0" -source = "git+https://github.com/aweinstock314/rust-clipboard#4510d16e640fb52be1cd476557d52f69fa589...
1
3
9
f11c8b32a913bc50912dfb1a8e2f34b432d92597
jmr0
2016-01-30T19:48:41
servo: Merge #9208 - Use image metadata to lay out images (from jmr0:master-img); r=asajeffrey Fixes #7047. cc: @jdm Source-Repo: https://github.com/servo/servo Source-Revision: 46b3eb653579a40632f91497a3d48f1d7fbd40cc
diff --git a/layout/context.rs b/layout/context.rs index 83f2df141..53bb036d0 100644 --- a/layout/context.rs +++ b/layout/context.rs @@ -17,7 +17,7 @@ use gfx_traits::LayerId; use ipc_channel::ipc::{self, IpcSender}; use net_traits::image::base::Image; use net_traits::image_cache_thread::{ImageCacheChan, ImageCacheT...
13
249
63
5d55e0fd3a8f1233ccd188ba61e121f11ce7dba8
Mátyás Mustoha
2016-01-30T18:47:48
servo: Merge #9447 - Fix AArch64 target triplets (from mmatyas:aarch64_target_fix); r=larsbergstrom The AArch64 platform uses the `aarch64-linux-gnu` triplet. Source-Repo: https://github.com/servo/servo Source-Revision: f8bdda499ef8c13f65cbc20215bd36dbc42b6439
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index 3e9894fca..708fd6fd6 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -78,7 +78,7 @@ git = "https://github.com/pcwalton/gaol" [target.arm-unknown-linux-gnueabihf.dependencies.gaol] git = "https://github.com/pcwalton/gaol" -[target...
2
2
2
5ba23428a1c5df3dfcff1f886ffc0e8758ce62a6
Anthony Ramine
2016-01-30T14:49:46
servo: Merge #9467 - Let Servo use a non-broken expat-sys version (from nox:bump-expat-sys); r=9001 Source-Repo: https://github.com/servo/servo Source-Revision: 31657811d33f23c79eae49dea171718562b031c5
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 785bc72e5..c4f1d112d 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -533,7 +533,7 @@ dependencies = [ [[package]] name = "expat-sys" -version = "2.1.1-really.0" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" depen...
1
3
3
98aec905aeca5c9ad43f713f2e5d6d84fa16c51a
Corey Farwell
2016-01-30T04:06:01
servo: Merge #9464 - Prefer `is_empty` over `len` when option is available (from frewsxcv:is-empty); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: cd51ac742d9c827c756f1c4f36b185d2cbc6667b
diff --git a/layout/text.rs b/layout/text.rs index c8ef3ad2b..427f16fce 100644 --- a/layout/text.rs +++ b/layout/text.rs @@ -401,7 +401,7 @@ pub fn line_height_from_style(style: &ComputedValues, metrics: &FontMetrics) -> } fn split_first_fragment_at_newline_if_necessary(fragments: &mut LinkedList<Fragment>) { - ...
1
1
1
7e21f7127588ea8dc7f6ddd4a0aebd678eac7143
Nikki
2016-01-29T23:25:27
servo: Merge #9427 - Partial implementation of Main Fetch step (from nikkisquared:implement_main_fetch); r=jdm I started out with Step 11 of Main Fetch so I could test creating filtered responses, which broke my tests that compare the Fetch result to a message on a server. I realized that if I got the tests to work, I...
diff --git a/net/fetch/cors_cache.rs b/net/fetch/cors_cache.rs index 65d36d0bb..9f74e184a 100644 --- a/net/fetch/cors_cache.rs +++ b/net/fetch/cors_cache.rs @@ -14,7 +14,7 @@ use std::ascii::AsciiExt; use std::sync::mpsc::{Sender, Receiver, channel}; use time; use time::{now, Timespec}; -use url::Url; +use url::{Ori...
5
241
51
234edf52a8357d2c59e2e65ad718f1b3a9493b06
Patrick Walton
2016-01-29T22:25:24
servo: Merge #9438 - Expand the block size of the root flow's margin box to the viewport size instead of expanding the block size of its border box (from pcwalton:root-margins); r=mbrubeck Closes #9308. r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: d1ff330ba80ad20eae8bfb2f0044e1e1199dc424
diff --git a/layout/block.rs b/layout/block.rs index 3774184fd..2e7a4e935 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -698,7 +698,8 @@ impl BlockFlow { /// /// TODO(#2017, pcwalton): This is somewhat inefficient (traverses kids twice); can we do /// better? - fn adjust_fragments_for_collapse...
1
27
16
4f981823f76d42611751e69a02cd06d78a756feb
Simon Sapin
2016-01-29T19:19:14
servo: Merge #9170 - Add CSS Multicolumn support with block fragmentation (from SimonSapin:multicol2); r=mbrubeck ![a](https://cloud.githubusercontent.com/assets/291359/12147538/bfb198ac-b499-11e5-9936-c54c93d0b1ed.png) Includes/supersedes #8763. r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revis...
diff --git a/layout/block.rs b/layout/block.rs index 2633205b8..3774184fd 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -39,8 +39,10 @@ use flow::{HAS_LEFT_FLOATED_DESCENDANTS, HAS_RIGHT_FLOATED_DESCENDANTS}; use flow::{IMPACTED_BY_LEFT_FLOATS, IMPACTED_BY_RIGHT_FLOATS, INLINE_POSITION_IS_STATIC}; use flow::{...
16
521
89
c68191c046c9a8794d01a611eac5c999efd477c9
Josh Matthews
2016-01-29T16:00:20
servo: Merge #9450 - Upgrade ipc-channel to diagnose #8961 (from jdm:ipcchannelupgrade); r=nox Source-Repo: https://github.com/servo/servo Source-Revision: 4bd295f0ede5ddd34db79be1dd7a87c8666bf6c1
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 92af3c8ef..785bc72e5 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -17,7 +17,7 @@ dependencies = [ "gleam 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "glutin_app 0.0.1", "image 0.5.4 (registry+https://github.com/rust-lang/crates....
1
22
22
b7f9d12f246b0136388dc80ec1f3d720e0553e2a
Matt Brubeck
2016-01-29T03:52:08
servo: Merge #9454 - Update to servo-glutin 0.4.8 (from mbrubeck:glutinup); r=glennw Fixes #9451. r? @glennw Source-Repo: https://github.com/servo/servo Source-Revision: 58369f22b22d92362a705dc98039453fd691c7ab
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 6787a91c8..92af3c8ef 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -725,7 +725,7 @@ dependencies = [ "net_traits 0.0.1", "script_traits 0.0.1", "servo-egl 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "servo-glutin 0.4.7 (registr...
1
3
3
78c080781f945a30cb8ab0ed54a347ef3d1288f3
Glenn Watson
2016-01-28T23:05:04
servo: Merge #9446 - Fix panic when perspective property is zero (from glennw:zero-perspective); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 1483a5de32511f4f8e4868e8ae55ef6e8406f0f6
diff --git a/layout/display_list_builder.rs b/layout/display_list_builder.rs index 82293921b..2b4d4f37e 100644 --- a/layout/display_list_builder.rs +++ b/layout/display_list_builder.rs @@ -63,6 +63,23 @@ use util::range::Range; /// The logical width of an insertion point: at the moment, a one-pixel-wide line. const I...
1
19
2
0167dc84b23e3d8f8d301b9552ca8308ad509a93
Florian Strübe
2016-01-28T16:28:29
servo: Merge #9436 - Use .find().map() instead of .filter_map().next() (from fstr:issue-9403); r=KiChjang Patch for issue #9403 Source-Repo: https://github.com/servo/servo Source-Revision: 562fe03e8051bcefbba4b9050d7f5c7a5908565c
diff --git a/script/dom/urlsearchparams.rs b/script/dom/urlsearchparams.rs index 161d08883..446b0681a 100644 --- a/script/dom/urlsearchparams.rs +++ b/script/dom/urlsearchparams.rs @@ -78,13 +78,8 @@ impl URLSearchParamsMethods for URLSearchParams { // https://url.spec.whatwg.org/#dom-urlsearchparams-get fn G...
1
2
7
6acfc709aa8187c21f5db7d3b71e33095a8d0f0a
Glenn Watson
2016-01-28T05:48:24
servo: Merge #9401 - Fixes additional calls to rAF (from glennw:raf-timing); r=jdm Often, a rAF callback will request another rAF from the callback itself. Previously, the constellation would quickly receive two messages saying that there were no animations, and then there are animations again in the situation above....
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 3ada78486..f75126cab 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -65,8 +65,7 @@ pub enum NotReadyToPaint { LayerHasOutstandingPaintMessages, MissingRoot, PendingSubpages(usize), - AnimationsRunning, ...
2
45
26
fcd012fffe888c4bce87fc79d0fb6442ad23e7b7
Corey Farwell
2016-01-28T04:19:26
servo: Merge #9445 - Upgrade ipc-channel dependency (from servo:bump-ipc-channel); r=jdm https://github.com/servo/ipc-channel/compare/dfd8513d801d16a7e4a5b0b92a68c27b0dd99fe1...4cc8773bfb0ab9a350f98fe316c24d2f42b99858 Attempt to fix https://github.com/servo/servo/issues/8815 Source-Repo: https://github.com/servo/ser...
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 94aad2746..6787a91c8 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -873,7 +873,7 @@ dependencies = [ [[package]] name = "ipc-channel" version = "0.1.0" -source = "git+https://github.com/servo/ipc-channel#dfd8513d801d16a7e4a5b0b92a68c27b0dd99fe1" +sourc...
1
1
1
f1e80d0daf83d4669c6fcb9607aa170855fbf22b
Josh Matthews
2016-01-27T23:25:04
servo: Merge #9421 - compositing: Fix a couple of bugs that prevented iframes from painting after navigation (from jdm:iframe-painting-after-navigation-redux); r=jdm The first bug was that iframes were not reflowed in their parent DOM when the child page navigated. This is fixed by simply having the constellation noti...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 84d101ac9..3ada78486 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -790,6 +790,13 @@ impl<Window: WindowMethods> IOCompositor<Window> { match self.find_layer_with_pipeline_and_layer_id(pipeline_id, properties...
7
111
27
645f2ce4e4db5bdf003f5dbd2030009747a59e31
Matt Brubeck
2016-01-27T17:28:10
servo: Merge #9444 - Upgrade to latest xml5ever (from mbrubeck:x5e-up); r=jdm To pick up Ygg01/xml5ever#12 Source-Repo: https://github.com/servo/servo Source-Revision: 34954a98702a03ffb79344b53f85e1dfcd584257
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 15b790237..94aad2746 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -1468,11 +1468,6 @@ dependencies = [ "winapi 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "rc" -version = "0.1.1" -source = "registry+https:/...
1
1
7
a698fd87f8b6b29a348f4f5aa98e6ff0b7347206
Simon Sapin
2016-01-27T11:59:56
servo: Merge #9434 - Update html5ever and xml5ever for API changes (from servo:h5eup); r=nox @nox r? Source-Repo: https://github.com/servo/servo Source-Revision: 4f3ed209bc9ddb855bfe36d7194c6e442079028a
diff --git a/script/Cargo.toml b/script/Cargo.toml index 0a1c5f9b6..c3754adf3 100644 --- a/script/Cargo.toml +++ b/script/Cargo.toml @@ -78,11 +78,10 @@ num = "0.1.24" websocket = "0.14.0" uuid = "0.1.16" smallvec = "0.1" -html5ever = { version = "0.2.1", features = ["unstable"] } +html5ever = { version = "0.4", fea...
6
43
25
a2a59e43e5400cc5421d6222fb41b68ed1478542
Paul Rouget
2016-01-27T11:13:30
servo: Merge #9378 - Invalidate node style after style property removed (from paulrouget:removeProperty); r=KiChjang Fix #9377 Source-Repo: https://github.com/servo/servo Source-Revision: 8c0736211bf3e597b4d56a6efe6479a8c2d97c14
diff --git a/script/dom/cssstyledeclaration.rs b/script/dom/cssstyledeclaration.rs index abf4b1310..479d2e00f 100644 --- a/script/dom/cssstyledeclaration.rs +++ b/script/dom/cssstyledeclaration.rs @@ -329,6 +329,10 @@ impl CSSStyleDeclarationMethods for CSSStyleDeclaration { None => elem.remove_inline_styl...
1
4
0
7285ea6a548c60b3cd98f2d3c813ddf5799cfc88
Glenn Watson
2016-01-27T06:06:45
servo: Merge #9439 - Update gleam (from glennw:update-gleam); r=KiChjang Source-Repo: https://github.com/servo/servo Source-Revision: 2dd4e5d164c56f50c94cd542c5414afc21b51882
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index afe8fd8b6..d321fac26 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -14,7 +14,7 @@ dependencies = [ "gaol 0.0.1 (git+https://github.com/pcwalton/gaol)", "gfx 0.0.1", "gfx_tests 0.0.1", - "gleam 0.2.0 (registry+https://github.com/rust-lang/crates.io-i...
1
10
10
1494147d18cb42bdc17307ec348d695363573b08
Patrick Walton
2016-01-26T01:58:23
servo: Merge #9429 - Dispatch scroll events to layers above others (from pcwalton:iframe-scroll-stacking); r=mbrubeck Closes #9416. r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: b66a0014510aaebb7c926160923738fc4fe88ca2
diff --git a/compositing/compositor_layer.rs b/compositing/compositor_layer.rs index 9c7d567c4..9e2b47a5c 100644 --- a/compositing/compositor_layer.rs +++ b/compositing/compositor_layer.rs @@ -317,7 +317,7 @@ impl CompositorLayer for Layer<CompositorData> { // Allow children to scroll. let scroll_offs...
1
1
1
1a4b891511cdd1a25b755ba652eba021fe3d3f8e
Patrick Walton
2016-01-26T01:12:57
servo: Merge #9428 - Make hit tests against box shadows always fail (from pcwalton:incorporeal-shadows); r=mbrubeck Closes #9268. r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 71d49fc73dd0f3fe42757d87cb60b98c9454d5fa
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index e7d24843f..b6565753f 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -390,23 +390,30 @@ impl DisplayList { return; } - if let DisplayItem::BorderClass(ref border) = *item { -...
1
23
16
98bf73a1d23406bbd3cc38aeed018079557d386a
Connor Imes
2016-01-25T22:49:58
servo: Merge #9424 - Update energy-monitor to 0.1.1 for change to dual license (from connorimes:energy-monitor-0.1.1); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: d34641dc3f523736075fa52715a6dcc02a697d29
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index dd8ef987b..afe8fd8b6 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -468,7 +468,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "energy-monitor" -version = "0.1.0" +version = "0.1.1" source = "registry+https://...
1
3
3
b58478bde5befd06a38dc800613e8c5e5cbc1c33
Patrick Walton
2016-01-25T18:50:26
servo: Merge #9405 - layout: Remove some bogus code that tried to handle absolutely-positioned flows separately when storing overflow (from pcwalton:absolute-positioning-overflow); r=glennw This code dates back to the time when absolutely positioned flows were ignored by all of their ancestors up to the containing blo...
diff --git a/layout/flow.rs b/layout/flow.rs index bfb0c407d..2df03d432 100644 --- a/layout/flow.rs +++ b/layout/flow.rs @@ -251,13 +251,6 @@ pub trait Flow: fmt::Debug + Sync + Send + 'static { container_size); overflow = overf...
1
0
7
266418d1c043da10c234fc4a5f74ab8b4441980e
Paul Rouget
2016-01-25T15:36:22
servo: Merge #9418 - Check if root page exist before handling DOM events (from paulrouget:iframeCrash); r=jdm Fix #9417 For the test, I'm not sure how to simulate a mouse event or a key event in a way that it would be forwarded to the iframe. Any idea? Source-Repo: https://github.com/servo/servo Source-Revision: 84...
diff --git a/script/script_thread.rs b/script/script_thread.rs index d4339cb2b..663d87f46 100644 --- a/script/script_thread.rs +++ b/script/script_thread.rs @@ -835,6 +835,10 @@ impl ScriptThread { self.page.borrow().as_ref().unwrap().clone() } + fn root_page_exists(&self) -> bool { + self.pag...
1
11
6
9e14e751a9f92f11c4a2c6375d01ec98dc59451f
jmr0
2016-01-25T11:31:39
servo: Merge #9400 - Fixing websocket subprotocol header validation (from jmr0:websocket); r=nox This takes care of https://github.com/servo/servo/issues/9034 Source-Repo: https://github.com/servo/servo Source-Revision: e74021baaa85ba1b2839192d4fcb4f4b5cb5536b
diff --git a/script/dom/bindings/str.rs b/script/dom/bindings/str.rs index b9b1090e0..df69bc77f 100644 --- a/script/dom/bindings/str.rs +++ b/script/dom/bindings/str.rs @@ -11,6 +11,7 @@ use std::ops; use std::str; use std::str::FromStr; use util::mem::HeapSizeOf; +use util::str::is_token; /// Encapsulates the ID...
3
40
36
daa68ee6cee8d7089ee552edee1236d3011ad47c
Lars Bergstrom
2016-01-23T01:57:27
servo: Merge #9385 - Win32 support (from larsbergstrom:win32); r=frewsxcv,pcwalton,jdm,ecoal95 r? @frewsxcv for python stuff r? @pcwalton for the "remove usage of Gaol" stuff for Win32 r? anybody else for misc cargo.lock updates, etc. This replaces #7878. This works best with https://github.com/servo/mozjs/pull/71, ...
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index da11ccea6..3e9894fca 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -63,7 +63,22 @@ git = "https://github.com/servo/ipc-channel" [dependencies.offscreen_gl_context] git = "https://github.com/ecoal95/rust-offscreen-rendering-contex...
14
215
103
ecd414fa7f6dc83fe7dcfd6197e327c2132f3b72
Ms2ger
2016-01-21T18:01:18
servo: Merge #9393 - Update HTMLScriptElement::prepare to match the changed specification (from Ms2ger:renumber-prepare); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 52da517a14d8f45a17203b3a137cf9fc8bcd64fb
diff --git a/script/dom/htmlscriptelement.rs b/script/dom/htmlscriptelement.rs index ee4243874..77fd089fc 100644 --- a/script/dom/htmlscriptelement.rs +++ b/script/dom/htmlscriptelement.rs @@ -172,6 +172,7 @@ impl HTMLScriptElement { if self.already_started.get() { return NextParserState::Continue...
1
58
48
9ef6da70500e4ac05459acd2dad62d3c6e3a0051
Simon Sapin
2016-01-21T17:15:51
servo: Merge #9380 - Update cssparser (from servo:cssparserup); r=SimonSapin https://github.com/servo/rust-cssparser/pull/91 Source-Repo: https://github.com/servo/servo Source-Revision: 1ba1fb0b7f46472e1f37f4e3f2e7dde025fa9f1f
diff --git a/canvas_traits/Cargo.toml b/canvas_traits/Cargo.toml index 2ab3a3da6..12964b8f6 100644 --- a/canvas_traits/Cargo.toml +++ b/canvas_traits/Cargo.toml @@ -35,7 +35,7 @@ path = "../plugins" path = "../util" [dependencies] -cssparser = { version = "0.4", features = [ "serde-serialization" ] } +cssparser = {...
16
61
82
2de7e9fceeeb702957f109a226c32db0c19c1081
Nikki
2016-01-20T21:06:38
servo: Merge #9391 - Test redirect_count boundaries in Fetch (from nikkisquared:test_redirect); r=jdm I've written two new tests for Fetch: one to test the highest possible number of redirects succeeds; and another to ensure a failure in Fetch by requesting too many redirects. I also wrote a helper function to be used...
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index f2e6b80d0..fc2b4a596 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -298,7 +298,7 @@ fn http_fetch(request: Rc<Request>, }; // Step 7 - if request.redirect_count.get() == 20 { + if request.r...
1
1
1
49e157d31fbf5ce280690daca4ca034dde5096ad
James Sanders
2016-01-19T15:38:09
servo: Merge #9358 - Clean up websocket closing code (from jsanders:refactor-websocket-closing); r=jdm Fixes #7860. This also changes quite a bit about how close codes are implemented, I believe bringing them closer in line with the spec. Instead of saving off the close code sent by the client, it uses the code from ...
diff --git a/net/websocket_loader.rs b/net/websocket_loader.rs index 461972b35..e25d7e738 100644 --- a/net/websocket_loader.rs +++ b/net/websocket_loader.rs @@ -71,7 +71,7 @@ pub fn init(connect: WebSocketCommunicate, connect_data: WebSocketConnectData) { Ok(net_url) => net_url, Err(e) => { ...
3
81
67
60462e8d07d9f55425d3b1445108c37bdc8aa721
Bobby Holley
2016-01-19T08:49:10
servo: Merge #9284 - Add Partial Implementation of style DOM traits for Gecko, and some basic glue to let Gecko call into Servo (from bholley:bootstrap_stylo); r=SimonSapin The wrapper stuff is partially-complete, modulo some unimplemented methods. The glue code is just a toy for now. Regardless, I think it's worth ge...
diff --git a/layout/wrapper.rs b/layout/wrapper.rs index e3d7f0a29..8d4f818d2 100644 --- a/layout/wrapper.rs +++ b/layout/wrapper.rs @@ -275,14 +275,6 @@ impl<'ln> TNode<'ln> for ServoLayoutNode<'ln> { self.node.next_sibling_ref().map(|node| self.new_with_this_lifetime(&node)) } } - - fn s...
4
10
18
9fc14f5dbd97955fd6b49832f1c9c674fb31953e
Nikki
2016-01-18T22:54:09
servo: Merge #9321 - Test setting response.body and fetching a message on a server (from nikkisquared:response_body); r=jdm I've updated http_fetch to now set response.body, as well as written a test to ensure that fetch can retrieve a message on a server. I've also looked into partially implementing some more of http...
diff --git a/net/fetch/methods.rs b/net/fetch/methods.rs index 28cf08382..f2e6b80d0 100644 --- a/net/fetch/methods.rs +++ b/net/fetch/methods.rs @@ -17,10 +17,12 @@ use hyper::mime::{Attr, Mime, SubLevel, TopLevel, Value}; use hyper::status::StatusCode; use net_traits::request::{CacheMode, Context, ContextFrameType, ...
2
17
6