Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(421)

Unified Diff: third_party/WebKit/Source/core/css/WebKitCSSMatrix.idl

Issue 2709763004: Make WebKitCSSMatrix an alias of DOMMatrix (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/css/WebKitCSSMatrix.idl
diff --git a/third_party/WebKit/Source/core/css/WebKitCSSMatrix.idl b/third_party/WebKit/Source/core/css/WebKitCSSMatrix.idl
index 361076611fcead652685a768a8dd32b93cd04d02..509c336beea4e86685eebcfa745957f077378eea 100644
--- a/third_party/WebKit/Source/core/css/WebKitCSSMatrix.idl
+++ b/third_party/WebKit/Source/core/css/WebKitCSSMatrix.idl
@@ -59,7 +59,7 @@
[RaisesException] void setMatrixValue([Default=Undefined] optional DOMString string);
// Multiply this matrix by secondMatrix, on the right (result = this * secondMatrix)
- [LegacyInterfaceTypeChecking] WebKitCSSMatrix multiply([Default=Undefined] optional WebKitCSSMatrix secondMatrix);
+ [LegacyInterfaceTypeChecking, RaisesException] WebKitCSSMatrix multiply([Default=Undefined] optional WebKitCSSMatrix secondMatrix);
// Return the inverse of this matrix. Throw an exception if the matrix is not invertible
[RaisesException] WebKitCSSMatrix inverse();

Powered by Google App Engine
This is Rietveld 408576698