diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2017-05-17 16:20:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-17 16:20:42 -0500 |
commit | ac99a48aeaa184d3acdb39d249636a140c4b7393 (patch) | |
tree | f339b7786ad7bb5d89012c4cb9217581d9993d64 /python/tidy/servo_tidy | |
parent | bafaae75f47c169078132e761ed2dcfda9541a27 (diff) | |
parent | af8436c9be4c69c07265ab1095f89982b48cdd00 (diff) | |
download | servo-ac99a48aeaa184d3acdb39d249636a140c4b7393.tar.gz servo-ac99a48aeaa184d3acdb39d249636a140c4b7393.zip |
Auto merge of #16814 - asajeffrey:script-worklets, r=jdm
Implement Houdini worklets
<!-- Please describe your changes on the following line: -->
This PR implements the current draft Houdini Worklets specification (https://drafts.css-houdini.org/worklets/).
The implementation is intended to provide a responsive environment for worklet execution, and in particular to ensure that the primary worklet executor does not garbage collect, and does not block loading module code. The implementation does this by providing a thread pool, and performing GC and module loading in a backup thread, not in the primary thread.
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes fix #16206
- [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. -->
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/16814)
<!-- Reviewable:end -->
Diffstat (limited to 'python/tidy/servo_tidy')
-rw-r--r-- | python/tidy/servo_tidy/tidy.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/tidy/servo_tidy/tidy.py b/python/tidy/servo_tidy/tidy.py index ccca233db9c..b8229e67d96 100644 --- a/python/tidy/servo_tidy/tidy.py +++ b/python/tidy/servo_tidy/tidy.py @@ -67,6 +67,7 @@ WEBIDL_STANDARDS = [ "//dom.spec.whatwg.org", "//domparsing.spec.whatwg.org", "//drafts.csswg.org", + "//drafts.css-houdini.org", "//drafts.fxtf.org", "//encoding.spec.whatwg.org", "//fetch.spec.whatwg.org", |