summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/interactive-elements/the-dialog-element/dialog-open.html
blob: e1f4c6ab82a17b8e013fe066b99338beabf3d544 (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
<!doctype html>
<meta charset="utf-8">
<title>dialog element: open</title>
<link rel=help href="https://html.spec.whatwg.org/multipage/forms.html#dom-dialog-open">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<dialog id="d1">
  <p>foobar</p>
  <button>OK</button>
</dialog>
<dialog id="d2" open>
  <p>foobar</p>
  <button>OK</button>
</dialog>
<script>
  var d1 = document.getElementById('d1');
  var d2 = document.getElementById('d2');

  test(function(){
    assert_false(d1.open);
    assert_true(d2.open);
  }, "On getting, the IDL open attribute must return true if the content open attribute is set, and false if it is absent.");

  test(function(){
    d1.open = true;
    assert_true(d1.hasAttribute("open"));
    d2.open = false;
    assert_false(d2.hasAttribute("open"));
  }, "On setting, the content open attribute must be removed if the IDL open attribute is set to false, and must be present if the IDL open attribute is set to true.");

  async_test(function(t){
    d2.open = true;
    assert_true(d2.hasAttribute("open"));
    d2.onclose = t.unreached_func("close event should not be fired when just setting the open attribute");
    d2.open = false;
    assert_false(d2.hasAttribute("open"));

    // close event is async, give it a chance to be fired
    t.step_timeout(function() {
      t.done();
    }, 0);
  }, "On setting it to false, the close event should not be fired");
</script>