-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix #2757: Test input/textarea.selection{Direction,Start,End} not throwing #2825
Conversation
Reviewers for this pull request are: @Ms2ger, @foolip, @gsnedders, @jdm, @jgraham, @plehegar, @sideshowbarker, @zcorpan, and @zqzhang. |
Critic review: https://critic.hoppipolla.co.uk/r/6387 This is an external review system which you may optionally use for the code review of your pull request. In order to help critic track your changes, please do not make in-place history rewrites (e.g. via |
@cvrebert r? |
@@ -3351,7 +3358,30 @@ | |||
HTMLFieldsetElement: ['document.createElement("fieldset")'], | |||
HTMLLegendElement: ['document.createElement("legend")'], | |||
HTMLLabelElement: ['document.createElement("label")'], | |||
HTMLInputElement: ['document.createElement("input")'], | |||
HTMLInputElement: [ | |||
'document.createElement("input")', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding an explicit text
entry would be good, IMHO.
Other than that, lgtm. |
Thanks! |
…Start,End} not throwing (web-platform-tests#2825) This tests whatwg/html#1006.
…Start,End} not throwing (web-platform-tests#2825) This tests whatwg/html#1006.
This tests whatwg/html#1006.