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

Unified Diff: core/svg/SVGNumberList.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/SVGNumber.idl ('k') | core/svg/SVGPathElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/svg/SVGNumberList.idl
diff --git a/core/svg/SVGNumberList.idl b/core/svg/SVGNumberList.idl
index 8fdbcf916c93a4b7c3b0cb0ac07a916ae7c56fa4..6c9bea9d0f761d7fdf0f683aafb0649d6f55e500 100644
--- a/core/svg/SVGNumberList.idl
+++ b/core/svg/SVGNumberList.idl
@@ -24,21 +24,25 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+// http://www.w3.org/TR/SVG2/types.html#InterfaceSVGNumberList
+
[
ImplementedAs=SVGNumberListTearOff,
SetWrapperReferenceTo(SVGElement contextElement),
TypeChecking=Interface,
+ RuntimeEnabled=SVG1DOM,
+ MeasureAs=SVG1DOM,
+ WillBeGarbageCollected,
] interface SVGNumberList {
readonly attribute unsigned long length;
[ImplementedAs=length] readonly attribute unsigned long numberOfItems;
[RaisesException] void clear();
- [RaisesException] SVGNumber initialize(SVGNumber item);
+ [RaisesException] SVGNumber initialize(SVGNumber newItem);
[RaisesException] getter SVGNumber getItem(unsigned long index);
- [RaisesException] setter SVGNumber (unsigned long index, SVGNumber value);
- [RaisesException] SVGNumber insertItemBefore(SVGNumber item, unsigned long index);
- [RaisesException] SVGNumber replaceItem(SVGNumber item, unsigned long index);
+ [RaisesException] SVGNumber insertItemBefore(SVGNumber newItem, unsigned long index);
+ [RaisesException] SVGNumber replaceItem(SVGNumber newItem, unsigned long index);
[RaisesException] SVGNumber removeItem(unsigned long index);
- [RaisesException] SVGNumber appendItem(SVGNumber item);
+ [RaisesException] SVGNumber appendItem(SVGNumber newItem);
+ [RaisesException] setter void (unsigned long index, SVGNumber newItem);
};
-
« no previous file with comments | « core/svg/SVGNumber.idl ('k') | core/svg/SVGPathElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698