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

Side by Side Diff: tools/perf/page_sets/system_health/browsing_stories.py

Issue 2919753002: Disable browse:social:twitter_infinite_scroll on Windows (Closed)
Patch Set: Created 3 years, 6 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 # encoding: utf-8 1 # encoding: utf-8
2 # Copyright 2016 The Chromium Authors. All rights reserved. 2 # Copyright 2016 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 from page_sets.system_health import platforms 6 from page_sets.system_health import platforms
7 from page_sets.system_health import story_tags 7 from page_sets.system_health import story_tags
8 from page_sets.system_health import system_health_story 8 from page_sets.system_health import system_health_story
9 9
10 from page_sets.login_helpers import facebook_login 10 from page_sets.login_helpers import facebook_login
(...skipping 893 matching lines...) Expand 10 before | Expand all | Expand 10 after
904 SUPPORTED_PLATFORMS = platforms.MOBILE_ONLY 904 SUPPORTED_PLATFORMS = platforms.MOBILE_ONLY
905 TAGS = [story_tags.INFINITE_SCROLL] 905 TAGS = [story_tags.INFINITE_SCROLL]
906 906
907 907
908 class TumblrStory(_InfiniteScrollStory): 908 class TumblrStory(_InfiniteScrollStory):
909 NAME = 'browse:social:tumblr_infinite_scroll' 909 NAME = 'browse:social:tumblr_infinite_scroll'
910 URL = 'http://techcrunch.tumblr.com/' # This page doesn't support HTTPS. 910 URL = 'http://techcrunch.tumblr.com/' # This page doesn't support HTTPS.
911 TAGS = [story_tags.INFINITE_SCROLL] 911 TAGS = [story_tags.INFINITE_SCROLL]
912 912
913 913
914 @decorators.Disabled('win') # crbug.com/728464
914 class TwitterScrollDesktopStory(_InfiniteScrollStory): 915 class TwitterScrollDesktopStory(_InfiniteScrollStory):
915 NAME = 'browse:social:twitter_infinite_scroll' 916 NAME = 'browse:social:twitter_infinite_scroll'
916 URL = 'https://twitter.com/taylorswift13' 917 URL = 'https://twitter.com/taylorswift13'
917 SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY 918 SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY
918 TAGS = [story_tags.INFINITE_SCROLL] 919 TAGS = [story_tags.INFINITE_SCROLL]
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