- Currently the cursor sticks around if you click elsewhere. Now the text inputs are relayout-ed on blur. - Currently whitespace gets collapsed in text input (https://github.com/servo/servo/issues/8772). Not anymore. Source-Repo: https://github.com/servo/servo Source-Revision: 099beee85c02d391b854dc5e06da34f89df8b760
7 lines
180 B
HTML
7 lines
180 B
HTML
|
|
Both input elements below should have more than one space between "foo" and "bar":
|
|
|
|
<form>
|
|
<input value="foo bar">
|
|
<input value="foo bar">
|
|
</form> |