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

Unified Diff: core/dom/CharacterData.idl

Issue 19605006: Roll IDL to multivm@1316 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 5 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/dom/AnimationEvent.idl ('k') | core/dom/ChildNode.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/dom/CharacterData.idl
diff --git a/core/dom/CharacterData.idl b/core/dom/CharacterData.idl
index 6491b8e82e1a5333c751656b1791296edd10929a..2e3262ceb8d158e9a5aed959b7c8145140a3df50 100644
--- a/core/dom/CharacterData.idl
+++ b/core/dom/CharacterData.idl
@@ -19,13 +19,13 @@
interface CharacterData : Node {
- [TreatNullAs=NullString, SetterRaisesException] attribute DOMString data;
+ [TreatNullAs=NullString] attribute DOMString data;
readonly attribute unsigned long length;
[TreatReturnedNullStringAs=Null, RaisesException] DOMString substringData([IsIndex,Default=Undefined] optional unsigned long offset, [IsIndex,Default=Undefined] optional unsigned long length);
- [RaisesException] void appendData([Default=Undefined] optional DOMString data);
+ void appendData([Default=Undefined] optional DOMString data);
[RaisesException] void insertData([IsIndex,Default=Undefined] optional unsigned long offset,
[Default=Undefined] optional DOMString data);
@@ -36,10 +36,7 @@ interface CharacterData : Node {
[RaisesException] void replaceData([IsIndex,Default=Undefined] optional unsigned long offset,
[IsIndex,Default=Undefined] optional unsigned long length,
[Default=Undefined] optional DOMString data);
-
- // ChildNode interface API
- readonly attribute Element previousElementSibling;
- readonly attribute Element nextElementSibling;
- [RaisesException] void remove();
};
+CharacterData implements ChildNode;
+
« no previous file with comments | « core/dom/AnimationEvent.idl ('k') | core/dom/ChildNode.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698