-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
type:featureFeature requestsFeature requests
Description
https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-FF21A306
Interface CharacterData
IDL Definition
More
interface CharacterData : Node {
attribute DOMString data;
// raises(DOMException) on setting
// raises(DOMException) on retrieval
readonly attribute unsigned long length;
DOMString substringData(in unsigned long offset,
in unsigned long count)
raises(DOMException);
void appendData(in DOMString arg)
raises(DOMException);
void insertData(in unsigned long offset,
in DOMString arg)
raises(DOMException);
void deleteData(in unsigned long offset,
in unsigned long count)
raises(DOMException);
void replaceData(in unsigned long offset,
in unsigned long count,
in DOMString arg)
raises(DOMException);
};
Attributes
attribute DOMString data
readonly attribute unsigned long length
To pick up a draggable item, press the space bar. While dragging, use the arrow keys to move the item. Press space again to drop the item in its new position, or press escape to cancel.
Methods
// raises(DOMException) on setting
// raises(DOMException) on retrieval
DOMString substringData(in unsigned long offset, in unsigned long count)
void appendData(in DOMString arg)
void insertData(in unsigned long offset, in DOMString arg)
void deleteData(in unsigned long offset, in unsigned long count)
in unsigned long count, in DOMString arg)
To pick up a draggable item, press the space bar. While dragging, use the arrow keys to move the item. Press space again to drop the item in its new position, or press escape to cancel.
Metadata
Metadata
Assignees
Labels
type:featureFeature requestsFeature requests
Projects
Milestone
Relationships
Development
Select code repository
Activity