Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Cargoify servo | Jack Moffitt | 2014-09-08 | 1 | -145/+0 |
| | |||||
* | Implement WorkerGlobalScope.importScripts. | Ms2ger | 2014-08-16 | 1 | -2/+36 |
| | |||||
* | Implement WorkerGlobalScope.location. | Ms2ger | 2014-08-15 | 1 | -0/+11 |
| | |||||
* | Implement DedicatedWorkerGlobalScope.navigator. | Ms2ger | 2014-08-15 | 1 | -0/+11 |
| | |||||
* | Call the generated rather than the hand-written traits (fixes #2936). | Ms2ger | 2014-07-27 | 1 | -5/+1 |
| | |||||
* | Store the ScriptChan in the WorkerGlobalScope. | Ms2ger | 2014-07-17 | 1 | -1/+9 |
| | | | | This is necessary to make XMLHttpRequest and postMessage work. | ||||
* | Store the worker's URL in the WorkerGlobalScope. | Ms2ger | 2014-07-17 | 1 | -0/+8 |
| | | | | This will be necessary to resolve relative URLs in the worker. | ||||
* | Implement a resource_task getter on GlobalRef. | Ms2ger | 2014-07-17 | 1 | -0/+4 |
| | | | | This is needed to fetch resources on all threads. | ||||
* | Store the ResourceTask on the WorkerGlobalScope. | Ms2ger | 2014-07-17 | 1 | -1/+6 |
| | | | | | This is necessary to load dependent resources, such as through new Worker(), importScripts, XHR, ... | ||||
* | Inline DedicatedWorkerGlobalScope::init. | Ms2ger | 2014-07-17 | 1 | -3/+0 |
| | | | | This was an unnecessary abstraction. | ||||
* | Implement WorkerGlobalScope.self. | Ms2ger | 2014-07-16 | 1 | -0/+5 |
| | |||||
* | Implement global.console in workers. | Ms2ger | 2014-07-15 | 1 | -0/+17 |
| | |||||
* | Store the JSContext in a field on the worker global scope. | Ms2ger | 2014-07-15 | 1 | -1/+17 |
| | |||||
* | Add a constructor for DedicatedWorkerGlobalScope. | Ms2ger | 2014-07-15 | 1 | -1/+9 |
| | |||||
* | Implement stub classes for WorkerGlobalScope and DedicatedWorkerGlobalScope. | Ms2ger | 2014-07-15 | 1 | -0/+25 |
Part of #2811. |