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

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

Issue 400823006: [Telemetry] Disable core-scroll-header-panel which was recently enabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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 | « no previous file | 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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 from telemetry.page import page as page_module 4 from telemetry.page import page as page_module
5 from telemetry.page import page_set as page_set_module 5 from telemetry.page import page_set as page_set_module
6 6
7 class PolymerPage(page_module.Page): 7 class PolymerPage(page_module.Page):
8 8
9 def __init__(self, url, page_set): 9 def __init__(self, url, page_set):
10 super(PolymerPage, self).__init__( 10 super(PolymerPage, self).__init__(
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 # crbug.com/394756 209 # crbug.com/394756
210 # 'paper-radio-button', 210 # 'paper-radio-button',
211 'paper-shadow', 211 'paper-shadow',
212 'paper-tabs', 212 'paper-tabs',
213 'paper-toggle-button', 213 'paper-toggle-button',
214 ] 214 ]
215 for p in TAPPABLE_PAGES: 215 for p in TAPPABLE_PAGES:
216 self.AddPage(PolymerSampler(self, p)) 216 self.AddPage(PolymerSampler(self, p))
217 217
218 # Polymer Sampler subpages that are interesting to scroll 218 # Polymer Sampler subpages that are interesting to scroll
219 SCROLLABLE_PAGES = ['core-scroll-header-panel'] 219 SCROLLABLE_PAGES = [
220 # crbug.com/394756
221 # 'core-scroll-header-panel',
222 ]
220 for p in SCROLLABLE_PAGES: 223 for p in SCROLLABLE_PAGES:
221 self.AddPage(PolymerSampler(self, p, scrolling_page=True)) 224 self.AddPage(PolymerSampler(self, p, scrolling_page=True))
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698