aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/workerglobalscope.rs
Commit message (Collapse)AuthorAgeFilesLines
* Cargoify servoJack Moffitt2014-09-081-145/+0
|
* Implement WorkerGlobalScope.importScripts.Ms2ger2014-08-161-2/+36
|
* Implement WorkerGlobalScope.location.Ms2ger2014-08-151-0/+11
|
* Implement DedicatedWorkerGlobalScope.navigator.Ms2ger2014-08-151-0/+11
|
* Call the generated rather than the hand-written traits (fixes #2936).Ms2ger2014-07-271-5/+1
|
* Store the ScriptChan in the WorkerGlobalScope.Ms2ger2014-07-171-1/+9
| | | | This is necessary to make XMLHttpRequest and postMessage work.
* Store the worker's URL in the WorkerGlobalScope.Ms2ger2014-07-171-0/+8
| | | | This will be necessary to resolve relative URLs in the worker.
* Implement a resource_task getter on GlobalRef.Ms2ger2014-07-171-0/+4
| | | | This is needed to fetch resources on all threads.
* Store the ResourceTask on the WorkerGlobalScope.Ms2ger2014-07-171-1/+6
| | | | | This is necessary to load dependent resources, such as through new Worker(), importScripts, XHR, ...
* Inline DedicatedWorkerGlobalScope::init.Ms2ger2014-07-171-3/+0
| | | | This was an unnecessary abstraction.
* Implement WorkerGlobalScope.self.Ms2ger2014-07-161-0/+5
|
* Implement global.console in workers.Ms2ger2014-07-151-0/+17
|
* Store the JSContext in a field on the worker global scope.Ms2ger2014-07-151-1/+17
|
* Add a constructor for DedicatedWorkerGlobalScope.Ms2ger2014-07-151-1/+9
|
* Implement stub classes for WorkerGlobalScope and DedicatedWorkerGlobalScope.Ms2ger2014-07-151-0/+25
Part of #2811.