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

Unified Diff: core/svg/SVGTransformList.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 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
« no previous file with comments | « core/svg/SVGTransform.idl ('k') | core/svg/SVGURIReference.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/svg/SVGTransformList.idl
diff --git a/core/svg/SVGTransformList.idl b/core/svg/SVGTransformList.idl
index 95663fc90d172c7ce3859f4467d1a06749c382cf..6f6451e857444efb6886f5cb05f3c2b6538a7950 100644
--- a/core/svg/SVGTransformList.idl
+++ b/core/svg/SVGTransformList.idl
@@ -24,24 +24,28 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+// http://www.w3.org/TR/SVG2/coords.html#InterfaceSVGTransformList
+
[
ImplementedAs=SVGTransformListTearOff,
SetWrapperReferenceTo(SVGElement contextElement),
TypeChecking=Interface,
+ RuntimeEnabled=SVG1DOM,
+ MeasureAs=SVG1DOM,
+ WillBeGarbageCollected,
] interface SVGTransformList {
readonly attribute unsigned long length;
[ImplementedAs=length] readonly attribute unsigned long numberOfItems;
[RaisesException] void clear();
- [RaisesException] SVGTransform initialize(SVGTransform item);
+ [RaisesException] SVGTransform initialize(SVGTransform newItem);
[RaisesException] getter SVGTransform getItem(unsigned long index);
- [RaisesException] setter SVGTransform (unsigned long index, SVGTransform value);
- [RaisesException] SVGTransform insertItemBefore(SVGTransform item, unsigned long index);
- [RaisesException] SVGTransform replaceItem(SVGTransform item, unsigned long index);
+ [RaisesException] SVGTransform insertItemBefore(SVGTransform newItem, unsigned long index);
+ [RaisesException] SVGTransform replaceItem(SVGTransform newItem, unsigned long index);
[RaisesException] SVGTransform removeItem(unsigned long index);
- [RaisesException] SVGTransform appendItem(SVGTransform item);
-
+ [RaisesException] SVGTransform appendItem(SVGTransform newItem);
+ // TODO(philipj): SVGMatrix should be DOMMatrix.
SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix);
-
- [RaisesException] SVGTransform consolidate();
+ [RaisesException, MeasureAs=SVGTransformListConsolidate] SVGTransform? consolidate();
+ [RaisesException] setter void (unsigned long index, SVGTransform newItem);
};
« no previous file with comments | « core/svg/SVGTransform.idl ('k') | core/svg/SVGURIReference.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698