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 | 8 |
9 class IntlJaZhPage(page_module.Page): | 9 class IntlJaZhPage(page_module.Page): |
10 | 10 |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 'http://cn.yahoo.com/', | 42 'http://cn.yahoo.com/', |
43 # Why: #1 Chinese site | 43 # Why: #1 Chinese site |
44 'http://www.baidu.com/s?wd=%D0%C2%20%CE%C5', | 44 'http://www.baidu.com/s?wd=%D0%C2%20%CE%C5', |
45 # Why: #2 Chinese site | 45 # Why: #2 Chinese site |
46 'http://www.qq.com/', | 46 'http://www.qq.com/', |
47 # Why: #3 Chinese site | 47 # Why: #3 Chinese site |
48 'http://www.taobao.com/index_global.php', | 48 'http://www.taobao.com/index_global.php', |
49 # Why: #4 Chinese site | 49 # Why: #4 Chinese site |
50 'http://www.sina.com.cn/', | 50 'http://www.sina.com.cn/', |
51 # Why: #5 Chinese site | 51 # Why: #5 Chinese site |
52 # pylint: disable=C0301 | 52 # pylint: disable=line-too-long |
53 'http://www.google.com.hk/#q=%E9%82%84%E6%8F%90%E4%BE%9B&fp=c44d333e710cb4
80', | 53 'http://www.google.com.hk/#q=%E9%82%84%E6%8F%90%E4%BE%9B&fp=c44d333e710cb4
80', |
54 'http://udn.com/NEWS/mainpage.shtml', | 54 'http://udn.com/NEWS/mainpage.shtml', |
55 'http://ruten.com.tw/' | 55 'http://ruten.com.tw/' |
56 ] | 56 ] |
57 | 57 |
58 for url in urls_list: | 58 for url in urls_list: |
59 self.AddStory(IntlJaZhPage(url, self)) | 59 self.AddStory(IntlJaZhPage(url, self)) |
OLD | NEW |