Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(240)

Side by Side Diff: tools/perf/page_sets/tough_image_cases.py

Issue 2761363004: Remove seldom used tab_swtiching test cases (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/perf/page_sets/tough_energy_cases/test.swf ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.page import shared_page_state
6 from telemetry import story
7
8
9 class ToughImageCasesPage(page_module.Page):
10
11 def __init__(self, url, page_set):
12 super(ToughImageCasesPage, self).__init__(
13 url=url, page_set=page_set,
14 shared_page_state_class=shared_page_state.SharedDesktopPageState)
15
16
17 class ToughImageCasesPageSet(story.StorySet):
18
19 """ A collection of image-heavy sites. """
20
21 def __init__(self):
22 super(ToughImageCasesPageSet, self).__init__()
23
24 urls_list = [
25 'http://www.free-pictures-photos.com/aviation/airplane-306.jpg',
26 ('http://upload.wikimedia.org/wikipedia/commons/c/cb/'
27 'General_history%2C_Alaska_Yukon_Pacific_Exposition%'
28 '2C_fully_illustrated_-_meet_me_in_Seattle_1909_-_Page_78.jpg')
29 ]
30
31 for url in urls_list:
32 self.AddStory(ToughImageCasesPage(url, self))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/tough_energy_cases/test.swf ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698