chromium/third_party/blink/web_tests/external/wpt/html/semantics/invokers/invoketarget-on-dialog-invalid-behavior.tentative.html

<!doctype html>
<meta charset="utf-8" />
<meta name="author" title="Keith Cirkel" href="mailto:[email protected]" />
<meta name="timeout" content="long">
<link rel="help" href="https://open-ui.org/components/invokers.explainer/" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-actions.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="resources/invoker-utils.js"></script>

<dialog id="invokee">
  <button id="containedinvoker" commandfor="invokee" command="close"></button>
</dialog>
<button id="invokerbutton" commandfor="invokee" command="showmodal"></button>

<script>
  function resetState() {
    invokee.close();
    try { invokee.hidePopover(); } catch {}
    invokee.removeAttribute("popover");
    invokerbutton.removeAttribute("command");
    containedinvoker.removeAttribute("command");
  }

  // invalid
  [
    "",
    "foo",
    "foo-bar",
    "auto",
    "showpopover",
    "hidepopover",
    "togglepopover",
    "showpicker",
  ].forEach((action) => {
    promise_test(async function (t) {
      t.add_cleanup(resetState);
      invokerbutton.setAttribute("command", action);
      assert_false(invokee.open, "invokee.open");
      assert_false(invokee.matches(":modal"), "invokee :modal");
      await clickOn(invokerbutton);
      assert_false(invokee.open, "invokee.open");
      assert_false(invokee.matches(":modal"), "invokee :modal");
    }, `invoking (as ${action}) on dialog does nothing`);

    promise_test(async function (t) {
      t.add_cleanup(resetState);
      containedinvoker.setAttribute("command", action);
      invokee.show();
      assert_true(invokee.open, "invokee.open");
      assert_false(invokee.matches(":modal"), "invokee :modal");
      await clickOn(containedinvoker);
      assert_true(invokee.open, "invokee.open");
      assert_false(invokee.matches(":modal"), "invokee :modal");
    }, `invoking (as ${action}) on open dialog does nothing`);

    promise_test(async function (t) {
      t.add_cleanup(resetState);
      containedinvoker.setAttribute("command", action);
      invokee.showModal();
      assert_true(invokee.open, "invokee.open");
      assert_true(invokee.matches(":modal"), "invokee :modal");
      await clickOn(containedinvoker);
      assert_true(invokee.open, "invokee.open");
      assert_true(invokee.matches(":modal"), "invokee :modal");
    }, `invoking (as ${action}) on open modal dialog does nothing`);

    promise_test(async function (t) {
      t.add_cleanup(resetState);
      containedinvoker.setAttribute("command", action);
      invokee.showModal();
      assert_true(invokee.open, "invokee.open");
      assert_true(invokee.matches(":modal"), "invokee :modal");
      invokee.addEventListener(
        "command",
        (e) => {
          containedinvoker.setAttribute("command", "");
        },
        { once: true },
      );
      await clickOn(containedinvoker);
      assert_true(invokee.open, "invokee.open");
      assert_true(invokee.matches(":modal"), "invokee :modal");
    }, `invoking (as ${action}) on open modal while changing the attributer does nothing`);
  });

  // Open Popovers using Dialog actions
  ["showmodal", "close"].forEach((action) => {
    ["manual", "auto"].forEach((popoverState) => {
      promise_test(
        async function (t) {
          t.add_cleanup(resetState);
          invokee.setAttribute("popover", popoverState);
          invokee.showPopover();
          containedinvoker.setAttribute("command", action);
          assert_true(
            invokee.matches(":popover-open"),
            "invokee :popover-open",
          );
          assert_false(invokee.open, "invokee.open");
          assert_false(invokee.matches(":modal"), "invokee :modal");
          invokee.addEventListener("command", (e) => e.preventDefault(), {
            once: true,
          });
          await clickOn(containedinvoker);
          assert_true(
            invokee.matches(":popover-open"),
            "invokee :popover-open",
          );
          assert_false(invokee.open, "invokee.open");
          assert_false(invokee.matches(":modal"), "invokee :modal");
        },
        `invoking (as ${
          action || "explicit empty"
        }) dialog as open popover=${popoverState} is noop`,
      );
    });
  });
</script>