blob: 091f6882e05d4cf3ec7b9248f200339abc28f2be [file] [log] [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/core/permissions_policy/document_policy_parser.h"
#include <stddef.h>
#include <stdint.h>
#include "third_party/blink/renderer/platform/testing/blink_fuzzer_test_support.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
static blink::BlinkFuzzerTestSupport test_support =
blink::BlinkFuzzerTestSupport();
blink::PolicyParserMessageBuffer logger;
blink::DocumentPolicyParser::Parse(
WTF::String(data, static_cast<wtf_size_t>(size)), logger);
return 0;
}