* This helper class stores information about text content of a target node, * allowing comparison of content before and after a given event. * * Identify the node where selection currently begins, then observe * both its text content and its current position in the DOM. Since the * browser may
(root)
| 3170 | * @param {DOMEventTarget} root |
| 3171 | */ |
| 3172 | function FallbackCompositionState(root) { |
| 3173 | this._root = root; |
| 3174 | this._startText = this.getText(); |
| 3175 | this._fallbackText = null; |
| 3176 | } |
| 3177 | |
| 3178 | _assign(FallbackCompositionState.prototype, { |
| 3179 | destructor: function () { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…