1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 from telemetry
.page
import page
as page_module
5 from telemetry
import story
8 # The PageSet searches for pages relative to the directory the page class is
9 # defined in so we need to subclass here.
10 class BlankPage(page_module
.Page
):
14 class FiveBlankPagesPageSet(story
.StorySet
):
16 """ Five blank pages. """
19 super(FiveBlankPagesPageSet
, self
).__init
__()
21 self
.AddStory(BlankPage('file://blank_page/blank_page.html', self
))