#include "third_party/blink/renderer/core/html/forms/form_data.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_union_file_usvstring.h"
#include "third_party/blink/renderer/core/fileapi/file.h"
#include "third_party/blink/renderer/core/html/forms/form_controller.h"
#include "third_party/blink/renderer/core/testing/null_execution_context.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"
namespace blink {
namespace {
FormData* Deserialize(ExecutionContext& context,
const Vector<String>& strings) { … }
}
TEST(FormDataTest, append) { … }
TEST(FormDataTest, AppendFromElement) { … }
TEST(FormDataTest, get) { … }
TEST(FormDataTest, getAll) { … }
TEST(FormDataTest, has) { … }
TEST(FormDataTest, AppendToControlState) { … }
TEST(FormDataTest, CreateFromControlState) { … }
TEST(FormDataTest, FilenameWithLoneSurrogates) { … }
}