1<!doctype html> 2<html lang=en> 3<meta charset=utf-8> 4<title>FormData: has</title> 5<script src="../../resources/testharness.js"></script> 6<script src="../../resources/testharnessreport.js"></script> 7 <link rel="help" href="https://xhr.spec.whatwg.org/#dom-formdata-get" /> 8 <link rel="help" href="https://xhr.spec.whatwg.org/#dom-formdata-getall" /> 9<div id="log"></div> 10<form id="form"> 11 <input type="hidden" name="key" value="value1"> 12 <input type="hidden" name="key" value="value2"> 13</form> 14<form id="empty-form" /> 15