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); |