summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/interactive-elements/the-dialog-element/dialog-showModal-inert-crash.html
blob: 54c2edab6bf81bd8831497e5a8f9c375771ed22e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<iframe id="frame"></iframe>
<script>
  async_test(function(t) {
    onload = t.step_func(() => {
      const host = document.createElement("div");
      frame.appendChild(host);
      frame.contentDocument.body.innerHTML = "<dialog></dialog>";
      document.body.offsetTop;
      const root = host.attachShadow({mode: 'open'});
      root.innerHTML = "<content>";
      const dialog = frame.contentDocument.querySelector("dialog");
      dialog.showModal();
      t.done();
    });
  }, "Dialog.showModal() called when we have a dirty shadow distribution should not crash.");
</script>