aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/document_loader.rs
Commit message (Collapse)AuthorAgeFilesLines
* sorted the extern crate, mod & use declarationsRavi Shankar2015-09-241-1/+1
|
* Fix reported test-tidy errorsBrandon Fairchild2015-09-011-1/+1
| | | | | This fixes lines that were reported to have missing space after a comma.
* sort all usesJohann Tuffe2015-08-201-2/+2
|
* Splitting ScriptMsg into various enums; r=jdmRavi Shankar2015-08-151-3/+4
|
* Start reporting memory usage for Window and all nodes in all DOM trees for ↵Josh Matthews2015-08-031-3/+5
| | | | frame treese in script tasks.
* script: Fix test failures.Patrick Walton2015-07-311-3/+8
|
* net: Use a thread for each `AsyncResponseTarget` to avoid having to sendPatrick Walton2015-07-311-1/+1
| | | | trait objects across process boundaries.
* Refactor #[jstraceable] to #[derive(JSTraceable)]David Winslow2015-07-011-4/+3
| | | | fixes #6524
* Update test expectations. Mark script loads as complete when the response is ↵Josh Matthews2015-05-211-0/+1
| | | | complete.
* Make external script sources load asynchronously, yet still block further ↵Josh Matthews2015-05-201-7/+6
| | | | parsing. Hook up document loading to async networking events.
* Delay stylesheet load in test to increase confidence.Josh Matthews2015-05-111-8/+6
|
* Make stylesheets block page load.Josh Matthews2015-05-111-8/+14
|
* Implement a DocumentLoader type that tracks pending loads and notifies the ↵Josh Matthews2015-05-111-0/+106
script task when the queue is empty. Dispatch the document load event based on the DocumentLoader's notification.