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

Unified Diff: Source/core/svg/SVGNumberList.idl

Issue 1153763008: Sync SVG interfaces with the specs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address feedback Created 5 years, 7 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 | « Source/core/svg/SVGNumber.idl ('k') | Source/core/svg/SVGPathElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGNumberList.idl
diff --git a/Source/core/svg/SVGNumberList.idl b/Source/core/svg/SVGNumberList.idl
index 7a4447b21ae49c79c2bd358edc7de177ecefcda0..6c9bea9d0f761d7fdf0f683aafb0649d6f55e500 100644
--- a/Source/core/svg/SVGNumberList.idl
+++ b/Source/core/svg/SVGNumberList.idl
@@ -24,6 +24,8 @@
* 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),
@@ -36,11 +38,11 @@
[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 | « Source/core/svg/SVGNumber.idl ('k') | Source/core/svg/SVGPathElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698