CVS commit by faure: Allow JS code to create a TextEvent. [This isn't in WebCore since they moved to KeyboardEvent...] M +2 -0 dom_docimpl.cpp 1.298 --- kdelibs/khtml/xml/dom_docimpl.cpp #1.297:1.298 @@ -2091,4 +2091,6 @@ EventImpl *DocumentImpl::createEvent(con else if (eventType == "MouseEvents") return new MouseEventImpl(); + else if (eventType == "TextEvents") + return new TextEventImpl(); else if (eventType == "MutationEvents") return new MutationEventImpl();