getactionurl.html (389B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <script src="/resources/testharness.js"></script> 4 <script src="/resources/testharnessreport.js"></script> 5 6 <iframe src="resources/getactionurl-iframe.html"></iframe> 7 <script> 8 async_test(t => { 9 window.onmessage = t.step_func_done(event => assert_equals(event.data, 'PASS')); 10 }, `Verifies that a form element's target can be a data url.`); 11 </script>