Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 | 5 |
| 6 // Represents a matrix value in a CSSTransformValue used for properties like | 6 // Represents a matrix value in a CSSTransformValue used for properties like |
| 7 // "transform". | 7 // "transform". |
| 8 // Spec: https://drafts.css-houdini.org/css-typed-om/#cssmatrixcomponent | 8 // Spec: https://drafts.css-houdini.org/css-typed-om/#cssmatrixcomponent |
| 9 [ | 9 [ |
| 10 Constructor(DOMMatrixReadOnly matrix), | 10 Constructor(DOMMatrixReadOnly matrix), |
| 11 Exposed=(Window,PaintWorklet), | 11 Exposed=(Window,PaintWorklet), |
| 12 RuntimeEnabled=CSSTypedOM, | 12 RuntimeEnabled=CSSTypedOM, |
| 13 RuntimeEnabled=GeometryInterfaces, | |
|
foolip
2017/06/19 11:46:59
Why was this removed? I'm fine with removing the R
zino
2017/06/19 16:32:52
The CSSMatrixComponent had two runtime flags CSSTy
| |
| 14 ] interface CSSMatrixComponent : CSSTransformComponent { | 13 ] interface CSSMatrixComponent : CSSTransformComponent { |
| 15 attribute DOMMatrix matrix; | 14 attribute DOMMatrix matrix; |
| 16 }; | 15 }; |
| OLD | NEW |