chromium/third_party/blink/renderer/core/css/parser/css_parser_fast_paths_perftest.cc

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// A benchmark to verify the CSS parser fastpath performance.

#include "base/command_line.h"
#include "base/timer/elapsed_timer.h"
#include "testing/perf/perf_result_reporter.h"
#include "testing/perf/perf_test.h"
#include "third_party/blink/renderer/core/css/container_query_data.h"
#include "third_party/blink/renderer/core/css/parser/css_parser.h"
#include "third_party/blink/renderer/core/css/parser/css_parser_fast_paths.h"
#include "third_party/blink/renderer/core/execution_context/security_context.h"
#include "third_party/blink/renderer/platform/testing/unit_test_helpers.h"
#include "third_party/googletest/src/googletest/include/gtest/gtest.h"

namespace blink {

struct FastPathSampleCase {};

// A dump of the values received by the fast path parser during a run
// of MotionMark's “multiply” subtest.
TEST(StyleFastPathPerfTest, MotionMarkMultiply) {}

}  // namespace blink