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
636ff788abe0c3c03068db2d9158e8886f3604a2
Greg Weng
2014-12-13T00:03:45
servo: Merge #4355 - Return real page titles and URLs for devtools tab choices (from servo:devtools-title); r=metajack Fixes #4167. Source-Repo: https://github.com/servo/servo Source-Revision: 6362d060e16aa006877b2920c5de2fad7db3dace
diff --git a/devtools/lib.rs b/devtools/lib.rs index bea09a8b3..70beed1c2 100644 --- a/devtools/lib.rs +++ b/devtools/lib.rs @@ -35,7 +35,7 @@ use actors::root::RootActor; use actors::tab::TabActor; use protocol::JsonPacketStream; -use devtools_traits::{ServerExitMsg, DevtoolsControlMsg, NewGlobal, DevtoolScriptCon...
3
37
15
ba6f7eaada5612d95723da53cfb233e406d069dd
Adenilson Cavalcanti
2014-12-12T22:30:56
servo: Merge #4324 - Groove and Ridge rendering shows a solid border when color is black (from Adenilson:grooveBorderColor01); r=pcwalton Groove and Ridge rendering shows a solid border when color is black, that is broken and the current patch will implement a similar behavior as Firefox. Source-Repo: https://github....
diff --git a/gfx/paint_context.rs b/gfx/paint_context.rs index 499cdf139..23d54fdf1 100644 --- a/gfx/paint_context.rs +++ b/gfx/paint_context.rs @@ -598,10 +598,22 @@ impl<'a> PaintContext<'a> { border_style::ridge => false, _ => panic!("invalid border style") ...
1
15
3
9e162c6a17984972f2c6ce02030c49585886d8f0
Tomasz Kołodziejski
2014-12-12T21:09:53
servo: Merge #4354 - Don't include the root element when calling Element#getElementsByTagNameNS (from neojski:getElementsByTagNameNS-filter-root); r=Ms2ger This fixes #4349. Source-Repo: https://github.com/servo/servo Source-Revision: 9e83f096a5b61beb7a26c222b1f6d7780b1335b0
diff --git a/script/dom/htmlcollection.rs b/script/dom/htmlcollection.rs index 3ac4d4915..91034fd44 100644 --- a/script/dom/htmlcollection.rs +++ b/script/dom/htmlcollection.rs @@ -62,7 +62,10 @@ impl HTMLCollection { namespace_filter: Option<Namespace> } impl CollectionFilter for AllElem...
1
8
2
0ec8e1957079f60319fe33a4c8a2d6d1e198406e
Nathan E. Egge
2014-12-12T17:36:55
servo: Merge #4347 - Sending key events through script task before processing them in the com (from negge:backspace4); r=jdm ...positor. Fixes #4163 Source-Repo: https://github.com/servo/servo Source-Revision: 4b8c9128597a7598ef76a4bebe6d81fb2ff9aa1a
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 0466b0554..befa0fce6 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -4,6 +4,7 @@ use compositor_layer::{CompositorData, CompositorLayer, DoesntWantScrollEvents}; use compositor_layer::{WantsScrollEvents}; +use compos...
7
29
5
349d3bf1eac4c4351308dfa34bb5281a08103074
Glenn Watson
2014-12-12T02:42:55
servo: Merge #4343 - Remove glut port now that android glutin has landed (from glennw:remove-glut); r=mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 9f8dda7abc5f2dc97f5d90aa24fcc5b596ab6918
diff --git a/servo/main.rs b/servo/main.rs index 2176461bb..01cd4fbc5 100644 --- a/servo/main.rs +++ b/servo/main.rs @@ -103,7 +103,7 @@ fn redirect_output(file_no: c_int) { #[cfg(target_os="android")] fn setup_logging() { use libc::consts::os::posix88::{STDERR_FILENO, STDOUT_FILENO}; - //os::setenv("RUST_LOG...
1
1
1
32ab33814f0674869d82a5df611a9705b9f8dc75
Patrick Walton
2014-12-12T01:06:53
servo: Merge #4339 - layout: Make table layout idempotent (from pcwalton:refactor-tables); r=mbrubeck By "idempotent" I mean that later passes do not stomp on data from earlier passes, so that we can run the passes individually for incremental reflow. The main change here was to stop overwriting the "minimum inline-si...
diff --git a/layout/block.rs b/layout/block.rs index 6b141b1e7..8e8920e40 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -47,7 +47,7 @@ use incremental::{REFLOW, REFLOW_OUT_OF_FLOW}; use layout_debug; use model::{Auto, IntrinsicISizes, MarginCollapseInfo, MarginsCollapse, MarginsCollapseThrough}; use model::{...
7
243
185
29c9ae3c5f2ac76f41b4b3c2b299eb610d76af63
Ms2ger
2014-12-12T00:33:53
servo: Merge #4332 - Pass the timing information to PerformanceTiming rather than exposing methods (from Ms2ger:performance); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: a016f7b201425a4a837168407a25705aaabf30b0
diff --git a/script/dom/performance.rs b/script/dom/performance.rs index 806bad196..60f5abfec 100644 --- a/script/dom/performance.rs +++ b/script/dom/performance.rs @@ -20,15 +20,23 @@ pub struct Performance { } impl Performance { - fn new_inherited(window: JSRef<Window>) -> Performance { + fn new_inherited(w...
3
22
16
155fcb42a0c4fd8a074b59d6a0e5300304b29a79
Rohan Prinja
2014-12-11T23:22:07
servo: Merge #4273 - some fixes for multiple-mode textinput (from ajnirp:multiple-line-textintput); r=Manishearth #4258 Source-Repo: https://github.com/servo/servo Source-Revision: 7ce37636b15346b6672fff4da4698e418d4d9436
diff --git a/script/textinput.rs b/script/textinput.rs index 7febe58db..d39d22918 100644 --- a/script/textinput.rs +++ b/script/textinput.rs @@ -76,9 +76,26 @@ impl TextInput { i } + /// Remove a character at the current editing point + fn delete_char(&mut self, dir: DeleteDir) { + if self....
1
29
23
5f8125ef1164f321cb21d918830dc07faf637c15
Chris Manchester
2014-12-11T22:57:58
servo: Merge #4189 - Return early and decline analysis when linting within unsafe functions; fixes #3658 (from chmanchester:rootlint); r=jdm I think this matches the intent of the issue, I'm a rust/servo novice; any suggestions for improvements are welcome. Thanks! Source-Repo: https://github.com/servo/servo Source-R...
diff --git a/plugins/lints.rs b/plugins/lints.rs index f686623d1..a467ae7c9 100644 --- a/plugins/lints.rs +++ b/plugins/lints.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/. */ -use syntax::{ast, ast_util, codemap,...
2
51
12
f81d4cf9dba38bf960b157b4d8b79f005b05fc82
Martin Robinson
2014-12-11T17:39:59
servo: Merge #4329 - Improve root layer masking to deal with uninitialized layers (from mrobinson:phantom-layer); r=pcwalton At various moments, whether due to timing or layout issues, root layers (iframes) do not have a size and location. We modify the compositor to have all root layers mask to their content boundari...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index c5a11fa16..0466b0554 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -1098,18 +1098,38 @@ impl<Window: WindowMethods> IOCompositor<Window> { fn find_topmost_layer_at_point_for_layer(&self, ...
1
31
7
87379c9ec06829ce627cb833f21adc6c1493c8fd
Ms2ger
2014-12-11T15:07:14
servo: Merge #4330 - Cleanup page.rs some more (from Ms2ger:page); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: d67bcfa7ce7b37e7ed45a53f1daddbc6b2f2ddf2
diff --git a/script/page.rs b/script/page.rs index c8e464630..d634e86a8 100644 --- a/script/page.rs +++ b/script/page.rs @@ -434,11 +434,10 @@ impl Page { pub fn hit_test(&self, point: &Point2D<f32>) -> Option<UntrustedNodeAddress> { let frame = self.frame(); let document = frame.as_ref().unwrap(...
1
11
13
3a75c9d6dd28c3877f97f8013b703b13669142f6
Glenn Watson
2014-12-11T00:57:51
servo: Merge #4321 - Update skia + azure to get android compile and text rendering fixes. Sync CEF cargo.lock (from glennw:update-azure-skia-android); r=larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: 3d845a0c407182eceb14f122e93a36875823459c
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index f9200ea62..6abc4ad6e 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -25,7 +25,7 @@ dependencies = [ [[package]] name = "azure" version = "0.1.0" -source = "git+https://github.com/servo/rust-azure#452939480f5ef7640714f16c6a9e5d02e0e2d147" +source = "git+...
1
2
2
0424d0fed3fabd739306e29c4e174093de32dbd8
Martin Robinson
2014-12-10T17:57:58
servo: Merge #4073 - Remove PseudoDisplayItemClass (from mrobinson:pseudo-rm-rf); r=pcwalton Now that content box queries are made against the flow tree, we can remove PseudoDisplayItems from the display list. Source-Repo: https://github.com/servo/servo Source-Revision: d988d01dd01c4e7e1503667cdfe91d4663e2c916
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index ffbeda602..417162c54 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -420,13 +420,6 @@ pub enum DisplayItem { BorderDisplayItemClass(Box<BorderDisplayItem>), GradientDisplayItemClass(Box<GradientDisplayItem>), Line...
2
1
19
5d2fb423348ec9ac856ee08f6d03508e3ba16db5
Ms2ger
2014-12-10T15:46:03
servo: Merge #4315 - Cleanup page.rs (from Ms2ger:page); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 315e166cf7f24f4586e8ce863be597ce0a3f34c9
diff --git a/script/page.rs b/script/page.rs index 17ff72960..37f4ba155 100644 --- a/script/page.rs +++ b/script/page.rs @@ -228,26 +228,18 @@ impl Page { self.children .borrow_mut() .iter_mut() - .enumerate() - .find(|&(_idx, ref page_tree)| ...
1
15
25
cbc5f15c73c9ef40d9d2f04953faf7696d9549dd
Matt Brubeck
2014-12-10T00:01:12
servo: Merge #4309 - Simple cleanups in layout code (from mbrubeck:float-cleanup); r=pcwalton r? @SimonSapin or @pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: d8a5199ba847bb46733eb4794d0bf93966964499
diff --git a/layout/block.rs b/layout/block.rs index a721244d8..6b141b1e7 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -908,12 +908,8 @@ impl BlockFlow { } // Lay the child out if this was an in-order traversal. - let need_to_process_child_floats = if flow::ba...
2
11
15
4cc1700f6d55cac4ac8b067baf2e91624359945c
Glenn Watson
2014-12-09T21:09:59
servo: Merge #4296 - Update rust-openssl to add static linking for android (from glennw:update-openssl); r=mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 2dfc8fed87da0023b4bd5ddac15b3f7a76a97963
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index 74694f61f..ade8b8735 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -493,7 +493,7 @@ dependencies = [ [[package]] name = "openssl" version = "0.0.1" -source = "git+https://github.com/servo/rust-openssl#0a3cace0265fe286b505508aa6e5096fc94a6896" +source =...
1
2
2
c52c49cfbecd6d585fd5eedad8954292739bae07
Ms2ger
2014-12-09T19:16:07
servo: Merge #4305 - Cleanup ScriptTask::load some more (from Ms2ger:script_task); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 3a70a9fa6bdbfda405ff7b027a09596a2a2747f5
diff --git a/script/parse/html.rs b/script/parse/html.rs index c629305e9..e4980fd6a 100644 --- a/script/parse/html.rs +++ b/script/parse/html.rs @@ -163,7 +163,7 @@ impl<'a> TreeSink<TrustedNodeAddress> for servohtmlparser::Sink { pub fn parse_html(document: JSRef<Document>, input: HTMLInput, - ...
2
10
11
314132f4ee6072c1e4e7be65e59126a5110c0b30
Emanuel Rylke
2014-12-09T13:33:59
servo: Merge #4304 - Don't include the root element when calling Element#getElementsByTagName (from ema-fox:bytag); r=Ms2ger Fixes #4249 Source-Repo: https://github.com/servo/servo Source-Revision: ef81fb13e73d8d8bbda80fbe52ee9d5a539bc519
diff --git a/script/dom/htmlcollection.rs b/script/dom/htmlcollection.rs index c07af9861..3ac4d4915 100644 --- a/script/dom/htmlcollection.rs +++ b/script/dom/htmlcollection.rs @@ -85,7 +85,10 @@ impl HTMLCollection { ascii_lower_tag: Atom, } impl CollectionFilter for TagNameFilter { - ...
1
4
1
87c56b1ca093278272f44766f0c1aba892da4b55
Ms2ger
2014-12-09T12:33:57
servo: Merge #4303 - Update typeable to pick up a warning fix (from Ms2ger:docs-warning); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 25e5d312892421008133cb6c099644cf46a7b2bc
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index afaf29f0e..74694f61f 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -362,7 +362,7 @@ dependencies = [ "mime 0.0.1 (git+https://github.com/hyperium/mime.rs)", "move-acceptor 0.0.1 (git+https://github.com/reem/rust-move-acceptor)", "openssl 0.0.1 (git+...
1
3
3
ca755c09be6c73f1a66b4f8ccb73f518e2731279
Ms2ger
2014-12-09T11:57:56
servo: Merge #4293 - Cleanup ScriptTask::load some more (from Ms2ger:script_task); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 02955d39ccf7fcd8a76279e49c44715b62730c6d
diff --git a/script/parse/html.rs b/script/parse/html.rs index f78949d92..c629305e9 100644 --- a/script/parse/html.rs +++ b/script/parse/html.rs @@ -33,7 +33,7 @@ use string_cache::QualName; pub enum HTMLInput { InputString(String), - InputUrl(Url), + InputUrl(LoadResponse), } trait SinkHelpers { @@ -...
2
37
48
bc28d8344a48e68a16c3e22aff58c4f55912b0ac
Manish Goregaokar
2014-12-09T06:01:05
servo: Merge #4160 - Add unit test to freeze sizes of DOM structs (from Manishearth:a-test-size-dom); r=cgaebel Source-Repo: https://github.com/servo/servo Source-Revision: 2f80a3bac66ae3d0a84b5f4317ebfb537c5c6e2c
diff --git a/script/lib.rs b/script/lib.rs index de1ddbe59..2cf8f99d4 100644 --- a/script/lib.rs +++ b/script/lib.rs @@ -226,3 +226,6 @@ pub mod script_task; mod timers; pub mod textinput; mod devtools; + +#[cfg(all(test, target_word_size = "64"))] +mod tests; diff --git a/script/tests.rs b/script/tests.rs new file ...
2
51
0
5b44122df7be20740b7093325376b3c12a773959
Patrick Walton
2014-12-08T21:52:02
servo: Merge #4272 - gfx: Update Azure and Skia, and rewrite broken clipping logic (from pcwalton:upgrade-azure); r=mrobinson This exposed some problems in our clipping logic, which was never properly rewritten for the stacking context reform. The clipping code worked in terms of a stack of clips, but the new stacking...
diff --git a/gfx/display_list/mod.rs b/gfx/display_list/mod.rs index 1cc152333..ffbeda602 100644 --- a/gfx/display_list/mod.rs +++ b/gfx/display_list/mod.rs @@ -176,8 +176,8 @@ impl StackingContext { pub fn optimize_and_draw_into_context(&self, paint_context: &mut PaintCo...
4
67
55
321b16130df5913f7c6099a7a76d18d31001401b
Emanuel Rylke
2014-12-08T21:25:07
servo: Merge #4284 - Implement selection ranges and deletion of \n for TextInput (from ema-fox:textinput_selection); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: b64bb47e9d7eea0402493abd12b9ea645cc8e083
diff --git a/script/textinput.rs b/script/textinput.rs index d94ae6c4e..7febe58db 100644 --- a/script/textinput.rs +++ b/script/textinput.rs @@ -27,8 +27,8 @@ pub struct TextInput { lines: Vec<DOMString>, /// Current cursor input point edit_point: TextPoint, - /// Selection range, beginning and end po...
1
77
81
6b9c27bc0e7c70e345b35f768681311e1e6ff112
Ms2ger
2014-12-08T20:55:08
servo: Merge #4280 - Cleanup some code in node.rs (from Ms2ger:cleanup-node); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 368d6dc6bfd1b69b9082a6b773f79f1371602b70
diff --git a/script/dom/node.rs b/script/dom/node.rs index eb9b263dc..161c8fc91 100644 --- a/script/dom/node.rs +++ b/script/dom/node.rs @@ -756,15 +756,12 @@ impl<'a> NodeHelpers<'a> for JSRef<'a, Node> { // Step 3. Ok(ref selectors) => { let root = self.ancestors().last().un...
1
38
55
c0a3ca6200dd4ccff4161634d0504d5158ebac5d
Ben Hsu
2014-12-08T19:58:09
servo: Merge #4233 - Fixes #4232 (from driftersprt:BUG-4232); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: f11089cda0564a826ed53949a4b39d519944e28a
diff --git a/devtools/lib.rs b/devtools/lib.rs index 307c2336f..bea09a8b3 100644 --- a/devtools/lib.rs +++ b/devtools/lib.rs @@ -107,8 +107,8 @@ fn run_server(receiver: Receiver<DevtoolsControlMsg>, port: u16) { Ok(()) => {}, Err(()) => { pr...
1
2
2
a1d2c209fa18b6b17f3b006c48e36612addf706a
Clark Gaebel
2014-12-08T19:28:14
servo: Merge #4194 - Fixed #4170 - Incremental reflow wasn't being aggressive enough when nodes get reparented (from cgaebel:incremental-reflow-fix); r=pcwalton When inserting a node that was already dirtied, the dirtying logic would short circuit: "This node is already dirty? Great! Then its parents must be HAS_DIRTY...
diff --git a/layout/wrapper.rs b/layout/wrapper.rs index 9b1d923c7..9a70539c7 100644 --- a/layout/wrapper.rs +++ b/layout/wrapper.rs @@ -225,7 +225,8 @@ impl<'ln> LayoutNode<'ln> { } fn debug_str(self) -> String { - format!("{}: dirty={}", self.type_id(), self.is_dirty()) + format!("{}: change...
3
31
5
b855c2655363908439ad5fd368a075eae83a6f49
Matthew Rasmus
2014-12-08T19:01:51
servo: Merge #4190 - Implements the :checked pseudo-class for inputs (from mttr:checked_pseudo_class); r=Manishearth Relevant spec: https://html.spec.whatwg.org/multipage/scripting.html#selector-checked Also modifies HTMLInputElement::SetChecked to no longer modify its checked content value, instead making use of its...
diff --git a/layout/wrapper.rs b/layout/wrapper.rs index 14c18bf1e..9b1d923c7 100644 --- a/layout/wrapper.rs +++ b/layout/wrapper.rs @@ -552,6 +552,13 @@ impl<'le> TElement<'le> for LayoutElement<'le> { } } + #[inline] + fn get_checked_state(self) -> bool { + unsafe { + self.elem...
6
45
2
265c60c2ae4cecd7297023ea3e27f874a5a80eca
Ms2ger
2014-12-08T16:43:11
servo: Merge #4268 - Cleanup ScriptTask::load and parse_html (from Ms2ger:script_task); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 3f60bcf2c2de856da9f7b86cc8793e75c99d46d9
diff --git a/script/parse/html.rs b/script/parse/html.rs index 70ffc76e6..f78949d92 100644 --- a/script/parse/html.rs +++ b/script/parse/html.rs @@ -16,72 +16,26 @@ use dom::node::{Node, NodeHelpers, TrustedNodeAddress}; use dom::servohtmlparser; use dom::servohtmlparser::ServoHTMLParser; use dom::text::Text; -use p...
2
96
109
a437bd8552df1124baf8e312dfcedfc5714c8a02
Emanuel Rylke
2014-12-08T16:04:14
servo: Merge #4267 - Implement Page(Up|Down) functionality for TextInput and bugfix (from ema-fox:textinput); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 9ac817523c463f2e64a73fef069316f7976063e8
diff --git a/script/textinput.rs b/script/textinput.rs index 6903dfc5c..d94ae6c4e 100644 --- a/script/textinput.rs +++ b/script/textinput.rs @@ -163,9 +163,9 @@ impl TextInput { self.edit_point.index = 0; self.edit_point.line = 0; return; - } else if adjust > 0 && self.edit...
1
20
21
f472a569debfbffc1ae5521b89c5d292fc2792fa
Ms2ger
2014-12-08T09:49:06
servo: Merge #4266 - Create the root frame before evaluating the javascript URL (from Ms2ger:js-document-crash); r=Manishearth This prevents a crash when the script in the javascript URL accesses the document attribute. Source-Repo: https://github.com/servo/servo Source-Revision: ea907c1311051506bc3e7ef6fef8857968c71...
diff --git a/script/script_task.rs b/script/script_task.rs index 28c7c2e8a..23ab04374 100644 --- a/script/script_task.rs +++ b/script/script_task.rs @@ -733,15 +733,6 @@ impl ScriptTask { self.compositor.borrow_mut().set_ready_state(pipeline_id, Loading); - let parser_input = if !is_javascript { - ...
1
9
9
61dfc6fd95f0573e9a7961e2a398689414979bbc
Jonathan Hao
2014-12-08T08:55:08
servo: Merge #4257 - Implement the "messageevent" argument to Document#createEvent. #4008 (from johnathan79717:4008); r=jdm This is a fix for issue #4008. Source-Repo: https://github.com/servo/servo Source-Revision: bdb3a2538b9f10aad4c911cc0118257d8311cd26
diff --git a/script/dom/document.rs b/script/dom/document.rs index 8a4beae9d..174a43af6 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -47,6 +47,7 @@ use dom::htmltitleelement::HTMLTitleElement; use dom::location::Location; use dom::mouseevent::MouseEvent; use dom::keyboardevent::KeyboardEvent; ...
2
15
4
606bedf3da5182e4e1ab607cbf2d23f029a4b1d9
Ms2ger
2014-12-06T15:01:06
servo: Merge #4263 - Use or_init where appropriate (from Ms2ger:or_init); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: c68e2af0a756280a687511614e44652906c0d7a1
diff --git a/script/dom/element.rs b/script/dom/element.rs index ec06678e5..51a3d0950 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -17,7 +17,7 @@ use dom::bindings::codegen::Bindings::NamedNodeMapBinding::NamedNodeMapMethods; use dom::bindings::codegen::InheritTypes::{ElementDerived, HTMLInputElem...
5
20
46
9c8c20aca866ec3cb6951efd405788fad4a2f20c
ProgramFOX
2014-12-06T14:31:01
servo: Merge #4265 - Corrected case of Document#characterSet (from ProgramFOX:issue-4251); r=Ms2ger Resolves #4251 Source-Repo: https://github.com/servo/servo Source-Revision: b805e74fef57e5bec167b2dc6403f9f5e7fc92e7
diff --git a/script/dom/document.rs b/script/dom/document.rs index fad44638f..8a4beae9d 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -413,7 +413,7 @@ impl Document { // http://dom.spec.whatwg.org/#concept-document-quirks quirks_mode: Cell::new(NoQuirks), // ...
1
2
2
e9d3cc7717efcc52cb5d69ba86f27b27d3791016
Tamir Duberstein
2014-12-06T11:28:01
servo: Merge #4262 - `should_move_clip_rect` is a bare function (from tamird:4261); r=jdm `self` is never used, so there's no need for this to be a method. Fixes #4261. @jdm Source-Repo: https://github.com/servo/servo Source-Revision: 3eec780c0050d034c06c3b7b2128401a8b3b1a37
diff --git a/script/page.rs b/script/page.rs index a8b15a0b3..17ff72960 100644 --- a/script/page.rs +++ b/script/page.rs @@ -250,24 +250,6 @@ impl Page { None } - fn should_move_clip_rect(&self, clip_rect: Rect<Au>, new_viewport: Rect<f32>) -> bool{ - let clip_rect = Rect(Point2D(geometry::to_...
1
19
19
b23b2eba9090f4156d97ae23347e05304b3695b7
Ms2ger
2014-12-06T09:37:04
servo: Merge #4264 - Clarify the panic in get_uint_attribute (from Ms2ger:panic); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 507fdbeb6d7c7d2e37adf8313dc3970289dbb900
diff --git a/script/dom/element.rs b/script/dom/element.rs index d3b5b1946..36ce1102e 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -639,7 +639,8 @@ impl<'a> AttributeHandlers for JSRef<'a, Element> { Some(attribute) => { match *attribute.value() { ...
1
2
1
74ba875b66e14346761a1375842a190f2dca573d
Med0paW
2014-12-06T03:13:02
servo: Merge #4254 - Issue 4253 - Setting timeout on a sync XHR should throw InvalidAccessErr (from medopaw:settimeout-on-sync-error); r=Manishearth fix #4253 Source-Repo: https://github.com/servo/servo Source-Revision: 33836715a8703299b931f9f891ec6524cca160a7
diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs index 7d2d31efe..530b262a7 100644 --- a/script/dom/xmlhttprequest.rs +++ b/script/dom/xmlhttprequest.rs @@ -460,7 +460,7 @@ impl<'a> XMLHttpRequestMethods for JSRef<'a, XMLHttpRequest> { fn SetTimeout(self, timeout: u32) -> ErrorResult { ...
1
1
1
03d242e21ac2e78f5ca32a13c7521dd21dd078b6
Timothy B. Terriberry
2014-12-06T00:34:03
servo: Merge #4234 - Change time::profile's meta booleans to enums (from tterribe:issue4158); r=metajack This makes these parameters self-documenting. This patch does not attempt to push those enums into the data structures that feed calls to this function. Fixes #4158. Source-Repo: https://github.com/servo/servo So...
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index 6f030d98e..5a7b7011f 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -54,7 +54,7 @@ use servo_util::opts; use servo_util::smallvec::{SmallVec, SmallVec1, VecLike}; use servo_util::task::spawn_named_with_send_on_failure; use servo_util...
3
41
23
e8f71e7e9720c2bb00b3587b8bfae730942f3a29
Emanuel Rylke
2014-12-06T00:13:05
servo: Merge #4256 - Make the password input element show the correct number of dots for multibyte chars (from ema-fox:password_input); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: d5c62ac2c426f55a88c767e0e48cb58712870639
diff --git a/script/dom/htmlinputelement.rs b/script/dom/htmlinputelement.rs index f4867a97c..20227cd39 100644 --- a/script/dom/htmlinputelement.rs +++ b/script/dom/htmlinputelement.rs @@ -115,7 +115,7 @@ impl LayoutHTMLInputElementHelpers for JS<HTMLInputElement> { .unwrap_or...
1
1
1
a6819f2de14b17866f731ba76b1640b029680217
Emanuel Rylke
2014-12-05T20:16:12
servo: Merge #4255 - Make TextInput correctly handle multibyte chars (from ema-fox:textinput); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 58f9b4ad9601f2e6b641ba660247a01d5068c158
diff --git a/script/textinput.rs b/script/textinput.rs index 9e14f9c8e..6903dfc5c 100644 --- a/script/textinput.rs +++ b/script/textinput.rs @@ -149,7 +149,7 @@ impl TextInput { /// Return the length of the current line under the editing point. fn current_line_length(&self) -> uint { - self.lines[sel...
1
1
1
7795113732cd692074032b59115ad032af2ddc77
Rohan Prinja
2014-12-05T15:43:12
servo: Merge #4247 - allow deleting last char (from ajnirp:delete-one-char); r=jdm fix #4243 Source-Repo: https://github.com/servo/servo Source-Revision: c6aadc5bcc8fccf8a6d4bc41d2b48279fa47c4e5
diff --git a/script/textinput.rs b/script/textinput.rs index 940b9919e..9e14f9c8e 100644 --- a/script/textinput.rs +++ b/script/textinput.rs @@ -117,7 +117,7 @@ impl TextInput { self.edit_point.index - 1 }; let suffix_start = if forward { - let is_eol = self.edit_point.index ==...
1
1
1
14952c443c4cebd27ddbb5dcd8e84ce1d9a2a7ac
Ms2ger
2014-12-05T10:46:07
servo: Merge #4245 - Introduce MutNullableJS::or_init (from Ms2ger:lazy-getters); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 66d4acef8d591b5516d99cb4c7dd9e379242b928
diff --git a/script/dom/bindings/js.rs b/script/dom/bindings/js.rs index 178532875..f24115a34 100644 --- a/script/dom/bindings/js.rs +++ b/script/dom/bindings/js.rs @@ -248,6 +248,17 @@ impl<T: Reflectable> MutNullableJS<T> { pub unsafe fn get_inner(&self) -> Option<JS<T>> { self.ptr.get() } + + p...
3
40
64
8f554fb720d57dea75922eeb5a38e4520ed26b36
Eduard Burtescu
2014-12-05T01:04:06
servo: Merge #4220 - devtools: handle script task panics gracefully in ConsoleActor (from eddyb:devtools-panic); r=jdm r? @jdm Source-Repo: https://github.com/servo/servo Source-Revision: b8444f96f82791d7bbac456dfe23b71b2b09fea3
diff --git a/devtools/actor.rs b/devtools/actor.rs index 0643b567f..54b59bc8d 100644 --- a/devtools/actor.rs +++ b/devtools/actor.rs @@ -21,7 +21,7 @@ pub trait Actor : Any { registry: &ActorRegistry, msg_type: &String, msg: &json::JsonObject, - ...
6
44
31
14c306839556392960f136cd79eaada0c038a82b
Ms2ger
2014-12-04T15:46:02
servo: Merge #4219 - Cleanup some Document code (from Ms2ger:cleanup-document); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 92a8c7a80ccd5721884da96dbd28c6c40ba32b70
diff --git a/script/dom/document.rs b/script/dom/document.rs index c3c71cb51..726e7e695 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -520,18 +520,16 @@ impl<'a> DocumentMethods for JSRef<'a, Document> { // http://dom.spec.whatwg.org/#dom-document-doctype fn GetDoctype(self) -> Option<Te...
1
21
25
54395ae7c97a6c4a155adb48b653a97d5b1d9a90
Corey Richardson
2014-12-04T07:06:55
servo: Merge #4217 - Don't categorize HTMLInputElement as a TableCellFragment (from cmr:issue/4196); r=jdm Closes #4196. r? @jdm Source-Repo: https://github.com/servo/servo Source-Revision: 90b0369cdfbd62b6c6fa745beffdfd206c825543
diff --git a/layout/construct.rs b/layout/construct.rs index cc08c173b..95c2919b7 100644 --- a/layout/construct.rs +++ b/layout/construct.rs @@ -272,7 +272,6 @@ impl<'a> FlowConstructor<'a> { Some(ElementNodeTypeId(HTMLTableColElementTypeId)) => { TableColumnFragment(TableColumnFragmentInf...
1
0
1
69f0cbe8e7e56798e4e1b5a752bcfb934ca26250
Sagar Muchhal
2014-12-04T05:48:59
servo: Merge #4213 - Support for Separated Read Write (from jdm:sepreadwrite); r=jdm Rebased from #4211. Source-Repo: https://github.com/servo/servo Source-Revision: 28a132a8f412faa4b15c98939839083836c67052
diff --git a/devtools/actors/console.rs b/devtools/actors/console.rs index dd714d3e2..1e5ea5080 100644 --- a/devtools/actors/console.rs +++ b/devtools/actors/console.rs @@ -14,6 +14,7 @@ use devtools_traits::{ActorValue, DevtoolScriptControlMsg}; use servo_msg::constellation_msg::PipelineId; use collections::TreeMa...
3
18
3
307dae4b57b06ccff67f6b3d2774251d6e8d40c0
Shanil Puri
2014-12-04T03:28:00
servo: Merge #4214 - Implemeneted ModifyAttribute handler to update DOM elements (from jdm:modifyattr); r=jdm Rebased from #4197. Source-Repo: https://github.com/servo/servo Source-Revision: 0b5cc3f4aaf62478b097cba5b2676e7ca99b02a3
diff --git a/devtools/actors/inspector.rs b/devtools/actors/inspector.rs index ef5cc400a..01c6498ef 100644 --- a/devtools/actors/inspector.rs +++ b/devtools/actors/inspector.rs @@ -5,7 +5,7 @@ /// Liberally derived from the [Firefox JS implementation](http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/serv...
5
207
92
202259625b32730d67d8b4c0729c7a1e60668642
Glenn Watson
2014-12-04T02:51:57
servo: Merge #4210 - Update skia submodule to get android build fix (from glennw:skia-android-update); r=metajack Source-Repo: https://github.com/servo/servo Source-Revision: ecf98bc6802cd8a2626fb6436be38830ebb9677d
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index b27f2f08c..ce813110a 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -546,7 +546,7 @@ source = "git+https://github.com/rust-lang/semver#7dca047a9cd40e929a4545b37a1917 [[package]] name = "skia-sys" version = "0.0.20130412" -source = "git+https://github.co...
1
1
1
04898f1544fa770315ff4f11ee493cc6bca67b39
Cameron Zwarich
2014-12-04T01:27:57
servo: Merge #4202 - Remove libgreen support (from zwarich:remove-libgreen); r=larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: 92cc423709e96d8eb13b6a59f0ed95e64f3d1822
diff --git a/servo/Cargo.lock b/servo/Cargo.lock index b41e86647..b27f2f08c 100644 --- a/servo/Cargo.lock +++ b/servo/Cargo.lock @@ -6,11 +6,9 @@ dependencies = [ "gfx 0.0.1", "glfw_app 0.0.1", "glutin_app 0.0.1", - "green 0.0.1 (git+https://github.com/servo/green-rs?ref=servo)", "layout 0.0.1", "msg 0.0.1", ...
3
1
48
e1363e31c5b178dbcb205e2b3f0b9ba238e04df7
Clark Gaebel
2014-12-04T00:48:56
servo: Merge #4187 - Fixed #4127: Added a fast path to border-radius (from cgaebel:issue-4127); r=SimonSapin This will avoid drawing Arcs if there's no border-radius property set. Fixes #4127 Source-Repo: https://github.com/servo/servo Source-Revision: 736d542beb82218e4c4c6eeb8116bc95334d9115
diff --git a/gfx/render_context.rs b/gfx/render_context.rs index 6dbe84be1..1cbface3a 100644 --- a/gfx/render_context.rs +++ b/gfx/render_context.rs @@ -328,104 +328,148 @@ impl<'a> RenderContext<'a> { let rad_T = rad_TL + Float::frac_pi_4(); let rad_TR = rad_T + Float::frac_pi_4(); + fn d...
1
110
62
a14b2eb39a28d691deaf759d3b4e8a413d1b8de2
Simon Sapin
2014-12-03T02:27:51
servo: Merge #4140 - Move the root Cargo.toml to components/servo, and warn when Cargo is run directly (from SimonSapin:no-root-cargo-toml); r=SimonSapin This fixes #3957, and allow #4115 not to regress #4099. Source-Repo: https://github.com/servo/servo Source-Revision: 873ca6cadddc1a40bead1f5dd0128bb16cfaa11b
diff --git a/servo/Cargo.lock b/servo/Cargo.lock new file mode 100644 index 000000000..698779f79 --- /dev/null +++ b/servo/Cargo.lock @@ -0,0 +1,656 @@ +[root] +name = "servo" +version = "0.0.1" +dependencies = [ + "compositing 0.0.1", + "gfx 0.0.1", + "glfw_app 0.0.1", + "glutin_app 0.0.1", + "green 0.0.1 (git+https:/...
5
1,021
2
a9228c1b04d82cf3b8036432e9ba7d226e76ae84
Michael Booth
2014-12-02T12:24:49
servo: Merge #4156 - Updated reflect_dom_object to be passed by value fixes #4122 (from Michael03:master); r=Ms2ger This fixes issue #4122 Source-Repo: https://github.com/servo/servo Source-Revision: ed45aa9efd6cf238a83fcae6a772886df61771f7
diff --git a/script/dom/attr.rs b/script/dom/attr.rs index aa84f02ba..34d8e1213 100644 --- a/script/dom/attr.rs +++ b/script/dom/attr.rs @@ -110,7 +110,7 @@ impl Attr { name: Atom, namespace: Namespace, prefix: Option<DOMString>, owner: Option<JSRef<Element>>) -> Temporary<Attr> { ...
51
75
75
5ebe88810b573f825fcb44f16d1572811bc05bf7
Patrick Walton
2014-12-01T19:12:55
servo: Merge #4162 - layout: Stop having text alignment stomp on layerization flags (from pcwalton:text-align-flags); r=kmcallister Fixes the blank spaces showing up in Wikipedia. r? @kmcallister Source-Repo: https://github.com/servo/servo Source-Revision: 9afdce4405f0f5998c81eae83bbb527d0e95ec8e
diff --git a/layout/block.rs b/layout/block.rs index cdbd5540f..94e56fba3 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -1737,7 +1737,9 @@ impl Flow for BlockFlow { .stacking_relative_position_of_absolute_containing_block }, relative_containing_block_size: ...
2
14
11
975a1f67a6c187a088805226475694758165fdf9
aakashjain
2014-11-29T11:42:41
servo: Merge #4149 - Fixes #4123 (from aakashjain:MovingElementGetters); r=Manishearth Moved all getters from Element to ElementHelpers. Existing ElementHelpers getters `get_namespace` and `get_local_name` were replaced by `namespace` and `local_name`. Callers were updated accordingly. Also the getters are no longer i...
diff --git a/script/dom/element.rs b/script/dom/element.rs index 79ecfe937..d3b5b1946 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -182,36 +182,6 @@ impl Element { Node::reflect_node(box Element::new_inherited(ElementTypeId_, local_name, namespace, prefix, document), ...
5
49
42
0d1d9be14469c14a4cae3309672cc46bbff9b5e3
Josh Matthews
2014-11-29T07:00:48
servo: Merge #4147 - Fix the panic on runnig with --devtools due to a change in how type_id g (from jdm:devtoolspanic); r=Manishearth ...ets resolved since the last rustc upgrade. Source-Repo: https://github.com/servo/servo Source-Revision: 9c3b2ae8a58f5e3fa91a6dc164c136291765a86f
diff --git a/devtools/actor.rs b/devtools/actor.rs index 2d15134ec..0643b567f 100644 --- a/devtools/actor.rs +++ b/devtools/actor.rs @@ -16,7 +16,7 @@ use serialize::json; /// A common trait for all devtools actors that encompasses an immutable name /// and the ability to process messages that are directed to particu...
1
4
7
ec7aa5e0075d73764f1f187139e970f4be8987aa
Josh Matthews
2014-11-29T06:27:45
servo: Merge #4148 - Don't abort the sniffer task whenever an error occurs. Also, switch to b (from jdm:sniffix); r=glennw ...locking recv_opt vs. non-blocking try_recv. Source-Repo: https://github.com/servo/servo Source-Revision: ac4d2cbb78c594cc3a18d000ee4a88478df2db6d
diff --git a/net/sniffer_task.rs b/net/sniffer_task.rs index 05fade8ca..2fcc0394f 100644 --- a/net/sniffer_task.rs +++ b/net/sniffer_task.rs @@ -3,7 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ //! A task that sniffs data -use std::comm::{channel, Receiver, Sender, Disconnected}; +use std:...
1
4
8
834257ad3cf8de433bf3174f3c3fdcdd6c3aa4a1
Kshitij Parajuli
2014-11-28T17:51:44
servo: Merge #4000 - M1456: Shared SnifferTask (from t29:mime-sniffing); r=jdm Issue: #3144 This PR addresses the second step of the ticket. i.e. move from a 1:1 sniffer:request task model to a shared sniffer task. Source-Repo: https://github.com/servo/servo Source-Revision: 1ac79c64da4b14f83fed6ca123a81417b9c0fc87
diff --git a/net/about_loader.rs b/net/about_loader.rs index 27824d89a..eebdcfd42 100644 --- a/net/about_loader.rs +++ b/net/about_loader.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/. */ -use resource_task::{Load...
9
134
79
4ffc7a8e5616a11c33db8292fe818e1557b3ef15
Jesse Tuchsen
2014-11-28T17:27:43
servo: Merge #4132 - Fixes #4131 (from jtuchsen:issue-4131); r=jdm A slight refactor. Source-Repo: https://github.com/servo/servo Source-Revision: 2d904f70801bdd709ac845520dbe1035dd6fd5db
diff --git a/script/dom/domexception.rs b/script/dom/domexception.rs index c7eb73ea1..00b9ea5ac 100644 --- a/script/dom/domexception.rs +++ b/script/dom/domexception.rs @@ -107,28 +107,30 @@ impl<'a> DOMExceptionMethods for JSRef<'a, DOMException> { // http://dom.spec.whatwg.org/#error-names-0 fn Message(se...
1
25
23
280a997cc7fac1f00382e2126b158739fb81ffd6
Jesse Tuchsen
2014-11-27T20:42:41
servo: Merge #4128 - Fixes #3962 (from jtuchsen:issue-3962); r=jdm Bad HTTP responses now have a 0 status code instead of 200 OK. Source-Repo: https://github.com/servo/servo Source-Revision: b56bab4e407b38fa1e58d8be247ecd5f156c89bc
diff --git a/net/about_loader.rs b/net/about_loader.rs index 4eca1d781..27824d89a 100644 --- a/net/about_loader.rs +++ b/net/about_loader.rs @@ -19,7 +19,7 @@ pub fn factory(mut load_data: LoadData, start_chan: Sender<LoadResponse>) { content_type: Some(("text".to_string(), "html".to_string())), ...
4
14
8
d101ea6d6bd89dcd6cf66d572400ce8eb8e42e59
Glenn Watson
2014-11-27T01:39:38
servo: Merge #4114 - Fix layout on google search results (from glennw:table-layout-fix); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 431644bfc8208b613bf69a89826376ffb143cb58
diff --git a/layout/table.rs b/layout/table.rs index 72f11d66f..20bc19c91 100644 --- a/layout/table.rs +++ b/layout/table.rs @@ -265,12 +265,9 @@ impl Flow for TableFlow { // if there are any, or among all the columns if all are specified. if total_column_inline_size < content_inline_s...
1
2
5
41b2e9daef718d2d03f29f9a95e75cb2c1f5c7e5
Gilbert Röhrbein
2014-11-26T23:15:38
servo: Merge #4113 - fixes #4110, can input text without 'value' attribute present (from payload:issue-4110); r=jdm The attribute `value` and the underlying model `TextInput` are not connected to each other, so I just pulled the value out of `TextInput`. Source-Repo: https://github.com/servo/servo Source-Revision: 18...
diff --git a/script/dom/htmlinputelement.rs b/script/dom/htmlinputelement.rs index 9c7050ec8..f4867a97c 100644 --- a/script/dom/htmlinputelement.rs +++ b/script/dom/htmlinputelement.rs @@ -17,7 +17,7 @@ use dom::bindings::codegen::InheritTypes::KeyboardEventCast; use dom::bindings::js::{JS, JSRef, Temporary, OptionalR...
1
5
9
d77d73b36df6e481fc7d940e65a244c02dc6da04
Paul DiPietro
2014-11-25T15:15:49
servo: Merge #4097 - Fix deprecation in selector matching test (from pauldipietro:fix_deprecation); r=SimonSapin selector_matching.rs:1263:44: 1263:63 warning: use of deprecated item: Renamed to `get`, #[warn(deprecated)] on by default selector_matching.rs:1263 assert_eq!(1, selector_map.id_hash.find(&...
diff --git a/style/selector_matching.rs b/style/selector_matching.rs index 5dfe11dc0..b1c418193 100644 --- a/style/selector_matching.rs +++ b/style/selector_matching.rs @@ -1260,9 +1260,9 @@ mod tests { let rules_list = get_mock_rules([".intro.foo", "#top"]); let mut selector_map = SelectorMap::new();...
1
3
3
92a7fdeee724d5ff5ac841688dd09458715284c4
Ms2ger
2014-11-24T17:39:35
servo: Merge #4084 - Panic if DOMTokenList#contains is called for an unparsed attribute (from Ms2ger:tokenlist-robust); r=jdm Previously, if the attribute was not parsed into a token list, and the tokens() method returned None, DOMTokenList#contains would silently return false. This issue was encountered in <https://g...
diff --git a/script/dom/domtokenlist.rs b/script/dom/domtokenlist.rs index a7326fa8e..d05606965 100644 --- a/script/dom/domtokenlist.rs +++ b/script/dom/domtokenlist.rs @@ -90,10 +90,13 @@ impl<'a> DOMTokenListMethods for JSRef<'a, DOMTokenList> { // http://dom.spec.whatwg.org/#dom-domtokenlist-contains fn Co...
1
5
2
fc12d7cc8761614c70409dcb8ba08d249ec11c71
Kshitij Parajuli
2014-11-24T05:24:34
servo: Merge #4070 - Fix SnifferManager Panic (from kparaju:master-mime-sniffer-failing-4046); r=jdm Fixes #4046 I tested it by: ./mach test-wpt --include=XMLHttpRequest > old.log # make code changes ./mach test-wpt --include=XMLHttpRequest > new.log grep panic old.log # SnifferManager panics gre...
diff --git a/net/sniffer_task.rs b/net/sniffer_task.rs index 9df39e59a..11bfec508 100644 --- a/net/sniffer_task.rs +++ b/net/sniffer_task.rs @@ -31,10 +31,15 @@ impl SnifferManager { } impl SnifferManager { - fn start(&self, next_rx: Sender<LoadResponse>) { + fn start(self, next_rx: Sender<LoadResponse>) { ...
1
7
2
4f4c8fc268fe1e00db0d2b2a8b4b73563c664394
Manish Goregaokar
2014-11-24T05:00:40
servo: Merge #4068 - Use atom! in place of Atom::from_slice where necessary (from Manishearth:atomify); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 60dfb65ab2278f8700bd698b2a9cc01e510e5b10
diff --git a/script/dom/element.rs b/script/dom/element.rs index b3827f637..b6da0dc39 100644 --- a/script/dom/element.rs +++ b/script/dom/element.rs @@ -824,7 +824,7 @@ impl<'a> ElementMethods for JSRef<'a, Element> { let name = Atom::from_slice(name.as_slice()); let local_name = Atom::from_slice(lo...
4
6
8
03b278916dce1b4dea3637f7279ad4911b47c335
Trevor Riles
2014-11-24T04:36:37
servo: Merge #4064 - Make set_timeout_or_interval's is_interval an enumerated value instead of a boolean (from trevorriles:isintervalenum); r=jdm Created an `IsInterval` enum to improve readability and remove the need for `true // is_interval` I'm still fairly new to rust. I briefly looked for a way to implement bool...
diff --git a/script/dom/window.rs b/script/dom/window.rs index da6b788db..173ecb394 100644 --- a/script/dom/window.rs +++ b/script/dom/window.rs @@ -25,7 +25,7 @@ use page::Page; use script_task::{ExitWindowMsg, ScriptChan, TriggerLoadMsg, TriggerFragmentMsg}; use script_task::FromWindow; use script_traits::ScriptCo...
3
21
13
fb1636ca8d6c6aee762babaeabfaeac7e854e4b7
Patrick Walton
2014-11-22T18:12:35
servo: Merge #4066 - layout: Fix De Morgan's Law error in incremental reflow, allowing float/absolute layout to be idempotent again (from pcwalton:float-incremental-layout-fix); r=cgaebel,cgaebel,cgaebel Fixes the maze solver. r? @larsbergstrom (or anyone) Source-Repo: https://github.com/servo/servo Source-Revision:...
diff --git a/layout/block.rs b/layout/block.rs index 8d2438de7..cdbd5540f 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -1264,8 +1264,10 @@ impl BlockFlow { content_inline_size: Au, optional_column_inline_sizes: Option<&[ColumnInlineSize]>) { // Keep track of whether floats co...
1
5
3
3832475e1a42a5a34db7f40ed1f50b74e6c57c73
Mike Blumenkrantz
2014-11-22T03:00:36
servo: Merge #4049 - Embedding callbacks (from zmike:embedding-callbacks); r=jdm begin implementing CEF COM, add more types (stupid rust-bindgen taking forever to figure out...) @jdm @larsbergstrom Source-Repo: https://github.com/servo/servo Source-Revision: 2bba42ad19a792565b653cdd5551933ab2d41c2b
diff --git a/util/opts.rs b/util/opts.rs index 69592f5a3..cdd426ef3 100644 --- a/util/opts.rs +++ b/util/opts.rs @@ -153,7 +153,7 @@ static FORCE_CPU_PAINTING: bool = true; #[cfg(not(target_os="android"))] static FORCE_CPU_PAINTING: bool = false; -fn default_opts() -> Opts { +pub fn default_opts() -> Opts { Op...
1
1
1
81efe1690fdab180b23a61657a9cf042380415b6
Glenn Watson
2014-11-20T23:54:31
servo: Merge #4051 - Remove unused exit after load option (from glennw:remove-exit-load); r=mbrubeck This simplifies some upcoming changes to how event handling works. Source-Repo: https://github.com/servo/servo Source-Revision: 32d765fb049318f2ff22f39fdeb9fa258ec8a174
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index e089c0e03..486e94bba 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -14,7 +14,7 @@ use constellation::{SendableFrameTree, FrameTreeDiff}; use pipeline::CompositionPipeline; use scrolling::ScrollingTimerProxy; use wind...
3
1
26
3b18304c332e412d686c87266bf386caa421035c
Martin Robinson
2014-11-19T16:00:47
servo: Merge #3964 - Remove some code duplication in the Compositor (from mrobinson:code-duplication); r=larsbergstrom It is possible to share the code which creates root layers. Source-Repo: https://github.com/servo/servo Source-Revision: 9da7f10c3c46fee3d11d4ef9e8fb642fc9fb9870
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index e20ea06f0..e089c0e03 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -439,29 +439,7 @@ impl<Window: WindowMethods> IOCompositor<Window> { self.ready_states.insert(frame_tree.pipeline.id, Blank); self.ren...
1
34
47
e16b1f483957656cdd0ae5ae89342fdcbd25ed2a
Glenn Watson
2014-11-19T04:30:27
servo: Merge #4035 - Remove rust-alert as it's broken on mac, and unimplemented on other platforms (from glennw:remove-rust-alert); r=pcwalton Source-Repo: https://github.com/servo/servo Source-Revision: 554f696db81665f92e9976a15d986b0fd0f99edf
diff --git a/compositing/Cargo.toml b/compositing/Cargo.toml index 47f732d9c..d24be5491 100644 --- a/compositing/Cargo.toml +++ b/compositing/Cargo.toml @@ -31,9 +31,6 @@ path = "../devtools" [dependencies.devtools_traits] path = "../devtools_traits" -[dependencies.alert] -git = "https://github.com/servo/rust-alert...
2
0
4
d16ee4baca2d91faaa15a6e4750565ee0d513545
Patrick Walton
2014-11-18T23:39:25
servo: Merge #3904 - layout: Incrementalize reflow of block formatting contexts impacted by floats, and make float placement idempotent (from pcwalton:maze-solver-float-placement); r=cgaebel r? @glennw @cgaebel Source-Repo: https://github.com/servo/servo Source-Revision: a07401ca4e9ab26d66c7a02e710cea143caca401
diff --git a/layout/block.rs b/layout/block.rs index 336dac78f..8d2438de7 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -32,8 +32,9 @@ use context::LayoutContext; use css::node_style::StyledNode; use display_list_builder::{BlockFlowDisplayListBuilding, BlockLevel, FragmentDisplayListBuilding}; use floats::{C...
8
108
73
04eddc0752c41b9e880fd8691e5937f17fd4a372
Glenn Watson
2014-11-18T22:48:29
servo: Merge #4028 - Add glutin port (supported on Linux only currently) (from glennw:glutin); r=larsbergstrom Default build uses glfw, but glutin can be enabled via: ./mach cargo build --no-default-features --features=glutin Remaining work: * Mac * Android * hi-dpi * nested event loop This PR also enables true...
diff --git a/util/opts.rs b/util/opts.rs index ab744ada5..f80980f22 100644 --- a/util/opts.rs +++ b/util/opts.rs @@ -19,6 +19,12 @@ use std::os; use std::ptr; use std::rt; +#[deriving(Clone)] +pub enum RenderApi { + OpenGL, + Mesa, +} + /// Global flags for Servo, currently set on the command line. #[derivi...
1
21
1
888daf8a898df283e75685c4231da83eee096d08
Claes 'Letharion' Gyllensvärd
2014-11-18T18:42:32
servo: Merge #4015 - Bitfield to bitflags (from letharion:Bitfield-to-bitflags); r=mbrubeck Attempt to solve #3690 I've re-rolled the changes from https://github.com/servo/servo/pull/2610, and then doen the necessary updates to get this to compile with the current snapshot of rust. The documentation for values I've ...
diff --git a/layout/block.rs b/layout/block.rs index dbfde9978..336dac78f 100644 --- a/layout/block.rs +++ b/layout/block.rs @@ -34,6 +34,11 @@ use display_list_builder::{BlockFlowDisplayListBuilding, BlockLevel, FragmentDis use floats::{ClearBoth, ClearLeft, ClearRight, FloatKind, FloatLeft, Floats, PlacementInfo}; ...
10
147
176
e8aa4258a17a2a5c1784969317b4f91d86d0c649
Achal Shah
2014-11-18T15:45:35
servo: Merge #4030 - Stop including the element during Element.getElementsByClassName (from achals:master); r=Ms2ger https://github.com/servo/servo/issues/3995 This is my first PR, so please let me know if I'm doing something wrong! Source-Repo: https://github.com/servo/servo Source-Revision: 8cecb03d756d8df4de69ca1...
diff --git a/script/dom/htmlcollection.rs b/script/dom/htmlcollection.rs index 48aa8ab7f..b776e74ed 100644 --- a/script/dom/htmlcollection.rs +++ b/script/dom/htmlcollection.rs @@ -140,8 +140,8 @@ impl HTMLCollection { classes: Vec<Atom> } impl CollectionFilter for ClassNameFilter { - ...
1
2
2
e382bd7ec9c4f216676d08d9e8542679defa377b
Zachary Newman
2014-11-18T14:15:34
servo: Merge #4029 - Update behavior of Document.createElement (from znewman01:issue4009); r=Ms2ger Fixes #4009. Only lower-case the argument to Document#createElement if it's a HTML document. Source-Repo: https://github.com/servo/servo Source-Revision: 929671f945d30deaf37bbb9e23d15d09387bdf09
diff --git a/script/dom/document.rs b/script/dom/document.rs index 7e282c499..eaa4f2ca8 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -568,7 +568,11 @@ impl<'a> DocumentMethods for JSRef<'a, Document> { debug!("Not a valid element name"); return Err(InvalidCharacter); ...
1
5
1
29bc25b761e3910c891d2059581082407d774d26
Claes 'Letharion' Gyllensvärd
2014-11-18T13:51:34
servo: Merge #4021 - HTMLScriptElementHelpers::is_javascript should compare ASCII case-insensitively (from letharion:Case-insensitive-HTMLScriptElementHelpers-comparision); r=Ms2ger Fix for #3993 Source-Repo: https://github.com/servo/servo Source-Revision: 3fafd61f718e1f0d14c192b670a602316d02dfd0
diff --git a/script/dom/htmlscriptelement.rs b/script/dom/htmlscriptelement.rs index ac15ef844..129ca0ff0 100644 --- a/script/dom/htmlscriptelement.rs +++ b/script/dom/htmlscriptelement.rs @@ -2,6 +2,8 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozi...
1
4
2
88578fe385b40604ef597bacec84a9f9e975a2d3
Ms2ger
2014-11-17T17:36:29
servo: Merge #4019 - Various cleanup in constellation.rs (from Ms2ger:constellation); r=mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: 64cc9ec6881add395b93341a32e90546b2f7211f
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index f4918a4ce..1fd4b0684 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -92,11 +92,8 @@ struct FrameTree { impl FrameTree { fn new(pipeline: Rc<Pipeline>, parent_pipeline: Option<Rc<Pipeline>>) -> FrameTree...
1
92
88
4040691b39d06fa7a109d28a4affd8a593e15080
Ms2ger
2014-11-17T14:57:29
servo: Merge #4017 - Reformat sniffer_task.rs (from Ms2ger:sniffertask); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 9833cfbbffa79c74d9ee794e836c8007cd802c10
diff --git a/net/sniffer_task.rs b/net/sniffer_task.rs index a39e6fc2b..9df39e59a 100644 --- a/net/sniffer_task.rs +++ b/net/sniffer_task.rs @@ -10,37 +10,34 @@ use resource_task::{LoadResponse}; pub type SnifferTask = Sender<LoadResponse>; pub fn new_sniffer_task(next_rx: Sender<LoadResponse>) -> SnifferTask { - ...
1
18
21
9496ea1ee111816823729dbc16262e4a75f18396
Shanil Puri
2014-11-17T13:15:30
servo: Merge #3796 - Servo exit devtools: Send exit message to devtools on browser exit (from shanil-puri:ServoExitDevtools); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: d1eaa3adda5e59cc34822d6d1477b987796dfd62
diff --git a/compositing/constellation.rs b/compositing/constellation.rs index 8b6902135..f4918a4ce 100644 --- a/compositing/constellation.rs +++ b/compositing/constellation.rs @@ -5,6 +5,7 @@ use pipeline::{Pipeline, CompositionPipeline}; use compositor_task::{CompositorProxy, FrameTreeUpdateMsg, LoadComplete, Shu...
2
12
3
7716460aa67622df598ca943f7f55b96d7c6d2e2
Rohan Prinja
2014-11-17T04:36:30
servo: Merge #4014 - key[board]event args for Document#createEvent (from ajnirp:doc-createevent-keyevents); r=Manishearth fix #4007 Source-Repo: https://github.com/servo/servo Source-Revision: eeb11d68516c201d7c57508263517b69ef425273
diff --git a/script/dom/document.rs b/script/dom/document.rs index 2b8632fd7..7e282c499 100644 --- a/script/dom/document.rs +++ b/script/dom/document.rs @@ -46,6 +46,7 @@ use dom::htmlhtmlelement::HTMLHtmlElement; use dom::htmltitleelement::HTMLTitleElement; use dom::location::Location; use dom::mouseevent::MouseEve...
2
4
1
0cf3595219568b3eb6874abe114a7df62c88a11a
Glenn Watson
2014-11-17T03:21:28
servo: Merge #4012 - Update green-rs submodule to get android tls fix (from glennw:update-green-rs); r=mbrubeck Source-Repo: https://github.com/servo/servo Source-Revision: a51d08737a1f7337f6fad1d3f28b11345fed70e2
diff --git a/gfx/Cargo.toml b/gfx/Cargo.toml index ad62df8fd..0c0f84ec1 100644 --- a/gfx/Cargo.toml +++ b/gfx/Cargo.toml @@ -59,4 +59,6 @@ git = "https://github.com/servo/rust-core-graphics" [dependencies.core_text] git = "https://github.com/servo/rust-core-text" +[dependencies.script_traits] +path = "../script_tra...
1
2
0
901a5eae163596ba6e15713a56ee645401a31982
Glenn Watson
2014-11-17T01:12:28
servo: Merge #4013 - Redirect android resource folder (user-agent.css and friends) to /sdcard/servo (from glennw:android-resources); r=larsbergstrom This is a temporary solution, until they are packaged properly. Source-Repo: https://github.com/servo/servo Source-Revision: 1fd94adb3ddaa56c2e5fb41422960a8a433a6389
diff --git a/util/resource_files.rs b/util/resource_files.rs index 7f01c3e84..73e1148cc 100644 --- a/util/resource_files.rs +++ b/util/resource_files.rs @@ -3,11 +3,19 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use std::io::{File, IoResult}; +use std::path::Path; + +#[cfg(not(target_os = "and...
1
9
1
f36e2c8352412328f6cf58851bc5e63d489ce4de
Ms2ger
2014-11-16T14:24:28
servo: Merge #4003 - Correct the checks in step 5 of Node::pre_insert (from Ms2ger:pre-insert); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 1a40a6bc82558d1ca4997c9b93379df26e2a951f
diff --git a/script/dom/node.rs b/script/dom/node.rs index 4c7d24f8f..0242363db 100644 --- a/script/dom/node.rs +++ b/script/dom/node.rs @@ -1216,17 +1216,15 @@ impl Node { // Step 4-5. match node.type_id() { TextNodeTypeId => { - match node.parent_node().root() { - ...
1
6
8
701673c19fc1fbf852d1d6f6722aafa848a3f5e7
Andrew Hobden
2014-11-15T20:24:28
servo: Merge #3998 - Fix Table Caption infinite recursion (from Hoverbear:fix_table_caption); r=jdm Fixed #3997. Source-Repo: https://github.com/servo/servo Source-Revision: 561fab57d6ac23758f0150e043be28adda12c772
diff --git a/layout/table_caption.rs b/layout/table_caption.rs index 8a426da96..210bc8019 100644 --- a/layout/table_caption.rs +++ b/layout/table_caption.rs @@ -82,7 +82,7 @@ impl Flow for TableCaptionFlow { } fn iterate_through_fragment_bounds(&self, iterator: &mut FragmentBoundsIterator) { - self.i...
1
1
1
263ca40441ee3722b154613bb0191163c33f3ae5
Kshitij Parajuli
2014-11-15T17:36:31
servo: Merge #3766 - M1456, Implement MIME sniffing initial Step (from t29:mime-sniffing); r=jdm Issue: #3144 We created a sniffer task in components/net/, added a call in resource_task load function to create a new sniffer task (sending all the data), and sniffer_task currently sends all the data back to resource_ta...
diff --git a/net/lib.rs b/net/lib.rs index 1ada75e5b..99a1c0cf9 100644 --- a/net/lib.rs +++ b/net/lib.rs @@ -37,6 +37,7 @@ pub mod data_loader; pub mod image_cache_task; pub mod local_image_cache; pub mod resource_task; +mod sniffer_task; /// An implementation of the [Fetch spec](http://fetch.spec.whatwg.org/) p...
3
56
2
4fd3a2d2e0dfec0bcb1ce742bcb2f75f9d0debbc
Ms2ger
2014-11-14T22:48:35
servo: Merge #3979 - Use {Cell,RefCell}::as_unsafe_cell (from Ms2ger:as_unsafe_cell); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 7d3b76c60d2d5bd61cf6b48d09d769df77af293d
diff --git a/layout/wrapper.rs b/layout/wrapper.rs index 4f5e0e46e..4f7740419 100644 --- a/layout/wrapper.rs +++ b/layout/wrapper.rs @@ -37,7 +37,6 @@ use util::{LayoutDataAccess, LayoutDataFlags, LayoutDataWrapper, OpaqueNodeMetho use util::{PrivateLayoutData}; use gfx::display_list::OpaqueNode; -use script::dom::...
9
33
102
74002683048ce2c01c5bf356504dbd813acab01f
Manish Goregaokar
2014-11-14T00:45:29
servo: Merge #3973 - Don't overwrite redirected URL in script_task (fixes #3970) (from Manishearth:301-fix); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 10cd7728ff0daa7d2e5e13d002d008b5049f389b
diff --git a/compositing/compositor_task.rs b/compositing/compositor_task.rs index cfbb5acb2..8b5510f25 100644 --- a/compositing/compositor_task.rs +++ b/compositing/compositor_task.rs @@ -25,7 +25,6 @@ use servo_util::time::TimeProfilerChan; use std::comm::{channel, Sender, Receiver}; use std::fmt::{FormatError, For...
5
11
11
4454810deae32c34239b8e4f00a394aea9d1391a
Martin Robinson
2014-11-13T00:36:32
servo: Merge #3809 - Clip display list based on frame viewport (from mrobinson:display-list-optimization); r=pcwalton Instead of creating a display list for the entire page, only create one for an area that expands around the viewport. On my machine this makes incremental layout of http://timecube.com 50% faster. Sou...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index 50a47af45..c55e01932 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -38,10 +38,12 @@ use layers::scene::Scene; use png; use gleam::gl::types::{GLint, GLsizei}; use gleam::gl; +use script_traits::{ViewportMsg, ScriptCo...
9
128
32
78831c696095b13bbb58d48e1f12955c1aad6e43
thiagopnts
2014-11-12T21:42:35
servo: Merge #3955 - Move code related to json packet reading to JsonPacketSender trait (from thiagopnts:devtools-refactoring); r=jdm I was messing around devtools code and saw some TODOs, is anyone working on it? I took one of them: ```// TODO: this really belongs in the protocol module.``` I would be glad to help ...
diff --git a/devtools/actors/console.rs b/devtools/actors/console.rs index a4be99675..a52bea0d3 100644 --- a/devtools/actors/console.rs +++ b/devtools/actors/console.rs @@ -7,7 +7,7 @@ /// inspection, JS evaluation, autocompletion) in Servo. use actor::{Actor, ActorRegistry}; -use protocol::JsonPacketSender; +use p...
6
41
39
c1d6f58dcc913d316637db52ff34902fb7179803
Martin Robinson
2014-11-12T01:48:34
servo: Merge #3951 - Iframes (from mrobinson:iframes); r=jdm This is the first step to allowing incremental iframe creation and destruction. This should eliminate task failures when an iframe is added to the frame tree lazily via script. Source-Repo: https://github.com/servo/servo Source-Revision: ccdd2910a2df9921b22...
diff --git a/compositing/compositor.rs b/compositing/compositor.rs index eb0301e92..50a47af45 100644 --- a/compositing/compositor.rs +++ b/compositing/compositor.rs @@ -4,12 +4,13 @@ use compositor_layer::{CompositorData, CompositorLayer, DoesntWantScrollEvents}; use compositor_layer::{ScrollPositionChanged, WantsS...
6
185
78
527f9aec9496ef5808b51f405a77b439e81cffa1
Guillaume Bort
2014-11-11T21:30:39
servo: Merge #3934 - Close #84 (from guillaumebort:fix/84); r=jdm Actually `<img>` elements in `<noscript>` are not prefetched anymore. Probably because html5ever already parses the `<noscript>` content as raw text data if `scripting_enabled` is activated. See https://github.com/servo/html5ever/blob/servo/src/tree_b...
diff --git a/script/dom/htmlimageelement.rs b/script/dom/htmlimageelement.rs index 3cdd4a4ea..12175c9de 100644 --- a/script/dom/htmlimageelement.rs +++ b/script/dom/htmlimageelement.rs @@ -60,9 +60,6 @@ impl<'a> PrivateHTMLImageElementHelpers for JSRef<'a, HTMLImageElement> { // inform the image cach...
1
0
3
ba7ef68af091ce41d8a9810bed3cf2abedce47d3
Cameron Zwarich
2014-11-11T10:18:38
servo: Merge #3958 - Remove unnecessary import of libgreen (from zwarich:remove-libgreen); r=Ms2ger Source-Repo: https://github.com/servo/servo Source-Revision: f4471f06029ac03aa2ee26aa4398daaab9c6a371
diff --git a/layout/lib.rs b/layout/lib.rs index 94b2bbc5b..7598226e8 100644 --- a/layout/lib.rs +++ b/layout/lib.rs @@ -35,7 +35,6 @@ extern crate string_cache; extern crate collections; extern crate encoding; -extern crate green; extern crate libc; extern crate sync; extern crate url;
1
0
1
553b10901c0d2ccd931adff515a75e3dad2e4d29
Ms2ger
2014-11-10T12:33:35
servo: Merge #3949 - Fix the documentation comment for logical_geometry.rs (from Ms2ger:logical_geometry); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: f0184a2d011e12845258a242d2d2f6b8b504a28d
diff --git a/util/logical_geometry.rs b/util/logical_geometry.rs index 67cfb231a..2faa6400e 100644 --- a/util/logical_geometry.rs +++ b/util/logical_geometry.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/. */ -/// ...
1
1
1
ac7383479ebbc92b51db30b026877e8137aa2473
Shing Lyu
2014-11-10T03:24:31
servo: Merge #3915 - Extract the script task handlers code into separate methods (from shinglyu:bug3811); r=jdm This is a fix for bug #3811 , thank you. Source-Repo: https://github.com/servo/servo Source-Revision: fc62243f81ba4c5a3585b2a80c859fad16083557
diff --git a/script/script_task.rs b/script/script_task.rs index 8595ebf07..b234efef6 100644 --- a/script/script_task.rs +++ b/script/script_task.rs @@ -42,7 +42,7 @@ use script_traits::{CompositorEvent, ResizeEvent, ReflowEvent, ClickEvent, Mouse use script_traits::{MouseMoveEvent, MouseUpEvent, ConstellationControlM...
1
177
157
0d974fe528a80c5c8d6af9025e87d5885b29da6a
Ms2ger
2014-11-07T17:57:30
servo: Merge #3937 - Add missing documentation for bindings code (from Ms2ger:docs-bindings); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: fe11a75f794db47a66426456e1e904cf107cc41d
diff --git a/script/dom/bindings/callback.rs b/script/dom/bindings/callback.rs index 9b8dfb307..85421f3f6 100644 --- a/script/dom/bindings/callback.rs +++ b/script/dom/bindings/callback.rs @@ -2,6 +2,8 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozi...
4
47
5
9124448f639fafd2f1bb2a03a8458428187888b8
Mukilan Thiyagarajan
2014-11-07T02:00:29
servo: Merge #3917 - XHR - Trigger readystatechange when transitioning from HEADERS_RECEIVED to DONE (from mukilan:xhr-status-async); r=jdm Fixes #3877 Source-Repo: https://github.com/servo/servo Source-Revision: 338a9c3f054db0244185c3d85b47e427b6070e37
diff --git a/script/dom/xmlhttprequest.rs b/script/dom/xmlhttprequest.rs index 869820e0c..da3c069c1 100644 --- a/script/dom/xmlhttprequest.rs +++ b/script/dom/xmlhttprequest.rs @@ -890,8 +890,8 @@ impl<'a> PrivateXMLHttpRequestHelpers for JSRef<'a, XMLHttpRequest> { }, LoadingMsg(_, partial_re...
1
18
17
4e1161aceba8442f08bc5a29ff714fa2aa1ae015
Glenn Watson
2014-11-07T00:24:28
servo: Merge #3886 - Make media queries work with resize and page zoom (from glennw:mq); r=SimonSapin Source-Repo: https://github.com/servo/servo Source-Revision: f775f12fe996718af94951c3c2457d896a213d96
diff --git a/layout/layout_task.rs b/layout/layout_task.rs index 9edc1e3f1..1ed51197d 100644 --- a/layout/layout_task.rs +++ b/layout/layout_task.rs @@ -25,6 +25,7 @@ use encoding::all::UTF_8; use geom::point::Point2D; use geom::rect::Rect; use geom::size::Size2D; +use geom::scale_factor::ScaleFactor; use gfx::disp...
5
138
89
2cb7f87e734303fb2f356d85733704e68feb36a1
Ms2ger
2014-11-06T13:27:31
servo: Merge #3912 - Remove the glob import from the HTML parser (from Ms2ger:parser-glob); r=jdm Glob imports are frowned upon, and after the removal of build_element_for_tag, only a few types are actually used. Source-Repo: https://github.com/servo/servo Source-Revision: 44fa9f9b18a042e50367b1580528fc94587f0a15
diff --git a/script/parse/html.rs b/script/parse/html.rs index 71792097b..d2ab13fbd 100644 --- a/script/parse/html.rs +++ b/script/parse/html.rs @@ -6,13 +6,16 @@ use dom::attr::AttrHelpers; use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods; use dom::bindings::codegen::InheritTypes::{NodeCast, ElementCas...
1
4
1
0133df4bb4f64f4199472062d32bbb3703f89145
Manish Goregaokar
2014-11-06T03:03:34
servo: Merge #3903 - Improve docs and #[must_root] checking in plugins crate (from Manishearth:plugin-fixes); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 57cb8a10f0f6ed445ed7ba88a3fa19d56bd7015e
diff --git a/plugins/jstraceable.rs b/plugins/jstraceable.rs index 82eb3ba3a..a901f8900 100644 --- a/plugins/jstraceable.rs +++ b/plugins/jstraceable.rs @@ -20,6 +20,9 @@ pub fn expand_dom_struct(_: &mut ExtCtxt, _: Span, _: &MetaItem, item: P<Item>) P(item2) } +/// Provides the hook to expand `#[jstraceable]` ...
5
65
16
bea8f6e0056d9218a2850d898e885083d8ab7045
Ms2ger
2014-11-06T02:27:35
servo: Merge #3905 - Pay attention to the prefix in create_element when creating a non-HTML element (from Ms2ger:prefix-create); r=jdm Source-Repo: https://github.com/servo/servo Source-Revision: 45262ec9d212088f2bafa95981099d25eaac77bb
diff --git a/script/dom/create.rs b/script/dom/create.rs index 24f04fcbc..59b6bb756 100644 --- a/script/dom/create.rs +++ b/script/dom/create.rs @@ -83,7 +83,7 @@ pub fn create_element(name: QualName, prefix: Option<DOMString>, document: JSRef<Document>, creator: ElementCreator) ...
2
4
9