Index: third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.idl |
diff --git a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.idl b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.idl |
index 56d6faadfce9b197888f7e7e21734ce16c56b652..5d2a32ae3692b7ecef2bfab149226bbbb8e1438a 100644 |
--- a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.idl |
+++ b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.idl |
@@ -13,8 +13,8 @@ |
RuntimeEnabled=GeometryInterfaces, |
] interface DOMMatrixReadOnly { |
[RaisesException, NewObject] static DOMMatrixReadOnly fromMatrix(optional DOMMatrixInit other); |
- [RaisesException, NewObject] static DOMMatrixReadOnly fromFloat32Array(Float32Array array32); |
- [RaisesException, NewObject] static DOMMatrixReadOnly fromFloat64Array(Float64Array array64); |
+ [RaisesException, NewObject, Measure] static DOMMatrixReadOnly fromFloat32Array(Float32Array array32); |
+ [RaisesException, NewObject, Measure] static DOMMatrixReadOnly fromFloat64Array(Float64Array array64); |
// These attributes are simple aliases for certain elements of the 4x4 matrix |
readonly attribute unrestricted double a; |
@@ -74,9 +74,9 @@ |
DOMMatrix flipY(); |
DOMMatrix inverse(); |
- DOMPoint transformPoint(optional DOMPointInit point); |
- Float32Array toFloat32Array(); |
- Float64Array toFloat64Array(); |
+ [Measure] DOMPoint transformPoint(optional DOMPointInit point); |
+ [Measure] Float32Array toFloat32Array(); |
+ [Measure] Float64Array toFloat64Array(); |
stringifier; |
serializer = { attribute }; |
}; |