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
976703b9620e85110f7f2c1a3152279aae69b9d4
Josh Matthews
2015-04-01T23:30:41
servo: Merge #5477 - Warning patrol (from jdm:warnfix); r=kmcallister Source-Repo: https://github.com/servo/servo Source-Revision: 3294778b371799f6594ba6e39986685c001b017c
diff --git a/gfx/font_context.rs b/gfx/font_context.rs index fe9dbab2b..860bb62b3 100644 --- a/gfx/font_context.rs +++ b/gfx/font_context.rs @@ -12,7 +12,6 @@ use font_cache_task::FontCacheTask; use font_template::FontTemplateDescriptor; use platform::font::FontHandle; use platform::font_template::FontTemplateData; ...
3
1
2
99d6c68f4314024721f9f290e593f62409ef0b41
dhneio
2015-04-01T22:45:40
servo: Merge #5472 - Fix is_simple_advance check. Fixes #4614 (from jdm:advance); r=jdm Rebased from #5035. Source-Repo: https://github.com/servo/servo Source-Revision: e65e881e1b37c37b6f921c73910ff3b3ec554fda
diff --git a/gfx/text/glyph.rs b/gfx/text/glyph.rs index 5ebd33916..c5f803ca6 100644 --- a/gfx/text/glyph.rs +++ b/gfx/text/glyph.rs @@ -156,8 +156,11 @@ fn is_simple_glyph_id(id: GlyphId) -> bool { } fn is_simple_advance(advance: Au) -> bool { - let unsigned_au = advance.to_u32().unwrap(); - (unsigned_au & (...
1
5
2
c60898c5edac9d7fc1df634578c36c6554268d97
Chris Paris
2015-04-01T21:48:42
servo: Merge #5337 - Fix mutation record when ReplaceChild handles DocumentFragment (from ChrisParis:replacenode-fragment); r=metajack Fixes #5336 Source-Repo: https://github.com/servo/servo Source-Revision: dfa16e049fd6e34810ac5e0616c5203a891815a9
diff --git a/script/dom/node.rs b/script/dom/node.rs index ae79327e7..ba3ff916c 100644 --- a/script/dom/node.rs +++ b/script/dom/node.rs @@ -1920,6 +1920,21 @@ impl<'a> NodeMethods for JSRef<'a, Node> { let document = document_from_node(self).root(); Node::adopt(node, document.r()); + // Step...
1
18
8
c2e7f7c1dabc782d3ddf2a0a965c38026c41896d
Josh Matthews
2015-04-01T20:03:43
servo: Merge #5459 - Make reflow queries always perform reflow. Fixes #5458 (from jdm:reflowquery); r=saneyuki Source-Repo: https://github.com/servo/servo Source-Revision: 6bedf4a229f07a9cce589466cb398cd5afdd382d
diff --git a/script/dom/window.rs b/script/dom/window.rs index 08e526df2..4c7f6c107 100644 --- a/script/dom/window.rs +++ b/script/dom/window.rs @@ -537,7 +537,7 @@ impl<'a> WindowHelpers for JSRef<'a, Window> { debug!("script: performing reflow for goal {:?}", goal); let root: JSRef<Node> = NodeCas...
2
2
1
6948822816cc9e5e606427550c84e50a202596da
Manish Goregaokar
2015-04-01T19:15:46
servo: Merge #5430 - Allow passing a path to --userscripts (from Manishearth:userscript_path); r=kmcallister r? @kmcallister Source-Repo: https://github.com/servo/servo Source-Revision: afbc51a746af79f3daf14d77002a47967ef3d38e
diff --git a/script/dom/htmlheadelement.rs b/script/dom/htmlheadelement.rs index cf1cca4de..cc02c8a0d 100644 --- a/script/dom/htmlheadelement.rs +++ b/script/dom/htmlheadelement.rs @@ -3,22 +3,16 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use dom::bindings::codegen::Bindings::HTMLHeadElementB...
4
66
44
220ec54dbe744256f9aa6e7eb88201180d19a984
Patrick Walton
2015-04-01T18:03:45
servo: Merge #5429 - layout: Stop rebuilding all inline-block flows unconditionally, and bubble intrinsic inline sizes as necessary when doing incremental reflow (from pcwalton:inline-block-incremental-reflow); r=mbrubeck r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: dd3a58b92427bfd6e33903...
diff --git a/layout/construct.rs b/layout/construct.rs index ec40dad11..bf427dfbf 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -19,7 +19,7 @@ use css::node_style::StyledNode; use data::{HAS_NEWLY_CONSTRUCTED_FLOW, LayoutDataAccess, LayoutDataWrapper}; use floats::FloatKind; use flow::{Descendants, A...
2
38
2
b5545e02aa3ef256e492e252ed6d32de2a27d337
Patrick Walton
2015-04-01T16:00:52
servo: Merge #5278 - gfx: Perform more aggressive caching in `FontContext::get_layout_font_group_for_style()` (from pcwalton:font-group-caching); r=glennw There are several optimizations here: * We make font families atoms, to allow for quicker comparisons. * We precalculate an FNV hash of the relevant fields of the...
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index bb2136242..b012c92b6 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -66,6 +66,9 @@ branch = "upstream-2014-06-16" [dependencies.script_traits] path = "../script_traits" +[dependencies.string_cache] +git = "https://github.com/servo/string-cache" + [dependencie...
12
140
60
a0648efba455471d8ac3c91489d8eafae25b1f33
Adenilson Cavalcanti
2015-04-01T13:51:46
servo: Merge #5476 - Instead of panicking on broken url, break from the loop and return (from servo:load-failure-panic); r=jdm Fixes #5365. Source-Repo: https://github.com/servo/servo Source-Revision: 6824bc93241d8ad6eff30e5014d27b88ea8a65d7
diff --git a/script/parse/html.rs b/script/parse/html.rs index ce7b75f93..3fc60d8c7 100644 --- a/script/parse/html.rs +++ b/script/parse/html.rs @@ -274,7 +274,9 @@ pub fn parse_html(document: JSRef<Document>, parser.parse_chunk(data); } ProgressMsg::Done(Err(err))...
1
3
1
c00f535fca30e51d56928c6cfb300cceb6f8a2d2
Keith Yeung
2015-04-01T13:06:46
servo: Merge #5474 - Handle the for and event attributes on a script element correctly when o (from servo:script-for-event); r=Ms2ger ...ne of them is present (fixes #5258). Source-Repo: https://github.com/servo/servo Source-Revision: f25604c7f1711ae1218552e529535edc7a60acb2
diff --git a/script/dom/htmlscriptelement.rs b/script/dom/htmlscriptelement.rs index 637cb23ee..8dca04ec7 100644 --- a/script/dom/htmlscriptelement.rs +++ b/script/dom/htmlscriptelement.rs @@ -202,25 +202,26 @@ impl<'a> HTMLScriptElementHelpers for JSRef<'a, HTMLScriptElement> { } // Step 12. - ...
1
14
13
77b63ddeef1538b62301be34d3f2f0c14f373af8
snf
2015-03-31T21:51:52
servo: Merge #5419 - Send storage event (from snf:send_storage_event); r=jdm Addresses #5196 Source-Repo: https://github.com/servo/servo Source-Revision: c0c54875a282fd6d03daba71e6e764763be70e09
diff --git a/net/storage_task.rs b/net/storage_task.rs index 658340b8b..4533a364f 100644 --- a/net/storage_task.rs +++ b/net/storage_task.rs @@ -30,10 +30,10 @@ pub enum StorageTaskMsg { /// sets the value of the given key in the associated storage data /// TODO throw QuotaExceededError in case of error - ...
3
111
24
352430ea9aafdccaeb65bcf8e3d5a43244c7eaa7
Nicholas Nethercote
2015-03-31T21:03:56
servo: Merge #5441 - Use usize rather than u64 in MemoryReport (from servo:heap-unclassified); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 8976bbfe7d8fa061ee7270e4b3553f7fde6050e6
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index 4016c3173..c61f84cf0 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -508,7 +508,7 @@ impl LayoutTask { let stacking_context = rw_data.stacking_context.as_ref(); reports.push(Report { path: path!["pages", f...
2
26
25
8fe02c3cfbfc1048fceada3fb38b08f66cd264b2
Matt Brubeck
2015-03-31T20:15:59
servo: Merge #5349 - Don't add margin/border/padding twice to position (from mbrubeck:placement-size); r=pcwalton I think this should have been changed in #3618 but was missed. r? @pcwalton I wasn't able to come up with a good test case for this, partly because of other bugs related to floats and formatting contexts....
diff --git a/layout/block.rs b/layout/block.rs index 36cdc1ab9..980bf6b52 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -1449,9 +1449,7 @@ impl BlockFlow { let info = PlacementInfo { size: LogicalSize::new(self.fragment.style.writing_mode, - self.base.po...
1
1
3
9a6fca9cede9bf20777dd18ac82752114ffa78ef
Guro Bokum
2015-03-31T15:24:58
servo: Merge #5166 - RootCollection doesn't check if its SmallVec has spilled #5037 (from JIoJIaJIu:gc); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 52cc63a2622a77ee317f1b320be8ae7e478b2a43
diff --git a/script/dom/bindings/js.rs b/script/dom/bindings/js.rs index f390a6444..84644a842 100644 --- a/script/dom/bindings/js.rs +++ b/script/dom/bindings/js.rs @@ -57,7 +57,7 @@ use js::jsval::JSVal; use layout_interface::TrustedNodeAddress; use script_task::STACK_ROOTS; -use util::smallvec::{SmallVec, SmallVe...
1
4
3
dededbf756f925d929da1c25f89e92381577b3d6
Patrick Walton
2015-03-30T19:40:04
servo: Merge #5428 - script: Squash mouse-move events just like resizes (from pcwalton:squash-mouse-move); r=jdm Otherwise they queue up if the event handler isn't 60FPS. r? @jdm Source-Repo: https://github.com/servo/servo Source-Revision: c1cc31b9d66f3c61dd0aa7e6a1a43991187d09a5
diff --git a/script/script_task.rs b/script/script_task.rs index 33e66e7fb..2db2ef24a 100644 --- a/script/script_task.rs +++ b/script/script_task.rs @@ -578,13 +578,15 @@ impl ScriptTask { } }; - // Squash any pending resize and reflow events in the queue. + // Squash any pending r...
1
17
2
59f6879a4ed98afd7d0e9e24218260afb2710091
Adenilson Cavalcanti
2015-03-30T18:40:12
servo: Merge #5366 - Load a placeholder when a url to an image is broken (from Adenilson:loadPlaceholder01); r=jdm I decided to use the old Netscape broken image link icon (later we may replace the image asset for something more trendier). Source-Repo: https://github.com/servo/servo Source-Revision: 1e282d55d7e36f0e4...
diff --git a/net/image_cache_task.rs b/net/image_cache_task.rs index 4719a3054..e881e80dd 100644 --- a/net/image_cache_task.rs +++ b/net/image_cache_task.rs @@ -15,6 +15,7 @@ use std::mem::replace; use std::sync::{Arc, Mutex}; use std::sync::mpsc::{channel, Receiver, Sender}; use url::Url; +use util::resource_files:...
2
71
29
4b91e666e66d1e1ba8e98809a2b77910f8ccfa3e
Patrick Walton
2015-03-30T17:40:14
servo: Merge #5393 - layout: Stop going to the DOM to determine the root flow's background color (from pcwalton:root-flow-color-reform); r=glennw This allows us to do layout off the main thread, which is necessary for transitions. r? @glennw Source-Repo: https://github.com/servo/servo Source-Revision: 46d4ef81674d1d...
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index 59b5cb120..e535d6f97 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -20,8 +20,9 @@ use layout_debug; use opaque_node::OpaqueNodeMethods; use parallel::{self, UnsafeFlow}; use sequential; -use wrapper::{LayoutNode, TLayoutNode, Thread...
1
36
41
9599a7aa9a942f9dfcd805441f23f77682d63bc3
Corey Farwell
2015-03-30T16:55:03
servo: Merge #5451 - Cleanup script::dom::cssstyledeclarations (from frewsxcv:cleanup-css-style-declarations); r=Ms2ger * Group imports * Convert seralization helper function to use `Iterator::fold` * Remove basically pointless `serialize_value` helper function * Wrap lines longer than 100 chars * Add URLs to spec So...
diff --git a/script/dom/cssstyledeclaration.rs b/script/dom/cssstyledeclaration.rs index c6db8b63e..c76ccee38 100644 --- a/script/dom/cssstyledeclaration.rs +++ b/script/dom/cssstyledeclaration.rs @@ -4,9 +4,7 @@ use dom::bindings::codegen::Bindings::CSSStyleDeclarationBinding::{self, CSSStyleDeclarationMethods}; u...
1
21
18
006157b2c6832dc18d51899772c584accbaddbd9
Corey Farwell
2015-03-30T14:52:06
servo: Merge #5403 - Improve and fix default_path cookie algorithm (from frewsxcv:cookie-default-path); r=jdm * Previously, the function returned an owned String, which is not necessary, so now it returns a slice * Steps have now been documented/labeled * The last step of the algorithm was incorrect; it would only s...
diff --git a/net/cookie.rs b/net/cookie.rs index 46094ac00..3c56fe8ba 100644 --- a/net/cookie.rs +++ b/net/cookie.rs @@ -71,7 +71,7 @@ impl Cookie { if path.is_empty() || path.char_at(0) != '/' { let url_path = request.serialize_path(); let url_path = url_path.as_ref().map(|path| &**p...
1
16
9
ffd4939851185413bdcdaee526d5a6a4129264ba
Mikko Vanhatalo
2015-03-30T13:58:06
servo: Merge #5379 - Fixed code_value values (from minsumm:code_value); r=jdm Changed Key::N to KeyN, also changed Equals to Equal, and NumpadEquals to NumpadEqual. Source-Repo: https://github.com/servo/servo Source-Revision: 629edc5c46a869b5bb6bc51b8d39b0115702a00c
diff --git a/script/dom/keyboardevent.rs b/script/dom/keyboardevent.rs index bd531cb61..d9ca779ed 100644 --- a/script/dom/keyboardevent.rs +++ b/script/dom/keyboardevent.rs @@ -320,7 +320,7 @@ fn code_value(key: constellation_msg::Key) -> &'static str { constellation_msg::Key::Num8 => "Digit8", conste...
1
2
2
97ae5c038fc47efa358833defb94f0a98bb4c7ce
Corey Farwell
2015-03-30T02:31:01
servo: Merge #5448 - Fix useless assert in script::dom::element (from frewsxcv:fix-assert); r=Ms2ger We should ensure the parameter is lowercased. Right now, the assert will always return true. Discussed in #5445 Introduced in ee2ccc4f872ba33a86057d87a99d1015b3c41cf1 Source-Repo: https://github.com/servo/servo Sour...
diff --git a/script/dom/element.rs b/script/dom/element.rs index 5c878b09f..f69392a41 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -798,7 +798,7 @@ impl<'a> AttributeHandlers for JSRef<'a, Element> { } fn set_atomic_attribute(self, name: &Atom, value: DOMString) { - assert!(name....
1
1
1
bd1db6e237829488984cbcf8683ed515a1cb9032
Brandon DeRosier
2015-03-29T23:10:01
servo: Merge #5422 - Use box syntax instead of Box::new() (from bdero:bdero/box-syntax); r=jdm Closes #5417 Source-Repo: https://github.com/servo/servo Source-Revision: 39556cc8328793478c0e34ff99e2d36d1ab4f5cb
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index ffaf9c5ed..59b5cb120 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -294,7 +294,7 @@ impl LayoutTask { }; // Register this thread as a memory reporter, via its own channel. - let reporter = Box::new(chan.clone...
5
9
8
38576600e1a8785afdab6a448783cf502d79f614
Ms2ger
2015-03-29T22:16:01
servo: Merge #5443 - Use more usize (from Ms2ger:int); r=saneyuki Source-Repo: https://github.com/servo/servo Source-Revision: a0a1304be08250511e20ed8b378bbf6a34c22bf4
diff --git a/layout/css/matching.rs b/layout/css/matching.rs index 8d25f7007..400f86932 100644 --- a/layout/css/matching.rs +++ b/layout/css/matching.rs @@ -122,7 +122,7 @@ impl<'a> PartialEq<ApplicableDeclarationsCacheEntry> for ApplicableDeclarationsC impl<'a> Hash for ApplicableDeclarationsCacheQuery<'a> { fn ...
4
10
10
d2e63089f1dfb4692d884cf2fefa9965687eb306
Corey Farwell
2015-03-29T20:52:02
servo: Merge #5447 - Remove some unnecessary uses of `as_slice` (from frewsxcv:as-slice); r=jdm For the majority of these cases, `as_slice` can be removed due to `Deref`. In particular, `Deref` for: * `String` -> `str` * `Atom` -> `str` The latter of those two requires, a bump of the locked `string-cache` library S...
diff --git a/script/cors.rs b/script/cors.rs index 6930848bb..c11f8233c 100644 --- a/script/cors.rs +++ b/script/cors.rs @@ -171,7 +171,7 @@ impl CORSRequest { }; // Substep 4 if methods.len() == 0 || preflight.mode == RequestMode::ForcedPreflight { - methods = methods_substep4.as_...
17
92
98
eb757500cdb7ee3a28663fbc23ada6b88e2e138f
Mukilan Thiyagarajan
2015-03-29T11:07:01
servo: Merge #5436 - Implement a replacement for Vec<Root<T>> (from servo:rooted-vec); r=Ms2ger,jdm Source-Repo: https://github.com/servo/servo Source-Revision: 1282850b998ce82195a7099d950676fc1b53b86b
diff --git a/script/dom/bindings/trace.rs b/script/dom/bindings/trace.rs index fe3129dce..0dbe3bd4c 100644 --- a/script/dom/bindings/trace.rs +++ b/script/dom/bindings/trace.rs @@ -57,11 +57,13 @@ use msg::constellation_msg::ConstellationChan; use util::smallvec::{SmallVec1, SmallVec}; use util::str::{LengthOrPercent...
5
169
28
82d660cef9f5407a03a9f3fa0fe10f6f73b9b729
Ms2ger
2015-03-29T09:49:01
servo: Merge #5437 - Remove some int/uints (from Ms2ger:int); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 7d0d8514565d898123411ece56bfb09e578dbe1c
diff --git a/layout/block.rs b/layout/block.rs index abaa80a06..36cdc1ab9 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -72,9 +72,6 @@ pub struct FloatedBlockInfo { /// box). pub float_ceiling: Au, - /// Index into the fragment list for inline floats - pub index: Option<uint>, - /// Left ...
7
12
16
fdecb620f1dc827b85178cd119bd37625fd798a8
Corey Farwell
2015-03-29T01:01:03
servo: Merge #5440 - Add links to spec for script::dom structs/methods (from frewsxcv:spec-links); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 4cf76d65baa8ced9f748b0d5cd632c8852da134d
diff --git a/script/dom/nodelist.rs b/script/dom/nodelist.rs index 319004e4b..ec1e47caa 100644 --- a/script/dom/nodelist.rs +++ b/script/dom/nodelist.rs @@ -17,6 +17,7 @@ pub enum NodeListType { Children(JS<Node>) } +// https://dom.spec.whatwg.org/#interface-nodelist #[dom_struct] pub struct NodeList { r...
10
36
0
ab87448c58e5fb300c7e29693e6ae1a596517e8d
Corey Farwell
2015-03-28T20:40:02
servo: Merge #5435 - Cleanup and modernize script::dom::attr (from frewsxcv:dom-attr-cleanup); r=jdm * Wrap lines longer than 100 characters * Add whatwg specification links for official methods * Other misc cleanup/modernization Source-Repo: https://github.com/servo/servo Source-Revision: e70beca74bb85bec1f0ea4bb84c...
diff --git a/script/dom/attr.rs b/script/dom/attr.rs index f201c7681..4af8adcf3 100644 --- a/script/dom/attr.rs +++ b/script/dom/attr.rs @@ -3,8 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use dom::bindings::cell::DOMRefCell; -use dom::bindings::codegen::Bindings::AttrBinding; -use dom::b...
1
26
18
1adbbe0d9b09b77f70b8b21ef599f81277d64713
Ms2ger
2015-03-28T19:58:02
servo: Merge #5416 - Remove some int/uints (from Ms2ger:int); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 674e52afa1012cb342629dab4d3abae975a16fe9
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 60bfbdc35..16b788b19 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -93,7 +93,7 @@ pub struct IOCompositor<Window: WindowMethods> { shutdown_state: ShutdownState, /// Tracks outstanding paint_msg's sent to th...
17
64
70
3f6f1802732a3abc89cec2834edbba38b2e5ed9a
Ms2ger
2015-03-28T19:07:06
servo: Merge #5434 - Move to new io in util (from Ms2ger:util-old-io); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: be255304af65ac6aa4d26ea214460073536b9b09
diff --git a/util/debug_utils.rs b/util/debug_utils.rs index f7c02b806..8c1954c78 100644 --- a/util/debug_utils.rs +++ b/util/debug_utils.rs @@ -2,8 +2,7 @@ * 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/. */ -use std::old_io as io; -...
3
5
5
b0c2b12136834b6bf2925a9cb709f7796284e887
Ms2ger
2015-03-28T18:10:06
servo: Merge #5432 - Use the new io's stderr handle to write out the hard-fail warning (from Ms2ger:stderr-comp); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: ce3f777a12212604ec5cb56a0145f3cf8fca9ea7
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 88e3a761c..ea091994f 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -33,7 +33,7 @@ use util::opts; use util::task::spawn_named; use std::borrow::ToOwned; use std::collections::HashMap; -use std::old_io as ...
2
3
3
4a8e1d5593af3923a2faf4683166ed8fdaf90605
Ms2ger
2015-03-28T17:07:03
servo: Merge #5431 - Remove some unused imports (from Ms2ger:unused-imports); r=jdm These became unused in f45db7714c8c3244fe20d1b0a104cb845d0b79f5; I don't know why I didn't notice that. Source-Repo: https://github.com/servo/servo Source-Revision: 2b9bfb9af387fba1a080bed070cf6134eb5d10e1
diff --git a/script/dom/urlsearchparams.rs b/script/dom/urlsearchparams.rs index 16f015554..68bc7da7e 100644 --- a/script/dom/urlsearchparams.rs +++ b/script/dom/urlsearchparams.rs @@ -19,8 +19,6 @@ use encoding::types::{EncodingRef, EncoderTrap}; use std::collections::HashMap; use std::collections::hash_map::Entry...
1
0
2
a4e6780350b6d59d891608285e3b6e80bf5997bb
Patrick Walton
2015-03-28T14:52:06
servo: Merge #5427 - script: Fix O(n^2) dirty bit marking when setting style on all immediate children of a node (from pcwalton:accidentally-quadratic); r=Ms2ger r? @jdm Source-Repo: https://github.com/servo/servo Source-Revision: 5833dea7338f1331a36ca3e792bf7656f2d67bf9
diff --git a/script/dom/node.rs b/script/dom/node.rs index 67bb5279f..ae79327e7 100644 --- a/script/dom/node.rs +++ b/script/dom/node.rs @@ -700,14 +700,16 @@ impl<'a> NodeHelpers<'a> for JSRef<'a, Node> { // // TODO(cgaebel): This is a very conservative way to account for sibling // selector...
1
10
8
61f024cd1cd28c096af742c0f930d82af97d029b
Ms2ger
2015-03-28T00:09:59
servo: Merge #5413 - Simplify URLSearchParams::serialize's percent-encoding (from Ms2ger:percent-encoding); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 55f9bd5d6f95cde282909c9128c00e9644332729
diff --git a/script/dom/urlsearchparams.rs b/script/dom/urlsearchparams.rs index f5c1206c8..16f015554 100644 --- a/script/dom/urlsearchparams.rs +++ b/script/dom/urlsearchparams.rs @@ -135,13 +135,7 @@ impl URLSearchParamsHelpers for URLSearchParams { // Encode everything else using 'percented-en...
1
1
7
b266dcd7c7553a6225b654e9c218bae9cca872fd
Corey Farwell
2015-03-27T22:25:00
servo: Merge #5401 - Cleanup and modernize script::dom::element (from frewsxcv:cleanup-element); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: e916ee081aac4739728843b5761c860983f6f913
diff --git a/script/dom/element.rs b/script/dom/element.rs index 3173fdf75..016ba9a87 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -132,7 +132,7 @@ impl Element { document: JSRef<Document>) -> Element { Element { node: Node::new_inherited(NodeTypeId::...
1
74
107
9e5a36f7e19d2197987949f1e2f7a0a5e3853277
Thiago Pontes
2015-03-27T19:33:56
servo: Merge #5181 - Notify devtools about new worker globals (from thiagopnts:master); r=jdm This is for #4704. I'm not sure if this is the best approach, so I'm open to suggestions. Source-Repo: https://github.com/servo/servo Source-Revision: 439e3150d74453b86abbcc7934b7e5152f102940
diff --git a/devtools/actors/worker.rs b/devtools/actors/worker.rs new file mode 100644 index 000000000..947d43523 --- /dev/null +++ b/devtools/actors/worker.rs @@ -0,0 +1,26 @@ +/* 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 thi...
10
117
14
2eabea3cda079d2a23e06a580e4c5777b92fb334
Manish Goregaokar
2015-03-27T02:51:51
servo: Merge #5389 - Blanket impl JSTraceable on raw pointers (from Manishearth:trace_raw); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 5dd43bf84c78063b6eaf505cab253c1666d969ce
diff --git a/script/dom/bindings/trace.rs b/script/dom/bindings/trace.rs index 4af66e2ed..8d3f5c168 100644 --- a/script/dom/bindings/trace.rs +++ b/script/dom/bindings/trace.rs @@ -137,6 +137,26 @@ impl<T: JSTraceable> JSTraceable for Box<T> { } } +impl<T: JSTraceable> JSTraceable for *const T { + fn trace(&...
1
20
0
819ef9472aea9cd1264b5d9860a0ae1fa169faa8
Ryan Leavengood
2015-03-26T20:30:56
servo: Merge #5392 - Fix #5374: Use correct codes for alphabetic chars (from leavengood:fix-alphabetic-key-codes); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 07e271b4e5a3aaa6e3e57084dd51b5e1ad987597
diff --git a/script/dom/keyboardevent.rs b/script/dom/keyboardevent.rs index 474c3d2ef..bd531cb61 100644 --- a/script/dom/keyboardevent.rs +++ b/script/dom/keyboardevent.rs @@ -321,32 +321,32 @@ fn code_value(key: constellation_msg::Key) -> &'static str { constellation_msg::Key::Num9 => "Digit9", cons...
1
26
26
6aea346b371d9ba75b36e4a88df77b7f82aca80d
Ryan Leavengood
2015-03-26T19:12:53
servo: Merge #5390 - Fix #5367: Map GraveAccent to Backquote (from leavengood:backquote-handling); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 8127e1e1e9f601f1bcf718198d0c56ed9b6a99e6
diff --git a/script/dom/keyboardevent.rs b/script/dom/keyboardevent.rs index 025c64ac5..474c3d2ef 100644 --- a/script/dom/keyboardevent.rs +++ b/script/dom/keyboardevent.rs @@ -140,6 +140,8 @@ fn key_value(key: constellation_msg::Key, mods: constellation_msg::KeyModifiers) constellation_msg::Key::Period => "."...
1
3
2
41a0a2b9684bae93d523085ffaaabf4bb81070c1
Ms2ger
2015-03-26T18:18:55
servo: Merge #5383 - Update js (from Ms2ger:update-js); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 37a98e40b8b78d88360aa3f856a6c966332e5f51
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 14ce06919..5c7cfa15c 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -459,10 +459,10 @@ dependencies = [ [[package]] name = "js" version = "0.1.0" -source = "git+https://github.com/servo/rust-mozjs#77421145e3d983482939e8f1f1ef3a858eaef46f" +source = "git...
1
4
4
5ba6aa6d0f2f8afd2d04222ddc6dcc6ff41e8f51
Ms2ger
2015-03-26T17:33:55
servo: Merge #5388 - Stop using old_io in net tests (from Ms2ger:net-tests); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: ac786e29678ceba8c66bcaa0f2096e4cca2a2372
diff --git a/net/lib.rs b/net/lib.rs index 17219cdc0..6eb504ff2 100644 --- a/net/lib.rs +++ b/net/lib.rs @@ -8,6 +8,7 @@ #![feature(core)] #![feature(int_uint)] #![feature(io)] +#![cfg_attr(test, feature(net))] #![feature(path)] #![feature(path_ext)] #![feature(plugin)] diff --git a/net/resource_task.rs b/net/res...
2
5
10
36cdf50d06831c0bf194bd50b7778994bfa4cfa5
Manish Goregaokar
2015-03-26T16:39:57
servo: Merge #5387 - make no_jsmanaged_fields not require imports (from Manishearth:macro_path); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 265f313de3de12ee137073d4dfde5c35a33c789c
diff --git a/script/dom/macros.rs b/script/dom/macros.rs index b1cba9ccd..42f23b8c4 100644 --- a/script/dom/macros.rs +++ b/script/dom/macros.rs @@ -169,18 +169,18 @@ macro_rules! make_uint_setter( macro_rules! no_jsmanaged_fields( ($($ty:ident),+) => ( $( - impl JSTraceable for $ty { + ...
2
5
5
db92fa00766d56d04ac51da0f63df231735a425f
Ms2ger
2015-03-26T15:36:56
servo: Merge #5381 - Stop using old_path (from Ms2ger:old_path); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: fefdd9afbaa661b1282babc27e3e5ca7c9ea669d
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 02f749eb5..60bfbdc35 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -38,7 +38,6 @@ use profile::time::{self, ProfilerCategory, profile}; use std::cmp; use std::collections::HashMap; use std::collections::hash_map::Ent...
5
5
8
0bf3b69296ebea089ff341eb34029ab48e504628
Fabrice Desré
2015-03-26T14:51:51
servo: Merge #5380 - Suppress unused import warnings (from fabricedesre:no-unused-import); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 26c77d6662255e6da4ac86c3efb64bd4eba86697
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index aeaa4d87f..3a5110339 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -44,7 +44,7 @@ use net::image_cache_task::{ImageCacheTask, ImageResponseMsg}; use net::local_image_cache::{ImageResponder, LocalImageCache}; use net::resource_task::{...
2
2
2
92c9187777057b5489266c6cc01be14b732d869d
Corey Farwell
2015-03-26T12:33:50
servo: Merge #5375 - Add comments linking XHR code to XHR specification (from frewsxcv:xhr-docs); r=jdm Also adding some newlines for visual separation between functions/methods Source-Repo: https://github.com/servo/servo Source-Revision: 699ace844c939ab97180acad67a984dc71108a12
diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs index d9c3be803..a973d1e97 100644 --- a/script/dom/xmlhttprequest.rs +++ b/script/dom/xmlhttprequest.rs @@ -199,6 +199,8 @@ impl XMLHttpRequest { global, XMLHttpRequestBinding::Wrap) } +...
1
42
1
50725ca997301ed6524ed08b5d249df13a4e06bf
Corey Farwell
2015-03-26T05:30:48
servo: Merge #5377 - Remove unused script::dom::node::NodeIterator (from frewsxcv:rm-node-iter); r=jdm Was introduced in 7aee1cae84704b885988a5985a7604747125ec1e I noticed it isn't actively in use, so unless there's some bigger reason why it exists, it could probably be removed Source-Repo: https://github.com/servo/...
diff --git a/script/dom/node.rs b/script/dom/node.rs index 2363d2f11..de6c99644 100644 --- a/script/dom/node.rs +++ b/script/dom/node.rs @@ -1134,89 +1134,6 @@ impl<'a> Iterator for TreeIterator<'a> { } } -#[must_root] -pub struct NodeIterator { - pub start_node: JS<Node>, - pub current_node: Option<JS<No...
1
0
83
bfaf31a11c4647b8b77369df5b6a417bd2da336d
Avi Weinstock
2015-03-26T02:00:54
servo: Merge #5359 - Moz events (from aweinstock314:moz-events); r=jdm Addresses #5352. This is based on https://github.com/glennw/servo/tree/moz-events Source-Repo: https://github.com/servo/servo Source-Revision: 432739164b1f3a117c0aac1dfc97b41018c89b46
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 45dd597b4..e5eccca7e 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -20,7 +20,7 @@ use msg::constellation_msg::{self, ConstellationChan, Failure}; use msg::constellation_msg::{IFrameSandboxState, NavigationD...
7
102
49
88dac50f8724241a4e633387633eba551cc5f5b3
Corey Farwell
2015-03-26T00:27:48
servo: Merge #5372 - Remove enum variant prefix in XMLHttpRequestState (from frewsxcv:xhr-enum-prefix); r=jdm It was originally titled XHRDone to prevent conflicts with other variants called Done. This was done before enum namespacing landed, but now that it has, the prefixing is not necessary. Source-Repo: https://g...
diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs index ec65f98b7..d9c3be803 100644 --- a/script/dom/xmlhttprequest.rs +++ b/script/dom/xmlhttprequest.rs @@ -71,7 +71,7 @@ enum XMLHttpRequestState { Opened = 1, HeadersReceived = 2, Loading = 3, - XHRDone = 4, // So as not to con...
1
8
8
11aede1873490c1f1e4ffd6bf9837eab258a1122
Ms2ger
2015-03-25T23:03:49
servo: Merge #5362 - Remove old_path usage from layout (from Ms2ger:layout-old-path); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 04d78b6fdbe7c205877d18a0cb85cfd058f5d1f5
diff --git a/layout/layout_debug.rs b/layout/layout_debug.rs index 79bd12ce8..36a013161 100644 --- a/layout/layout_debug.rs +++ b/layout/layout_debug.rs @@ -126,7 +126,6 @@ pub fn end_trace() { root_scope.post = json::encode(&flow::base(&*task_state.flow_root)).unwrap(); let result = json::encode(&root_scop...
2
1
3
18848e38c399ebd32bbdaa8d6ff14ad120e46133
snf
2015-03-25T20:48:50
servo: Merge #5360 - implementing MainThreadRunnable in ScriptTask (from snf:main_thread_runnable); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 7f587f6cb56b1dae1a56dec36754007ef4d376ac
diff --git a/script/script_task.rs b/script/script_task.rs index 35e57eacf..8aa3ccd02 100644 --- a/script/script_task.rs +++ b/script/script_task.rs @@ -155,6 +155,10 @@ pub trait Runnable { fn handler(self: Box<Self>); } +pub trait MainThreadRunnable { + fn handler(self: Box<Self>, script_task: &ScriptTask)...
1
8
0
c2f5903d3f5e77c7dce8e8cbdbcccedd0d20a0a7
Glenn Watson
2015-03-25T19:39:49
servo: Merge #5339 - Add mozbrowser events for location + title change (from glennw:moz-events); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 644dc405863cc5cdf7c562588cdd05c40d00ee35
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 228211e3e..45dd597b4 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -606,6 +606,10 @@ impl<LTF: LayoutTaskFactory, STF: ScriptTaskFactory> Constellation<LTF, STF> { script_chan.send(Constellation...
5
82
23
b05ab6eb56df044f0d4d9addab51deeb5cc61fa1
Ms2ger
2015-03-25T16:36:57
servo: Merge #5358 - Fix warnings related to std::fs::PathExt on Android (from Ms2ger:android-path-ext); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: da2231a8fa4bebc226a11def6784dbf4b08c00bc
diff --git a/util/lib.rs b/util/lib.rs index c9b1c5bb7..b4fa2b7a5 100644 --- a/util/lib.rs +++ b/util/lib.rs @@ -13,7 +13,7 @@ #![feature(old_io)] #![feature(optin_builtin_traits)] #![feature(path)] -#![feature(path_ext)] +#![cfg_attr(not(target_os = "android"), feature(path_ext))] #![feature(plugin)] #![feature(r...
2
3
2
251e9b026ee5b031e1b3cbc27e1c09a45c3ede53
Ms2ger
2015-03-25T15:03:51
servo: Merge #5356 - Move devtools to std::net (fixes #5355) (from servo:devtools); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 06d3fc719c58c8a798f8a8fc827ac47385b61c40
diff --git a/devtools/actor.rs b/devtools/actor.rs index 4f197ccb7..2ea8e75c0 100644 --- a/devtools/actor.rs +++ b/devtools/actor.rs @@ -7,8 +7,8 @@ use std::any::{Any, TypeId}; use std::collections::HashMap; use std::cell::{Cell, RefCell}; -use std::old_io::TcpStream; use std::mem::{replace, transmute}; +use std::...
8
38
38
c6c84de930678d474970c7c38ba37e18852774f4
Ms2ger
2015-03-25T09:45:48
servo: Merge #5354 - Cleanup canvas_paint_task.rs (from Ms2ger:canvas); r=saneyuki Source-Repo: https://github.com/servo/servo Source-Revision: 004e12c89deb2c30ac634e3ce2e2c63ac9da5dee
diff --git a/canvas/canvas_paint_task.rs b/canvas/canvas_paint_task.rs index 4822fd487..443f70bfc 100644 --- a/canvas/canvas_paint_task.rs +++ b/canvas/canvas_paint_task.rs @@ -64,10 +64,10 @@ impl<'a> CanvasPaintTask<'a> { //start offset of the copyable rectangle let mut src = (src_read_rect.origin.y...
1
16
16
7b68be379409490915a0eb9048923b733a56fb26
Corey Farwell
2015-03-25T05:54:48
servo: Merge #5351 - Add links for script::dom::window to whatwg HTML spec (from frewsxcv:window-docs); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 8b5df113f0202e889195e3772e13c037c4d33cc7
diff --git a/script/dom/window.rs b/script/dom/window.rs index 16fd8358e..8a915cbc9 100644 --- a/script/dom/window.rs +++ b/script/dom/window.rs @@ -281,6 +281,7 @@ pub fn base64_atob(atob: DOMString) -> Fallible<DOMString> { } impl<'a> WindowMethods for JSRef<'a, Window> { + // https://html.spec.whatwg.org/#dom...
1
12
0
ea0e4f246385220571a9cbcc7ff3a3951b1a6650
Glenn Watson
2015-03-25T03:57:48
servo: Merge #5350 - Fixes #4964 and #4965 (from glennw:glutin-fixes); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: 2926963045f505b5cf88fd433c696c9edfb829ae
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 750871127..9d422fb0d 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -353,7 +353,7 @@ dependencies = [ [[package]] name = "glutin" version = "0.0.7" -source = "git+https://github.com/servo/glutin?branch=servo#8138fe5755aa1b23fee704994d52597109f1abe0" +so...
1
1
1
ab48c0dcdd31c045c6946f7b1485fc7569fcf800
Avi Weinstock
2015-03-24T22:39:49
servo: Merge #5345 - Create a seperate thread for devtools' TCP acceptor (Closes #5294) (from aweinstock314:master); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 1f0291c4db25c7f0f6bb2c0f1126819162a97aa6
diff --git a/devtools/lib.rs b/devtools/lib.rs index 4803d8eca..113156541 100644 --- a/devtools/lib.rs +++ b/devtools/lib.rs @@ -10,7 +10,7 @@ #![crate_name = "devtools"] #![crate_type = "rlib"] -#![feature(int_uint, box_syntax, io, old_io, core, rustc_private)] +#![feature(int_uint, box_syntax, old_io, core, rustc...
2
34
36
5e64aad9b2c552f6261d3454c2d5ad7a5ce8b2ca
Patrick Walton
2015-03-24T17:42:55
servo: Merge #5344 - layout: Stop copying the guts of style objects when calculating replaced widths and heights (from pcwalton:dont-copy-style-guts); r=mbrubeck 50% layout improvement in a photo gallery demo I'm working on. r? @mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 2a9f29f3824479da35...
diff --git a/layout/fragment.rs b/layout/fragment.rs index 5b2c3d83a..1fa36d7be 100644 --- a/layout/fragment.rs +++ b/layout/fragment.rs @@ -411,12 +411,12 @@ impl ReplacedImageFragmentInfo { } pub fn calculate_replaced_inline_size(&mut self, - style: ComputedValues,...
1
16
16
593d0f75b8b285c2bb89f43b5463d1e5ed8565d2
Corey Farwell
2015-03-24T16:33:55
servo: Merge #5343 - Clean up a few things in script::dom::window (from frewsxcv:script-dom-window); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 1432b630d2fb54be1bae512d3a37cc0aee714db4
diff --git a/script/dom/window.rs b/script/dom/window.rs index 88178374a..16fd8358e 100644 --- a/script/dom/window.rs +++ b/script/dom/window.rs @@ -270,11 +270,9 @@ pub fn base64_atob(atob: DOMString) -> Fallible<DOMString> { // U+002B PLUS SIGN (+) // U+002F SOLIDUS (/) // Alphanumeric ASCII charact...
1
28
30
c5b6720d410e070156dae634c86621b83a012039
Corey Farwell
2015-03-24T12:54:48
servo: Merge #5334 - Cleanup and modernize script::dom::document (from frewsxcv:cleanup-document); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 8f4526842087c0e47a51d320d06749980ed94ecb
diff --git a/script/dom/document.rs b/script/dom/document.rs index 90eb48280..999d759df 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -339,15 +339,12 @@ impl<'a> DocumentHelpers<'a> for JSRef<'a, Document> { let root: JSRef<Node> = NodeCast::from_ref(root.r()); fo...
1
32
47
cc4536641c38226ea73e1417ee01b107c521fb08
Glenn Watson
2015-03-24T05:03:45
servo: Merge #5333 - Ensures that iframe navigation updates the parent iframe element subpage id (from glennw:fix-iframe-subpage); r=jdm This fixes the case of clicking a link in an iframe, going back, then clicking the link again. Source-Repo: https://github.com/servo/servo Source-Revision: 2f85c5bb502c2582d34772db9...
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 86efe99ab..f822a9e19 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -597,6 +597,16 @@ impl<LTF: LayoutTaskFactory, STF: ScriptTaskFactory> Constellation<LTF, STF> { // Set paint permissions correctly...
4
40
0
cf4d7eae595f3790b03d264b373b68375cfccb17
Glenn Watson
2015-03-24T03:45:46
servo: Merge #5332 - Fixes a bug where the window size may not get passed to a new root pipeline (from glennw:fix-root-window-rect); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: cad58b3bec03586fd7d81e6fa45831803efd2350
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index bf61a03e9..86efe99ab 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -7,6 +7,7 @@ use pipeline::{Pipeline, CompositionPipeline}; use compositor_task::CompositorProxy; use compositor_task::Msg as CompositorMs...
2
34
31
c3fefe237ed88e679f9331bdd05c6e7619e0d119
Avi Weinstock
2015-03-24T02:36:47
servo: Merge #5328 - Fixed some deprecation errors in components/net (from aweinstock314:master); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: be68ea0d81718415cf78e45edbe46800a49697c9
diff --git a/net/cookie.rs b/net/cookie.rs index a6390bf35..46094ac00 100644 --- a/net/cookie.rs +++ b/net/cookie.rs @@ -13,8 +13,9 @@ use time::{Tm, now, at, Timespec}; use url::Url; use std::borrow::ToOwned; use std::i64; -use std::old_io::net::ip::IpAddr; +use std::net::{Ipv4Addr, Ipv6Addr}; use std::time::Durat...
3
18
21
77c37cb087a5bc164ca731ee71377b7f459402a5
Adenilson Cavalcanti
2015-03-24T01:27:46
servo: Merge #5326 - Squashing the remaining warnings in utils module (from Adenilson:squashingWarnings03); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 7f60feef77ff9f3cdd1c592e71d8f7afa2ac1199
diff --git a/util/lib.rs b/util/lib.rs index e8c54f6e8..58b29b66b 100644 --- a/util/lib.rs +++ b/util/lib.rs @@ -12,13 +12,12 @@ #![feature(io)] #![feature(old_io)] #![feature(optin_builtin_traits)] -#![feature(page_size)] +#![cfg_attr(target_os = "linux", feature(page_size, str_words))] #![feature(path)] #![featu...
1
1
2
db17f451c9256830027d14002904606e9b55c929
Glenn Watson
2015-03-24T00:03:45
servo: Merge #5318 - Make text input relayout when value is changed directly (from glennw:input-relayout); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: b7e66c5349e639dd6b1850e6b6e93811ffd47141
diff --git a/script/dom/htmlinputelement.rs b/script/dom/htmlinputelement.rs index ec117ad2e..46e841e79 100644 --- a/script/dom/htmlinputelement.rs +++ b/script/dom/htmlinputelement.rs @@ -259,6 +259,7 @@ impl<'a> HTMLInputElementMethods for JSRef<'a, HTMLInputElement> { fn SetValue(self, value: DOMString) { ...
1
2
0
ab4d2187932b578a69fb44fa7b74632143bd4803
Nicholas Nethercote
2015-03-23T22:33:47
servo: Merge #5284 - Print trees in the memory profiler's output (from nnethercote:treeify-reports); r=jdm Memory reports are much nicer to read when grouped into trees, which requires giving each report a path instead of a name. Sample output: ``` Begin memory reports | | 2.51 MiB -- pages | 2.51 MiB -- url...
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index 4df269e72..08658f05d 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -482,7 +482,7 @@ impl LayoutTask { let rw_data = self.lock_rw_data(possibly_locked_rw_data); let stacking_context = rw_data.stacking_context.as_ref();...
2
191
29
7c8d67ac39a72c0de5229883e90b6cc5281a1076
Corey Farwell
2015-03-23T21:42:48
servo: Merge #5312 - Cleanup 'view-source:' conditional (from frewsxcv:cleanup-view-source); r=jdm Fixes #5304 Source-Repo: https://github.com/servo/servo Source-Revision: 0c3615ced1c4b648e63ad8c33ea0885c45ce3fb1
diff --git a/net/http_loader.rs b/net/http_loader.rs index e1f0c1c69..6bc5e9900 100644 --- a/net/http_loader.rs +++ b/net/http_loader.rs @@ -64,7 +64,8 @@ fn load(mut load_data: LoadData, start_chan: Sender<TargetedLoadResponse>, cooki // real URL that should be used for which the source is to be viewed. // C...
1
3
5
f57180374c488794c4bf0e6f7dc8a53a72cd51bb
Corey Farwell
2015-03-23T20:42:50
servo: Merge #5311 - Make Actor::handle_message take &str instead of &String (from frewsxcv:handle-message-str); r=jdm Fixes #5305 Source-Repo: https://github.com/servo/servo Source-Revision: f62ab247fcb9e5fb7025dfdaa83f4ebd4084eab1
diff --git a/devtools/actor.rs b/devtools/actor.rs index 5593a07e8..4f197ccb7 100644 --- a/devtools/actor.rs +++ b/devtools/actor.rs @@ -18,7 +18,7 @@ use rustc_serialize::json; pub trait Actor: Any { fn handle_message(&self, registry: &ActorRegistry, - msg_type: &Strin...
5
17
17
feaa67fdc4862ee64d9a610db96fcdfd90bf32ac
Josh Matthews
2015-03-23T19:39:53
servo: Merge #5327 - Fix double-panic when the script task panics (from Ms2ger:memory-explosion); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 5ce7d8accfc52dd37b19b4400a643a980412bb2f
diff --git a/script/dom/bindings/js.rs b/script/dom/bindings/js.rs index 72f4c16e8..f390a6444 100644 --- a/script/dom/bindings/js.rs +++ b/script/dom/bindings/js.rs @@ -91,6 +91,12 @@ impl<T: Reflectable> Unrooted<T> { } } + /// Create a new unrooted value from a `Temporary<T>`. + #[allow(unrooted...
3
18
12
3639b1c40d0a3a2c30928a8924fc04e190c2ba79
Ms2ger
2015-03-23T14:45:50
servo: Merge #5324 - Remove allow(missing_copy_implementations) attributes (from Ms2ger:missing_copy_implementations); r=jdm This is now the default. Source-Repo: https://github.com/servo/servo Source-Revision: b1a35f549baad871a3691ae485af2efecd2d73f7
diff --git a/compositing/lib.rs b/compositing/lib.rs index 4e71e9fb2..77c389d86 100644 --- a/compositing/lib.rs +++ b/compositing/lib.rs @@ -10,8 +10,6 @@ #![feature(rustc_private)] #![feature(std_misc)] -#![allow(missing_copy_implementations)] - #[macro_use] extern crate log; diff --git a/net/lib.rs b/net/lib....
8
0
12
333a5e618b5a178e971c19c6c6488b8fe0ff03f9
Corey Farwell
2015-03-23T13:57:50
servo: Merge #5321 - Add TODO comments for a recently opened issue (from frewsxcv:patch-1); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: ca79abe45871b4bfe8e8162cb39f8b6bacd0b0b6
diff --git a/script/dom/document.rs b/script/dom/document.rs index bde9652cf..90eb48280 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -1106,6 +1106,7 @@ impl<'a> DocumentMethods for JSRef<'a, Document> { TreeWalker::new(self, root, whatToShow, filter) } + // TODO: Support root S...
1
2
0
55616682ee68826d4a5d99e7ffb142bfe7cde7ca
Ms2ger
2015-03-23T12:57:50
servo: Merge #5323 - Fix warnings in script (from Ms2ger:script-warnings); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: f9826c3ae80a9d859fc067dcceddf3ab105656f6
diff --git a/script/dom/document.rs b/script/dom/document.rs index c11c22b67..bde9652cf 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -1461,7 +1461,7 @@ impl DocumentProgressHandler { subpage_id, ...
5
6
7
fef875ff70523eca8035bd26e723c5f3d6c9fd03
Corey Farwell
2015-03-23T11:18:50
servo: Merge #5319 - dom::urlsearchparams cleanup and documentation (from frewsxcv:urlsearchparams); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: ccac6a944e37e2ea99aa933bbabc2e3d896c2f6e
diff --git a/script/dom/urlsearchparams.rs b/script/dom/urlsearchparams.rs index a8cfa3caf..f5c1206c8 100644 --- a/script/dom/urlsearchparams.rs +++ b/script/dom/urlsearchparams.rs @@ -37,10 +37,12 @@ impl URLSearchParams { } pub fn new(global: GlobalRef) -> Temporary<URLSearchParams> { - reflect_dom...
1
25
11
4a099263b2e1c929325a7d902c3889e4d07ce71c
Ms2ger
2015-03-23T09:24:50
servo: Merge #5314 - Update some feature gates (from Ms2ger:warnings); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 4c2ec083e855d52eeb77f25e00190b8beb820742
diff --git a/gfx/lib.rs b/gfx/lib.rs index 62f72722b..a2cb03d33 100644 --- a/gfx/lib.rs +++ b/gfx/lib.rs @@ -8,7 +8,6 @@ #![feature(core)] #![feature(int_uint)] #![cfg_attr(any(target_os="linux", target_os = "android"), feature(io))] -#![cfg_attr(any(target_os="linux", target_os = "android"), feature(old_path))] #!...
2
3
2
38f4b38d455cf9a61159bce810686b3b247addc4
Corey Farwell
2015-03-23T01:30:51
servo: Merge #5316 - Stop abusing format! macro when construct a String (from frewsxcv:no-format-abuse); r=jdm In these cases for `format!`, we're just constructing a String of the single argument with no special format. Source-Repo: https://github.com/servo/servo Source-Revision: dfb8929b001c8d0fb6d5e63f5a9d6dcc17cb...
diff --git a/script/dom/document.rs b/script/dom/document.rs index 243951600..d6e5f49b4 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -1090,7 +1090,7 @@ impl<'a> DocumentMethods for JSRef<'a, Document> { fn LastModified(self) -> DOMString { match self.last_modified { Som...
4
5
5
adf1a50b96f8c31673f0e59eccc97a9c2d9b4ce8
Corey Farwell
2015-03-22T16:09:46
servo: Merge #5307 - Tidy up script::dom::document.SetBody (from frewsxcv:document-set-body); r=jdm There were a few things that were bothering me with `SetBody`: * The 'Step 3' comment is in the wrong place * The logic of 'Step 4' comes before 'Step 3' * 'Step 5' was not documented Source-Repo: https://github.com/s...
diff --git a/script/dom/document.rs b/script/dom/document.rs index 10931e0dc..243951600 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -1216,22 +1216,23 @@ impl<'a> DocumentMethods for JSRef<'a, Document> { return Ok(()); } - // Step 3. - match self.get_html_el...
1
14
13
ba5dfff399b564d868a12a72392da6a5de747895
Ms2ger
2015-03-22T15:18:47
servo: Merge #5308 - Remove the unneccesary thread being spawned in Browser::new (from Ms2ger:main-spawn); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: aeaf1ea5833f9de40a0b4e27bc26196014ce1683
diff --git a/servo/lib.rs b/servo/lib.rs index 6b080f661..0312fca76 100644 --- a/servo/lib.rs +++ b/servo/lib.rs @@ -50,10 +50,6 @@ use util::taskpool::TaskPool; #[cfg(not(test))] use std::rc::Rc; -#[cfg(not(test))] -use std::sync::mpsc::channel; -#[cfg(not(test))] -use std::thread::Builder; pub struct Browser {...
1
39
55
2d51462e6325f988c0e365d4c7c6ca43e811db73
Manish Goregaokar
2015-03-22T14:27:48
servo: Merge #5298 - Basic userscript support (from Manishearth:userscript); r=saneyuki Gives us a place to store polyfills and other userscripts so that we can: - Quickly determine what DOM features are needed to make stuff like jQuery work by iteratively writing stub implementations - Write spec-incompatible but ...
diff --git a/script/dom/htmlheadelement.rs b/script/dom/htmlheadelement.rs index 5b38078e3..7f2a03c96 100644 --- a/script/dom/htmlheadelement.rs +++ b/script/dom/htmlheadelement.rs @@ -2,15 +2,24 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.or...
3
60
3
258082928d88f6c0aece0588b8efd33fcbf3d8ca
Ms2ger
2015-03-21T19:42:45
servo: Merge #5301 - Modernize reftest.rs (from Ms2ger:reftests); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 87af57cefc671f445c5b977f2b27d7ca9e70e390
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 1702516ae..3e289cf5f 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -686,7 +686,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "png" version = "0.1.0" -source = "git+https://github.com/servo/rust-png#da851d68159...
1
2
2
2182ac4e489eab1164eef67372888717e92047c3
Ms2ger
2015-03-21T18:57:46
servo: Merge #5303 - Update some code that's feature-gated under core (from Ms2ger:core); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 43f3f6c897916aea75773f74060ec84a338834d0
diff --git a/canvas/canvas_paint_task.rs b/canvas/canvas_paint_task.rs index 8efea20d2..c8781419f 100644 --- a/canvas/canvas_paint_task.rs +++ b/canvas/canvas_paint_task.rs @@ -237,7 +237,7 @@ impl<'a> CanvasPaintTask<'a> { //start offset of the copyable rectangle let mut src = (src_read_rect....
33
104
107
9dcd0ca853f87800ebd3e7a0905c2f75e1da10f9
Manish Goregaokar
2015-03-21T11:12:45
servo: Merge #5296 - Replace unsafe_blocks by unsafe_code (from servo:unsafe_code); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: 29a36adbe7d87fb38ba9bef3a718c6c823fb5977
diff --git a/layout/block.rs b/layout/block.rs index 1f6b64a97..231f406d2 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -25,7 +25,7 @@ //! //! http://dev.w3.org/csswg/css-sizing/ -#![deny(unsafe_blocks)] +#![deny(unsafe_code)] use context::LayoutContext; use css::node_style::StyledNode; diff --git a/l...
53
151
57
06b431cbaa50d2bda367a174dd70448d7c3d18cc
Ms2ger
2015-03-20T23:00:44
servo: Merge #5297 - Replace most usage of std::old_io::File (from Ms2ger:fs); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: ec60f29203c75b46d59253c7cbb4005fce7e4ad4
diff --git a/gfx/lib.rs b/gfx/lib.rs index 2bd53bd69..62f72722b 100644 --- a/gfx/lib.rs +++ b/gfx/lib.rs @@ -7,7 +7,7 @@ #![feature(collections)] #![feature(core)] #![feature(int_uint)] -#![cfg_attr(any(target_os="linux", target_os = "android"), feature(old_io))] +#![cfg_attr(any(target_os="linux", target_os = "andr...
6
32
25
aa9a70352fe152fbdc38f133d1899629bd0643af
Corey Farwell
2015-03-20T21:57:45
servo: Merge #5259 - A few Constellation cleanup commits (from frewsxcv:constellation-cleanup); r=glennw I messed up #5255 Source-Repo: https://github.com/servo/servo Source-Revision: 075f667ce7fe3d94e9013768449a93ff3155c307
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index f5171e817..307a4abae 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -22,8 +22,7 @@ use msg::constellation_msg::{FrameId, PipelineExitType, PipelineId}; use msg::constellation_msg::{SubpageId, WindowSizeData}...
1
23
36
52d444e3ad2664c42d2d91a981b41cda606e6413
Ms2ger
2015-03-20T21:00:49
servo: Merge #5293 - Cleanup resource_task's global_init() (from Ms2ger:global_init); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 4eb26065acdc37d275e658d8581282cb39b90686
diff --git a/net/lib.rs b/net/lib.rs index 2387583b7..7137b410a 100644 --- a/net/lib.rs +++ b/net/lib.rs @@ -2,6 +2,7 @@ * 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(alloc)] #![feature(box_syntax)] #![feature(coll...
2
24
12
e967d193f618cfb3a8196ab6f46bcbe2e2346f3b
Patrick Walton
2015-03-20T17:51:47
servo: Merge #5261 - Remove debugging info in release mode and stop reflowing on every new image that comes in (from pcwalton:too-many-reflows); r=pcwalton,metajack These help Facebook Timeline a lot. r? @metajack Source-Repo: https://github.com/servo/servo Source-Revision: aa6ed369b80cbbc81eef9e8697963d0d64358f9b
diff --git a/script/script_task.rs b/script/script_task.rs index ce4dd123d..80441a60c 100644 --- a/script/script_task.rs +++ b/script/script_task.rs @@ -1212,7 +1212,11 @@ impl ScriptTask { fn handle_reflow_event(&self, pipeline_id: PipelineId) { debug!("script got reflow event"); let page = get_...
3
17
6
1460e198a922d0f9252c19e49a71f5150b912c08
Ms2ger
2015-03-20T17:00:54
servo: Merge #5288 - Fix various build warnings (from Ms2ger:warnings); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: 0663cd632517c9a9c86db47456c5a4da637045ed
diff --git a/layout/flow.rs b/layout/flow.rs index a49b8a18d..17ee14f7e 100644 --- a/layout/flow.rs +++ b/layout/flow.rs @@ -58,7 +58,7 @@ use std::fmt; use std::iter::Zip; use std::num::FromPrimitive; use std::raw; -use std::sync::atomic::{AtomicUint, Ordering}; +use std::sync::atomic::{AtomicUsize, Ordering}; use...
14
29
32
064ea116aa2a871c59561284b476be186f12b2a1
Ms2ger
2015-03-20T15:57:54
servo: Merge #5289 - Stop using CString::from_slice in redirect_output (from Ms2ger:android-redirect); r=metajack It will panic if there are any null bytes in read_buffer, but fgets guarantees that there is a null-terminator. Source-Repo: https://github.com/servo/servo Source-Revision: 717805a593b58c69763dcabadff0b4a...
diff --git a/servo/main.rs b/servo/main.rs index 4bef932e5..772a0eaa3 100644 --- a/servo/main.rs +++ b/servo/main.rs @@ -88,9 +88,8 @@ fn redirect_output(file_no: c_int) { let mut read_buffer: [u8; 1024] = mem::zeroed(); let FilePtr(input_file) = input_file; fgets(read...
1
2
3
d5c9a7de950416fbc30472ff3771354d5a22cf9d
Ms2ger
2015-03-20T15:12:51
servo: Merge #5287 - Update some feature gates (from Ms2ger:gates); r=jdm CC #5286. Source-Repo: https://github.com/servo/servo Source-Revision: 6ffd459479dde59f471eb42ef0515dd964b6a9d9
diff --git a/layout/lib.rs b/layout/lib.rs index 45322b6ed..0beebba4c 100644 --- a/layout/lib.rs +++ b/layout/lib.rs @@ -6,10 +6,9 @@ #![feature(box_syntax)] #![feature(collections)] #![feature(core)] -#![feature(hash)] #![feature(int_uint)] -#![feature(io)] -#![feature(path)] +#![feature(old_io)] +#![feature(old_p...
2
3
5
e12927e3066cf1beff4af270e0d207fdac357eaa
Himaja
2015-03-20T03:48:48
servo: Merge #5229 - M1503: Extend the developer tools support - Initial steps (from hsvalava:m1503); r=jdm Fixing ConsoleMsg for console.log messages in the Developer Tools web console. Source-Repo: https://github.com/servo/servo Source-Revision: ab8d43910ca2f3e60e3dd1417be80ab53f438b6e
diff --git a/devtools/lib.rs b/devtools/lib.rs index 828f3b3bb..215a5cab5 100644 --- a/devtools/lib.rs +++ b/devtools/lib.rs @@ -67,9 +67,12 @@ struct ConsoleAPICall { #[derive(RustcEncodable)] struct ConsoleMsg { - logLevel: u32, - timestamp: u64, - message: String, + level: String, + timeStamp: u64...
3
17
9
be26300df7db622bb2eefe03c34e553303734aa5
Matt Brubeck
2015-03-19T23:33:48
servo: Merge #5280 - Use the same version of rand everywhere (from mbrubeck:rand); r=larsbergstrom r? @larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: 794d9f696a7a1c80afec44badfb151c047239cd7
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 2834d5d0c..680b98486 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -706,15 +706,6 @@ dependencies = [ "log 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "rand" -version = "0.2.0" -source = "registry+https://gi...
1
2
11
5fbae6cd3e4aa1be1044dbeb460a541e10a6e008
Glenn Watson
2015-03-19T21:18:53
servo: Merge #5270 - Fix hit testing with stacking contexts (apparent since transforms landed) (from glennw:hit-test-stacking-context); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: fef439726aea26ef631f414c4852fa4cb49fff15
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 2fdf6c071..37fb6b733 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -469,6 +469,9 @@ impl StackingContext { } } + // Convert the point into stacking context local space + point = point - sel...
1
3
0
94846f79129371bf147ca494d0a6730f37dcf407
Jack Moffitt
2015-03-19T18:03:52
servo: Merge #5276 - Switch from poll_events to wait_events (from metajack:fix-idle-loop); r=pcwalton This fixes 100% CPU usage during idle. Source-Repo: https://github.com/servo/servo Source-Revision: e845695b6674a8f97f6a172bf575e6c965883ff1
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 0b4505c60..2834d5d0c 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -350,7 +350,7 @@ dependencies = [ [[package]] name = "glutin" version = "0.0.7" -source = "git+https://github.com/servo/glutin#183d96b44e497fcc441f94d32d5228e4c3d28c4d" +source = "git+h...
1
2
2
9a0f481168a3572021b286540d2d1810bf3110df
Jack Moffitt
2015-03-19T15:45:56
servo: Merge #5277 - Fix overflowed arithmetic (from metajack:deque-wrap-fix); r=jdm This uses wrapping_add, which was always the intended operation. Fixes #5275. Source-Repo: https://github.com/servo/servo Source-Revision: 4863eb65e9419d4b89834c7d1ad068eabfa05641
diff --git a/util/deque/mod.rs b/util/deque/mod.rs index 888646a03..8ab6726e7 100644 --- a/util/deque/mod.rs +++ b/util/deque/mod.rs @@ -391,7 +391,7 @@ impl<T: Send> Buffer<T> { // NB: not entirely obvious, but thanks to 2's complement, // casting delta to usize and then adding gives the desired ...
1
1
1
9d6bc30b1172cffa8c1362b7a701c02fbaad3895
Manish Goregaokar
2015-03-19T04:33:47
servo: Merge #5269 - rm unnecessary old_impl_check (from Manishearth:old_impl); r=jdm Brings us to zero old impls. \o/ Feel free to add this to a larger warning fix PR Source-Repo: https://github.com/servo/servo Source-Revision: 34950418ea9929a361cbed376141974cf030ca95
diff --git a/util/cache.rs b/util/cache.rs index 8e81bb2b8..2f4e88b5f 100644 --- a/util/cache.rs +++ b/util/cache.rs @@ -2,8 +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/. */ -#![old_impl_check] - use std::collections::Hash...
1
0
2
6579e68588a2004de1e03e54d494febdd43923b5
Matt Brubeck
2015-03-19T03:39:49
servo: Merge #5268 - Use `append` instead of `extend` where possible (from mbrubeck:append); r=jdm The new `Vec::append` method is clearer and potentially faster. Source-Repo: https://github.com/servo/servo Source-Revision: 646f82147946c3221a6de0e575b4750dc61d5610
diff --git a/layout/inline.rs b/layout/inline.rs index 8a323d744..3c0c0ccd0 100644 --- a/layout/inline.rs +++ b/layout/inline.rs @@ -743,8 +743,8 @@ impl InlineFragments { } /// Merges another set of inline fragments with this one. - pub fn push_all(&mut self, fragments: InlineFragments) { - self....
1
2
2
3d864fbbbd4abc1e7521c80f28f3199fe46db505
Adenilson Cavalcanti
2015-03-19T02:54:48
servo: Merge #5267 - Squashing a few warnings (from Adenilson:squashWarnings02); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 0b1c2a1798f84f50778bc54bce23e5a606319a4e
diff --git a/servo/lib.rs b/servo/lib.rs index 52f4595b4..6b080f661 100644 --- a/servo/lib.rs +++ b/servo/lib.rs @@ -2,7 +2,7 @@ * 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(core, env, libc, path, rustc_private, std...
3
2
5
3fde5c0d2add38528e69eb74fa00dcbbc7653811
Glenn Watson
2015-03-19T01:45:47
servo: Merge #5254 - Fixes positioning of inline blocks that generate stacking contexts (from glennw:ib-stacking-context); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: e0ead847812ddeb8577f9263bb969d4a17839f19
diff --git a/layout/inline.rs b/layout/inline.rs index 97d88bb06..8a323d744 100644 --- a/layout/inline.rs +++ b/layout/inline.rs @@ -1342,7 +1342,7 @@ impl Flow for InlineFlow { self.base .absolute_position...
1
1
1
134868406024a4ff5e99d3f9a7fcb9bc58980c9c
Chris Paris
2015-03-19T00:06:49
servo: Merge #5029 - Serialize using html5ever (from ChrisParis:h5e-serialize); r=jdm Fixes https://github.com/servo/servo/issues/3713. Depends on https://github.com/servo/html5ever/pull/100 and https://github.com/servo/html5ever/pull/101. Source-Repo: https://github.com/servo/servo Source-Revision: 1236280bea969cb3e...
diff --git a/script/dom/element.rs b/script/dom/element.rs index da9d4691f..3d7ddff05 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -44,14 +44,13 @@ use dom::htmlbodyelement::{HTMLBodyElement, HTMLBodyElementHelpers}; use dom::htmlcollection::HTMLCollection; use dom::htmlelement::HTMLElementTypeId...
4
104
174
9e731996c1ebf635d2ab3686f0a529623db34f6c
Matt Brubeck
2015-03-18T22:28:09
servo: Merge #5266 - Rename DList to LinkedList everywhere (from mbrubeck:linked_list); r=metajack Fixes deprecation warnings. Also removes a workaround for a fixed bug in Rust. Source-Repo: https://github.com/servo/servo Source-Revision: 2346c9b94055f84a536808e40ad0b596ee21fbf4
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 74c0792fd..2fdf6c071 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -26,7 +26,7 @@ use text::TextRun; use azure::azure::AzFloat; use azure::azure_hl::{Color}; -use collections::dlist::{self, DList}; +use collections::linked_...
6
41
45
219f807928dee4a27fb35e5645eb2a44fc097c37
Simon Sapin
2015-03-18T21:21:49
servo: Merge #5262 - Fix some post-rustup warnings (from servo:fix-warnings); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: 124a78fb2e4d324a7d0ed54da1cca17839d406b7
diff --git a/compositing/lib.rs b/compositing/lib.rs index 3a1f3459e..4e71e9fb2 100644 --- a/compositing/lib.rs +++ b/compositing/lib.rs @@ -5,7 +5,8 @@ #![feature(box_syntax)] #![feature(core)] #![feature(int_uint)] -#![feature(io)] +#![feature(old_io)] +#![feature(old_path)] #![feature(rustc_private)] #![feature...
20
47
46
570a14f87ba24514c4646aaf849fda67a13c1ba4
Adenilson Cavalcanti
2015-03-18T20:09:56
servo: Merge #5209 - Adding geometric information on DisplayList items while dumping (from Adenilson:displayListGeom01); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: a5217556072390131f41a7a4cd07e8eb5a671d06
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 926d8538c..c8da46bee 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -170,15 +170,13 @@ impl DisplayList { let doit = |items: &Vec<DisplayItem>| { for item in items.iter() { match *item { - ...
1
7
9