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

Unified Diff: Source/core/dom/CharacterData.idl

Issue 21581003: Drop [IsIndex] attribute from CharacterData API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | « LayoutTests/fast/dom/characterdata-api-arguments-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/CharacterData.idl
diff --git a/Source/core/dom/CharacterData.idl b/Source/core/dom/CharacterData.idl
index eb9409f407a5e47f18a0426adf13334e3775ef0f..0999ab775d6752f96fa0bf6f449d5925a22d2f20 100644
--- a/Source/core/dom/CharacterData.idl
+++ b/Source/core/dom/CharacterData.idl
@@ -23,12 +23,12 @@ interface CharacterData : Node {
readonly attribute unsigned long length;
- [TreatReturnedNullStringAs=Null, RaisesException] DOMString substringData([IsIndex,Default=Undefined] optional unsigned long offset, [IsIndex,Default=Undefined] optional unsigned long length);
+ [TreatReturnedNullStringAs=Null, RaisesException] DOMString substringData([Default=Undefined] optional unsigned long offset, [IsIndex,Default=Undefined] optional unsigned long length);
void appendData(DOMString data);
- [RaisesException] void insertData([IsIndex] unsigned long offset, DOMString data);
- [RaisesException] void deleteData([IsIndex] unsigned long offset, unsigned long length);
- [RaisesException] void replaceData([IsIndex] unsigned long offset, unsigned long length, DOMString data);
+ [RaisesException] void insertData(unsigned long offset, DOMString data);
+ [RaisesException] void deleteData(unsigned long offset, unsigned long length);
+ [RaisesException] void replaceData(unsigned long offset, unsigned long length, DOMString data);
};
CharacterData implements ChildNode;
« no previous file with comments | « LayoutTests/fast/dom/characterdata-api-arguments-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698