| 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 'https://www.google.com/#hl=en&q=barack+obama', | 236 'https://www.google.com/#hl=en&q=barack+obama', |
| 237 # Why: #1 news worldwide (Alexa global) | 237 # Why: #1 news worldwide (Alexa global) |
| 238 'http://news.yahoo.com', | 238 'http://news.yahoo.com', |
| 239 # Why: #2 news worldwide | 239 # Why: #2 news worldwide |
| 240 'http://www.cnn.com', | 240 'http://www.cnn.com', |
| 241 # Why: #1 commerce website by time spent by users in US | 241 # Why: #1 commerce website by time spent by users in US |
| 242 'http://shop.mobileweb.ebay.com/searchresults?kw=viking+helmet', | 242 'http://shop.mobileweb.ebay.com/searchresults?kw=viking+helmet', |
| 243 # Why: #1 Alexa recreation | 243 # Why: #1 Alexa recreation |
| 244 # pylint: disable=line-too-long | 244 # pylint: disable=line-too-long |
| 245 'http://www.booking.com/searchresults.html?src=searchresults&latitude=65.0
500&longitude=25.4667', | 245 'http://www.booking.com/searchresults.html?src=searchresults&latitude=65.0
500&longitude=25.4667', |
| 246 # Why: #1 Alexa sports | |
| 247 'http://sports.yahoo.com/', | |
| 248 # Why: Top tech blog | 246 # Why: Top tech blog |
| 249 'http://techcrunch.com', | 247 'http://techcrunch.com', |
| 250 # Why: #6 Alexa sports | 248 # Why: #6 Alexa sports |
| 251 'http://mlb.com/', | 249 'http://mlb.com/', |
| 252 # Why: #14 Alexa California | 250 # Why: #14 Alexa California |
| 253 'http://www.sfgate.com/', | 251 'http://www.sfgate.com/', |
| 254 # Why: Non-latin character set | 252 # Why: Non-latin character set |
| 255 'http://worldjournal.com/', | 253 'http://worldjournal.com/', |
| 256 # Why: Mobile wiki | 254 # Why: Mobile wiki |
| 257 'http://www.wowwiki.com/World_of_Warcraft:_Mists_of_Pandaria', | 255 'http://www.wowwiki.com/World_of_Warcraft:_Mists_of_Pandaria', |
| 258 # Why: #15 Alexa news | 256 # Why: #15 Alexa news |
| 259 'http://online.wsj.com/home-page', | 257 'http://online.wsj.com/home-page', |
| 260 # Why: Image-heavy mobile site | 258 # Why: Image-heavy mobile site |
| 261 'http://www.deviantart.com/', | 259 'http://www.deviantart.com/', |
| 262 # Why: Top search engine | 260 # Why: Top search engine |
| 263 ('http://www.baidu.com/s?wd=barack+obama&rsv_bp=0&rsv_spt=3&rsv_sug3=9&' | 261 ('http://www.baidu.com/s?wd=barack+obama&rsv_bp=0&rsv_spt=3&rsv_sug3=9&' |
| 264 'rsv_sug=0&rsv_sug4=3824&rsv_sug1=3&inputT=4920'), | 262 'rsv_sug=0&rsv_sug4=3824&rsv_sug1=3&inputT=4920'), |
| 265 # Why: Top search engine | 263 # Why: Top search engine |
| 266 'http://www.bing.com/search?q=sloths', | 264 'http://www.bing.com/search?q=sloths', |
| 267 # Why: Good example of poor initial scrolling | 265 # Why: Good example of poor initial scrolling |
| 268 'http://ftw.usatoday.com/2014/05/spelling-bee-rules-shenanigans' | 266 'http://ftw.usatoday.com/2014/05/spelling-bee-rules-shenanigans' |
| 269 ] | 267 ] |
| 270 | 268 |
| 271 for url in urls_list: | 269 for url in urls_list: |
| 272 self.AddUserStory(KeyMobileSitesSmoothPage(url, self)) | 270 self.AddUserStory(KeyMobileSitesSmoothPage(url, self)) |
| OLD | NEW |