| OLD | NEW |
| (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)) | |
| OLD | NEW |