| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 shared_page_state | 5 from telemetry.page import shared_page_state |
| 6 from telemetry import story | 6 from telemetry import story |
| 7 | 7 |
| 8 from page_sets import key_mobile_sites_pages | 8 from page_sets import key_mobile_sites_pages |
| 9 | 9 |
| 10 | 10 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 ('http://www.androidpolice.com/2012/10/03/rumor-evidence-mounts-that-an-' | 131 ('http://www.androidpolice.com/2012/10/03/rumor-evidence-mounts-that-an-' |
| 132 'lg-optimus-g-nexus-is-coming-along-with-a-nexus-phone-certification-' | 132 'lg-optimus-g-nexus-is-coming-along-with-a-nexus-phone-certification-' |
| 133 'program/'), | 133 'program/'), |
| 134 # Why: crbug.com/149958 | 134 # Why: crbug.com/149958 |
| 135 'http://gsp.ro', | 135 'http://gsp.ro', |
| 136 # Why: Top tech blog | 136 # Why: Top tech blog |
| 137 'http://theverge.com', | 137 'http://theverge.com', |
| 138 # Why: Top tech site | 138 # Why: Top tech site |
| 139 'http://digg.com', | 139 'http://digg.com', |
| 140 # Why: Top Google property; a Google tab is often open | 140 # Why: Top Google property; a Google tab is often open |
| 141 'https://www.google.com/#hl=en&q=barack+obama', | 141 'https://www.google.co.uk/search?hl=en&q=barack+obama&cad=h', |
| 142 # Why: #1 news worldwide (Alexa global) | 142 # Why: #1 news worldwide (Alexa global) |
| 143 'http://news.yahoo.com', | 143 'http://news.yahoo.com', |
| 144 # Why: #2 news worldwide | 144 # Why: #2 news worldwide |
| 145 'http://www.cnn.com', | 145 'http://www.cnn.com', |
| 146 # Why: #1 commerce website by time spent by users in US | 146 # Why: #1 commerce website by time spent by users in US |
| 147 'http://shop.mobileweb.ebay.com/searchresults?kw=viking+helmet', | 147 'http://shop.mobileweb.ebay.com/searchresults?kw=viking+helmet', |
| 148 # Why: #1 Alexa recreation | 148 # Why: #1 Alexa recreation |
| 149 'http://www.booking.com/searchresults.html?src=searchresults&latitude=65.0
500&longitude=25.4667', | 149 'http://www.booking.com/searchresults.html?src=searchresults&latitude=65.0
500&longitude=25.4667', |
| 150 # Why: #1 Alexa sports | 150 # Why: #1 Alexa sports |
| 151 'http://sports.yahoo.com/', | 151 'http://sports.yahoo.com/', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 167 ('http://www.baidu.com/s?wd=barack+obama&rsv_bp=0&rsv_spt=3&rsv_sug3=9&' | 167 ('http://www.baidu.com/s?wd=barack+obama&rsv_bp=0&rsv_spt=3&rsv_sug3=9&' |
| 168 'rsv_sug=0&rsv_sug4=3824&rsv_sug1=3&inputT=4920'), | 168 'rsv_sug=0&rsv_sug4=3824&rsv_sug1=3&inputT=4920'), |
| 169 # Why: Top search engine | 169 # Why: Top search engine |
| 170 'http://www.bing.com/search?q=sloths', | 170 'http://www.bing.com/search?q=sloths', |
| 171 # Why: Good example of poor initial scrolling | 171 # Why: Good example of poor initial scrolling |
| 172 'http://ftw.usatoday.com/2014/05/spelling-bee-rules-shenanigans' | 172 'http://ftw.usatoday.com/2014/05/spelling-bee-rules-shenanigans' |
| 173 ] | 173 ] |
| 174 | 174 |
| 175 for url in urls_list: | 175 for url in urls_list: |
| 176 self.AddStory(KeyMobileSitesPage(url, self)) | 176 self.AddStory(KeyMobileSitesPage(url, self)) |
| OLD | NEW |