aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/script_task.rs
Commit message (Expand)AuthorAgeFilesLines
...
* | Implement iframe.contentWindow.Ms2ger2014-05-141-1/+1
* | Instate a pre-wrap hook that outerizes its argument, to satisfy an undocument...Ms2ger2014-05-141-3/+4
* | Store the subpage id in the Page.Ms2ger2014-05-141-3/+8
* | Add a subpage_id field to NewLayoutInfo.Ms2ger2014-05-141-0/+2
* | Rename the pipeline ID fields in NewLayoutInfo.Ms2ger2014-05-141-6/+6
|/
* auto merge of #2425 : saneyuki/servo/window_helper, r=jdmbors-servo2014-05-141-1/+1
|\
| * Move Window helper methods to a WindowHelpers traitTetsuharu OHZEKI2014-05-141-1/+1
* | auto merge of #2420 : Ms2ger/servo/merge-Page-PageTree, r=pcwaltonbors-servo2014-05-131-108/+103
|\ \
| * | Merge Page and PageTree.Ms2ger2014-05-131-108/+103
| |/
* | fixup! Use a match rather than a for loop for last_loaded_url in ScriptTask::...Ms2ger2014-05-131-1/+2
* | Use a match rather than a for loop for last_loaded_url in ScriptTask::load.Ms2ger2014-05-131-5/+4
|/
* Move the loading of documents in iframes into HTMLIFrameElement.Ms2ger2014-05-121-19/+19
* auto merge of #2393 : Ms2ger/servo/initialize_js_info, r=jdmbors-servo2014-05-101-13/+12
|\
| * Remove ScriptTask::initialize_js_info.Ms2ger2014-05-101-13/+12
* | auto merge of #2384 : saneyuki/servo/2383, r=Ms2gerbors-servo2014-05-101-4/+3
|\ \ | |/ |/|
| * Add UIEvent::new_uninitialized().Tetsuharu OHZEKI2014-05-101-4/+3
* | Convert as many of Page's RefCell fields to Cell as possible (fixes #1990).Guro Bokum2014-05-091-28/+24
* | auto merge of #2357 : Manishearth/servo/xhr-syncget, r=ms2gerbors-servo2014-05-091-4/+11
|\ \
| * | Basic synchronous GET with XHRManish Goregaokar2014-05-091-4/+11
| |/
* / Move debug functions to Window IDL.Ms2ger2014-05-091-9/+1
|/
* auto merge of #2339 : glennw/servo/js-event-assert, r=jdmbors-servo2014-05-071-20/+17
|\
| * Modify node traversal loop to avoid JS roots assertion. Fixes #2321.Glenn Watson2014-05-071-20/+17
* | auto merge of #2340 : glennw/servo/js-click-assert, r=jdmbors-servo2014-05-071-17/+11
|\ \
| * | Fix JS roots assertion when clicking on an elementGlenn Watson2014-05-071-17/+11
| |/
* | Force a GC when shutting down each layout task. Fixes #2342.Josh Matthews2014-05-061-4/+10
* | Don't clobber the default wrapping callback.Ms2ger2014-05-061-1/+9
* | Enter a compartment when calling timeout handlers.Ms2ger2014-05-051-6/+9
* | Use a single JSContext per JSRuntime.Ms2ger2014-05-051-72/+93
|/
* Replace most ~"string"s with "string".to_owned().Ms2ger2014-05-041-2/+2
* Address review comments.Josh Matthews2014-05-031-11/+9
* Address review comments.Josh Matthews2014-05-031-3/+3
* Remove all root collections.Josh Matthews2014-05-031-36/+25
* Store per-ScriptTask RootCollection in TLS and use that in favour of per-fram...Josh Matthews2014-05-031-0/+21
* s/Unrooted/Temporary/gJosh Matthews2014-05-031-4/+4
* Allow controlling GC zeal via JS_GC_ZEAL environment variable.Josh Matthews2014-05-031-1/+5
* Move all methods on T to JSRef<T> or JS<T> as appropriate.Josh Matthews2014-05-031-2/+2
* Remove abstract_self.Josh Matthews2014-05-031-10/+5
* Move WebIDL methods to traits implemented by JSRef types.Josh Matthews2014-05-031-10/+11
* Remove JS::get/get_mut to enforce sound rooting practices.Josh Matthews2014-05-031-5/+7
* Implement safe rooting strategy via Unrooted, Root, JSRef, and JS.Josh Matthews2014-05-031-76/+83
* Turn on GC all the time. Fix rooting errors during parsing and storing timers...Josh Matthews2014-05-031-81/+94
* Stop passing owned strings to fail!().Ms2ger2014-05-031-1/+1
* Use Vec for the remaining ~[T]s in script.Ms2ger2014-04-281-2/+2
* Make get_nodes_under_mouse return Vec.Ms2ger2014-04-281-1/+1
* Make PageTree::inner and PageTreeIterator::stack a Vec.Ms2ger2014-04-281-4/+4
* Make ScriptTask::mouse_over_targets use Vec.Ms2ger2014-04-281-2/+2
* Remove unused support for passing extra arguments for timers.Ms2ger2014-04-281-5/+1
* This batch of changes upgrades Servo to work with the Rust upgrade as ofLars Bergstrom2014-04-271-35/+36
* auto merge of #2210 : saneyuki/servo/query, r=jdmbors-servo2014-04-241-32/+56
|\
| * Add Page::get_nodes_under_mouse().Tetsuharu OHZEKI2014-04-241-12/+26