auto merge of #2184 : Ms2ger/servo/remove-nyi-characterdata, r=jdm

This speeds up a web-platform-tests run by about 45 seconds (of 11-12 minutes)
by avoiding three timeouts.
This commit is contained in:
bors-servo 2014-04-19 12:19:07 -04:00
commit 9198e74176
2 changed files with 0 additions and 18 deletions

View file

@ -59,18 +59,6 @@ impl CharacterData {
self.data.push_str(arg);
Ok(())
}
pub fn InsertData(&mut self, _offset: u32, _arg: DOMString) -> ErrorResult {
fail!("CharacterData::InsertData() is unimplemented")
}
pub fn DeleteData(&mut self, _offset: u32, _count: u32) -> ErrorResult {
fail!("CharacterData::DeleteData() is unimplemented")
}
pub fn ReplaceData(&mut self, _offset: u32, _count: u32, _arg: DOMString) -> ErrorResult {
fail!("CharacterData::ReplaceData() is unimplemented")
}
}
impl Reflectable for CharacterData {

View file

@ -17,12 +17,6 @@ interface CharacterData : Node {
DOMString substringData(unsigned long offset, unsigned long count);
[Throws]
void appendData(DOMString data);
[Throws]
void insertData(unsigned long offset, DOMString data);
[Throws]
void deleteData(unsigned long offset, unsigned long count);
[Throws]
void replaceData(unsigned long offset, unsigned long count, DOMString data);
};
//CharacterData implements ChildNode;