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 page_set as page_set_module | 5 from telemetry.page import page_set as page_set_module |
6 | 6 |
7 from page_sets import key_mobile_sites_pages | 7 from page_sets import key_mobile_sites_pages |
8 | 8 |
9 | 9 |
10 def _IssueMarkerAndScroll(action_runner): | 10 def _IssueMarkerAndScroll(action_runner): |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 'https://www.google.com/#hl=en&q=barack+obama', | 269 'https://www.google.com/#hl=en&q=barack+obama', |
270 # Why: #1 news worldwide (Alexa global) | 270 # Why: #1 news worldwide (Alexa global) |
271 'http://news.yahoo.com', | 271 'http://news.yahoo.com', |
272 # Why: #2 news worldwide | 272 # Why: #2 news worldwide |
273 'http://www.cnn.com', | 273 'http://www.cnn.com', |
274 # Why: #1 commerce website by time spent by users in US | 274 # Why: #1 commerce website by time spent by users in US |
275 'http://shop.mobileweb.ebay.com/searchresults?kw=viking+helmet', | 275 'http://shop.mobileweb.ebay.com/searchresults?kw=viking+helmet', |
276 # Why: #1 Alexa recreation | 276 # Why: #1 Alexa recreation |
277 # pylint: disable=line-too-long | 277 # pylint: disable=line-too-long |
278 'http://www.booking.com/searchresults.html?src=searchresults&latitude=65.0
500&longitude=25.4667', | 278 'http://www.booking.com/searchresults.html?src=searchresults&latitude=65.0
500&longitude=25.4667', |
279 # Why: #1 Alexa sports | |
280 'http://sports.yahoo.com/', | |
281 # Why: Top tech blog | 279 # Why: Top tech blog |
282 'http://techcrunch.com', | 280 'http://techcrunch.com', |
283 # Why: #6 Alexa sports | 281 # Why: #6 Alexa sports |
284 'http://mlb.com/', | 282 'http://mlb.com/', |
285 # Why: #14 Alexa California | 283 # Why: #14 Alexa California |
286 'http://www.sfgate.com/', | 284 'http://www.sfgate.com/', |
287 # Why: Non-latin character set | 285 # Why: Non-latin character set |
288 'http://worldjournal.com/', | 286 'http://worldjournal.com/', |
289 # Why: #15 Alexa news | 287 # Why: #15 Alexa news |
290 'http://online.wsj.com/home-page', | 288 'http://online.wsj.com/home-page', |
291 # Why: Image-heavy mobile site | 289 # Why: Image-heavy mobile site |
292 'http://www.deviantart.com/', | 290 'http://www.deviantart.com/', |
293 # Why: Top search engine | 291 # Why: Top search engine |
294 ('http://www.baidu.com/s?wd=barack+obama&rsv_bp=0&rsv_spt=3&rsv_sug3=9&' | 292 ('http://www.baidu.com/s?wd=barack+obama&rsv_bp=0&rsv_spt=3&rsv_sug3=9&' |
295 'rsv_sug=0&rsv_sug4=3824&rsv_sug1=3&inputT=4920'), | 293 'rsv_sug=0&rsv_sug4=3824&rsv_sug1=3&inputT=4920'), |
296 # Why: Top search engine | 294 # Why: Top search engine |
297 'http://www.bing.com/search?q=sloths', | 295 'http://www.bing.com/search?q=sloths', |
298 # Why: Good example of poor initial scrolling | 296 # Why: Good example of poor initial scrolling |
299 'http://ftw.usatoday.com/2014/05/spelling-bee-rules-shenanigans' | 297 'http://ftw.usatoday.com/2014/05/spelling-bee-rules-shenanigans' |
300 ] | 298 ] |
301 | 299 |
302 for url in urls_list: | 300 for url in urls_list: |
303 self.AddUserStory(KeyMobileSitesSmoothPage(url, self)) | 301 self.AddUserStory(KeyMobileSitesSmoothPage(url, self)) |
OLD | NEW |