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

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

Powered by Google App Engine
This is Rietveld 408576698