exclude PluginsFieldTrialTest.NoPrefLeftBehind from valgrind bot
[chromium-blink-merge.git] / tools / perf / page_sets / oopif_basic_page_set.py
blob5e1e9b14dee4055d23a326fe324e4b659ada4eff
1 # Copyright 2015 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
5 from telemetry import story
7 class OopifBasicPageSet(story.StorySet):
8 """ Basic set of pages used to measure performance of out-of-process
9 iframes.
10 """
12 def __init__(self):
13 super(OopifBasicPageSet, self).__init__(
14 archive_data_file='data/oopif_basic.json',
15 cloud_storage_bucket=story.PARTNER_BUCKET)
17 urls = [
18 'http://www.cnn.com',
19 'http://www.ebay.com',
20 'http://booking.com',
21 'http://www.rei.com/',
22 'http://www.fifa.com/',
23 # Disabled because it is flaky on Windows and Android
24 #'http://arstechnica.com/',
25 'http://www.nationalgeographic.com/',
26 # Cross-site heavy! Enable them once they render without crashing.
27 #'http://www.nba.com/',
28 #'http://www.phonearena.com/',
29 #'http://slickdeals.net/',
30 #'http://www.163.com/',
33 for url in urls:
34 self.AddStory(page.Page(url, self))