summaryrefslogtreecommitdiffstats
path: root/tools/perf/benchmarks/fast_path.py
blob: a3b95444dc442238b1f3dd1f9dc594c66156cf55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from telemetry import test

from measurements import thread_times

class FastPathCases(test.Test):
  """Measures timeline metrics while performing smoothness action on
  key mobile sites labeled with fast-path tag.
  http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
  test = thread_times.ThreadTimes
  page_set = 'page_sets/key_mobile_sites.json'
  options = {'page_label_filter' : 'fastpath'}