| OLD | NEW |
| 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 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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 ('http://www.androidpolice.com/2012/10/03/rumor-evidence-mounts-that-an-' | 241 ('http://www.androidpolice.com/2012/10/03/rumor-evidence-mounts-that-an-' |
| 242 'lg-optimus-g-nexus-is-coming-along-with-a-nexus-phone-certification-' | 242 'lg-optimus-g-nexus-is-coming-along-with-a-nexus-phone-certification-' |
| 243 'program/'), | 243 'program/'), |
| 244 # Why: crbug.com/149958 | 244 # Why: crbug.com/149958 |
| 245 'http://gsp.ro', | 245 'http://gsp.ro', |
| 246 # Why: Top tech blog | 246 # Why: Top tech blog |
| 247 'http://theverge.com', | 247 'http://theverge.com', |
| 248 # Why: Top tech site | 248 # Why: Top tech site |
| 249 'http://digg.com', | 249 'http://digg.com', |
| 250 # Why: Top Google property; a Google tab is often open | 250 # Why: Top Google property; a Google tab is often open |
| 251 'https://www.google.com/#hl=en&q=barack+obama', | 251 'https://www.google.co.uk/search?hl=en&q=barack+obama&cad=h', |
| 252 # Why: #1 news worldwide (Alexa global) | 252 # Why: #1 news worldwide (Alexa global) |
| 253 'http://news.yahoo.com', | 253 'http://news.yahoo.com', |
| 254 # Why: #2 news worldwide | 254 # Why: #2 news worldwide |
| 255 'http://www.cnn.com', | 255 'http://www.cnn.com', |
| 256 # Why: #1 commerce website by time spent by users in US | 256 # Why: #1 commerce website by time spent by users in US |
| 257 'http://shop.mobileweb.ebay.com/searchresults?kw=viking+helmet', | 257 'http://shop.mobileweb.ebay.com/searchresults?kw=viking+helmet', |
| 258 # Why: #1 Alexa recreation | 258 # Why: #1 Alexa recreation |
| 259 'http://www.booking.com/searchresults.html?src=searchresults&latitude=65.0
500&longitude=25.4667', | 259 'http://www.booking.com/searchresults.html?src=searchresults&latitude=65.0
500&longitude=25.4667', |
| 260 # Why: Top tech blog | 260 # Why: Top tech blog |
| 261 'http://techcrunch.com', | 261 'http://techcrunch.com', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 273 ('http://www.baidu.com/s?wd=barack+obama&rsv_bp=0&rsv_spt=3&rsv_sug3=9&' | 273 ('http://www.baidu.com/s?wd=barack+obama&rsv_bp=0&rsv_spt=3&rsv_sug3=9&' |
| 274 'rsv_sug=0&rsv_sug4=3824&rsv_sug1=3&inputT=4920'), | 274 'rsv_sug=0&rsv_sug4=3824&rsv_sug1=3&inputT=4920'), |
| 275 # Why: Top search engine | 275 # Why: Top search engine |
| 276 'http://www.bing.com/search?q=sloths', | 276 'http://www.bing.com/search?q=sloths', |
| 277 # Why: Good example of poor initial scrolling | 277 # Why: Good example of poor initial scrolling |
| 278 'http://ftw.usatoday.com/2014/05/spelling-bee-rules-shenanigans' | 278 'http://ftw.usatoday.com/2014/05/spelling-bee-rules-shenanigans' |
| 279 ] | 279 ] |
| 280 | 280 |
| 281 for url in urls_list: | 281 for url in urls_list: |
| 282 self.AddStory(KeyMobileSitesSmoothPage(url, self)) | 282 self.AddStory(KeyMobileSitesSmoothPage(url, self)) |
| OLD | NEW |