| OLD | NEW |
| 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 Loading... |
| 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] |
| OLD | NEW |