https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e8c4654cef692388e68e8ded7a9316d6bd613570 authored by Darren Shen on 06 April 2018, 07:51:02 UTC
[css-typed-om] Add support for background properties.
Tip revision: e8c4654
form-action-src-allowed-target-frame.sub.html
<!DOCTYPE html>
<html>
<head>
  <title>form-action-src-allowed-target-frame</title>
  <meta http-equiv="Content-Security-Policy" content="form-action 'self'">
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
  <script>
    function OnDocumentLoaded() {
      let test = async_test("form submission targetting a frame allowed");
      window.addEventListener("message", function(event) {
        if (event.data == "DocumentNotBlocked") {
          test.done();
        }
      });

      let form = document.getElementById("form");
      form.action =
        "/content-security-policy/form-action/support/post-message-to-parent.sub.html";

      let submit = document.getElementById("submit");
      submit.click();
    }
  </script>
</head>
<body onload="OnDocumentLoaded();">
  <form id="form" method="GET" target="frame">
    <input type="hidden" name="message" value="DocumentNotBlocked">
    <input type="submit" id="submit">
  </form>
  <iframe name="frame"></iframe>
</body>
</html>

back to top