diff options
author | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2019-07-02 18:28:17 +0900 |
---|---|---|
committer | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2019-07-02 18:28:17 +0900 |
commit | 9218c535d1a08d459b3484416df485c1de50f8e5 (patch) | |
tree | 782ca1e19c5110927f1db355d2907100311259d0 /components/script | |
parent | ebdb1067ca006aacbf4c2687186815e9f0f550c2 (diff) | |
download | servo-9218c535d1a08d459b3484416df485c1de50f8e5.tar.gz servo-9218c535d1a08d459b3484416df485c1de50f8e5.zip |
add link to the spec
Diffstat (limited to 'components/script')
-rw-r--r-- | components/script/dom/dommatrixreadonly.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/dommatrixreadonly.rs b/components/script/dom/dommatrixreadonly.rs index b5b45b70a3c..73bb5423bea 100644 --- a/components/script/dom/dommatrixreadonly.rs +++ b/components/script/dom/dommatrixreadonly.rs @@ -571,6 +571,7 @@ impl DOMMatrixReadOnlyMethods for DOMMatrixReadOnly { .ScaleSelf(scaleX, scaleY, scaleZ, originX, originY, originZ) } + // https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-scalenonuniform fn ScaleNonUniform(&self, scaleX: f64, scaleY: f64) -> DomRoot<DOMMatrix> { DOMMatrix::from_readonly(&self.global(), self).ScaleSelf( scaleX, |