diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2020-02-13 12:03:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-13 12:03:42 -0500 |
commit | 2c70db5f5b3f418807bc13d503ffb9d1d7fe425b (patch) | |
tree | 2799eb43f3819c1175f0dbbb725a7feeb494fffc /components/script/dom/webidls/DOMMatrix.webidl | |
parent | e3a2301efe911dfa232803a293f62c16ffdd3925 (diff) | |
parent | 588c09b5807bd9534aa63cbb11cff5c0227efdab (diff) | |
download | servo-2c70db5f5b3f418807bc13d503ffb9d1d7fe425b.tar.gz servo-2c70db5f5b3f418807bc13d503ffb9d1d7fe425b.zip |
Auto merge of #25734 - pylbrecht:get.transform, r=jdm
Implement CanvasRenderingContext2D.getTransform()
<!-- Please describe your changes on the following line: -->
---
<!-- 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 part of #25331
<!-- Either: -->
- [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. -->
Diffstat (limited to 'components/script/dom/webidls/DOMMatrix.webidl')
-rw-r--r-- | components/script/dom/webidls/DOMMatrix.webidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/DOMMatrix.webidl b/components/script/dom/webidls/DOMMatrix.webidl index 1731116c051..eaef16c3906 100644 --- a/components/script/dom/webidls/DOMMatrix.webidl +++ b/components/script/dom/webidls/DOMMatrix.webidl @@ -10,7 +10,7 @@ * related or neighboring rights to this work. */ -[Exposed=(Window,Worker), +[Exposed=(Window,Worker,PaintWorklet), LegacyWindowAlias=WebKitCSSMatrix] interface DOMMatrix : DOMMatrixReadOnly { [Throws] constructor(optional (DOMString or sequence<unrestricted double>) init); |