-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(document): track
HTMLInputElement.setRangeText()
(#984)
- Loading branch information
1 parent
0a3fe4f
commit 73443ec
Showing
5 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import {prepareInterceptor} from './interceptor' | ||
import {setUISelectionClean} from './selection' | ||
import {setUIValueClean} from './value' | ||
|
||
export function prepareRangeTextInterceptor( | ||
element: HTMLInputElement | HTMLTextAreaElement, | ||
) { | ||
prepareInterceptor( | ||
element, | ||
'setRangeText', | ||
function interceptorImpl(...realArgs) { | ||
return { | ||
realArgs, | ||
then: () => { | ||
setUIValueClean(element) | ||
setUISelectionClean(element) | ||
}, | ||
} | ||
}, | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters