Commit 781849a0 authored by tonyg@chromium.org's avatar tonyg@chromium.org

[Telemetry] Disable core-scroll-header-panel which was recently enabled.

It did pass two runs, but is consistently failing now. So I'm not sure
whether this is a regression or flake. Since the test is so new, it seems
safest to just disable this page until it shakes out.

If this isn't a flake, the regression range is r283974-284019.

BUG=394756
TBR=wiltzius@chromium.org
NOTRY=True

Review URL: https://codereview.chromium.org/400823006

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284114 0039d316-1c4b-4281-b951-d872f2087c98
parent a04e692f
...@@ -216,6 +216,9 @@ class PolymerPageSet(page_set_module.PageSet): ...@@ -216,6 +216,9 @@ class PolymerPageSet(page_set_module.PageSet):
self.AddPage(PolymerSampler(self, p)) self.AddPage(PolymerSampler(self, p))
# Polymer Sampler subpages that are interesting to scroll # Polymer Sampler subpages that are interesting to scroll
SCROLLABLE_PAGES = ['core-scroll-header-panel'] SCROLLABLE_PAGES = [
# crbug.com/394756
# 'core-scroll-header-panel',
]
for p in SCROLLABLE_PAGES: for p in SCROLLABLE_PAGES:
self.AddPage(PolymerSampler(self, p, scrolling_page=True)) self.AddPage(PolymerSampler(self, p, scrolling_page=True))
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment