Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Introduce import.meta hook for module script | CYBAI | 2020-05-17 | 1 | -1/+35 |
| | |||||
* | Add InRealm argument to Callback trait | Tipowol | 2020-04-05 | 1 | -1/+1 |
| | |||||
* | Use mozjs exposed function to generate SourceText | CYBAI | 2020-03-31 | 1 | -14/+3 |
| | |||||
* | Update SpiderMonkey | Anthony Ramine | 2020-03-06 | 1 | -26/+31 |
| | |||||
* | Use `essence` algorithm from mime crate | CYBAI | 2020-03-02 | 1 | -7/+14 |
| | |||||
* | Always pass InRealm to GlobalScope::from_context to avoid getting null global | CYBAI | 2020-02-16 | 1 | -2/+5 |
| | |||||
* | rename compartment to realm | Kunal Mohan | 2020-01-24 | 1 | -8/+8 |
| | |||||
* | Auto merge of #25552 - CYBAI:fix-25436, r=jdm | bors-servo | 2020-01-20 | 1 | -3/+4 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Return the highest priority error from the descendant instead of return the very first one The test failed because we didn't return the highest priority error (which is network error in this case). As Manish mentioned in https://github.com/servo/servo/issues/25436#issuecomment-571065323, that's because we're using the Promise.all trick to signal loads. If we can avoid relying on Promise.all, maybe we don't need to do a complex logic like this; instead, ideally, we should always finish the module load immediately when we hit network failure so that we don't even need to do the `max()` comparison. --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes fix #25436 - [x] There are tests for these changes <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> | ||||
| * | Return the highest priority error from the descendant instead of return the ↵ | CYBAI | 2020-01-20 | 1 | -3/+4 |
| | | | | | | | | very first one | ||||
* | | Modify `script` to prevent further violations of snake_case | Kunal Mohan | 2020-01-18 | 1 | -2/+2 |
|/ | |||||
* | Fix module script MIME check to not include params | Manish Goregaokar | 2020-01-06 | 1 | -2/+11 |
| | | | | Also makes it error when there is no MIME type available. | ||||
* | Upgrade module fail warning log to error | Manish Goregaokar | 2020-01-06 | 1 | -1/+1 |
| | |||||
* | Remove redundant checking of promise resolve and clone of URLs | CYBAI | 2020-01-06 | 1 | -20/+4 |
| | |||||
* | Use IndexSet for storing descendants | Manish Goregaokar | 2020-01-06 | 1 | -12/+22 |
| | | | | Fixes intermittent failures in `/html/semantics/scripting-1/the-script-element/module/choice-of-error-1.html` | ||||
* | Support module script credentials mode | CYBAI | 2020-01-03 | 1 | -4/+22 |
| | |||||
* | Support `integrity` for module script | CYBAI | 2020-01-03 | 1 | -0/+5 |
| | |||||
* | Scaffold module script | CYBAI | 2020-01-03 | 1 | -0/+1404 |