summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/custom-elements/form-associated/form-reset-callback.html
blob: 8b8497f8b6c4268a0fcd10baeb39bda15a09ac0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<body>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
class MyControl extends HTMLElement {
  static get formAssociated() { return true; }

  constructor() {
    super();
    this.resetCalled_ = false;
  }

  formResetCallback() {
    this.resetCalled_ = true;
  }
  get resetCalled() { return this.resetCalled_; }
}
customElements.define('my-control', MyControl);

test(() => {
  document.body.insertAdjacentHTML('beforeend',
      '<form><my-control></my-control></form>');
  let form = document.body.lastChild;
  let custom = form.firstChild;
  form.reset();
  assert_true(custom.resetCalled);
}, 'form.reset() should trigger formResetCallback');

test(() => {
  document.body.insertAdjacentHTML('beforeend',
      '<form><my-control></my-control><output>default</output></form>');
  let form = document.body.lastChild;
  let custom = form.firstChild;
  let output = form.lastChild;
  output.value = 'updated';
  output.addEventListener('DOMSubtreeModified', () => {
    assert_false(custom.resetCalled, 'formResetCallback should not be ' +
                 'called before built-in control\'s reset');
  });
  form.reset();
  assert_true(custom.resetCalled);
}, 'form.reset(): formResetCallback is called after reset of the last ' +
   'built-in form control and before the next statement.');

promise_test(() => {
  document.body.insertAdjacentHTML('beforeend',
      '<form><my-control></my-control><input type=reset></form>');
  let form = document.body.lastChild;
  let custom = form.firstChild;
  let resetButton = form.lastChild;
  assert_false(custom.resetCalled);
  resetButton.click();
  assert_false(custom.resetCalled);
  return Promise.resolve().then(() => assert_true(custom.resetCalled));
}, 'Clicking a reset button invokes formResetCallback in a microtask');
</script>
</body>