blob: bd0a1a7f384d972119f9783e3e58cc7332c2851d [file] [log] [blame]
# 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.page import page as page_module
from telemetry.page import page_set as page_set_module
class ToughLayerCasesPage(page_module.Page):
def __init__(self, url, page_set):
super(ToughLayerCasesPage, self).__init__(url=url, page_set=page_set)
class ToughLayerCasesPageSet(page_set_module.PageSet):
""" A collection of tests to measure layer performance. """
def __init__(self):
super(ToughLayerCasesPageSet, self).__init__()
self.AddPage(ToughLayerCasesPage(
'file://layer_stress_tests/opacity.html', self))