[whatwg/dom] form.disabled to disable the form submission (#646)

```html
<form id="form">
  <input name="foo">
  <input name="submit" type="submit">
</form>
```

Currently, it's possible to do `form.submit = true` to disable this form submission (either by clicking the submit button, or pressing enter in a field)

I'd like to propose that `form.disabled = true` behaves similarly, currently it does nothing to prevent submission


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/dom/issues/646

Received on Sunday, 13 May 2018 11:17:45 UTC