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

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

Issue 1151203002: Make CharacterData.substringData() and ProcessingInstruction.target not nullable (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: drop Document changes 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 | « no previous file | Source/core/dom/ProcessingInstruction.idl » ('j') | 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 ac6ff0a172c7d6cad04cb982868515a5a60d2759..5be788832cdfe7b5830d7063b16257529fd28caa 100644
--- a/Source/core/dom/CharacterData.idl
+++ b/Source/core/dom/CharacterData.idl
@@ -22,8 +22,7 @@
interface CharacterData : Node {
[TreatNullAs=NullString] attribute DOMString data;
readonly attribute unsigned long length;
- // FIXME: substringData return value should not be nullable.
- [RaisesException] DOMString? substringData(unsigned long offset, unsigned long count);
+ [RaisesException] DOMString substringData(unsigned long offset, unsigned long count);
void appendData(DOMString data);
[RaisesException] void insertData(unsigned long offset, DOMString data);
[RaisesException] void deleteData(unsigned long offset, unsigned long count);
« no previous file with comments | « no previous file | Source/core/dom/ProcessingInstruction.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698