OLD | NEW |
| (Empty) |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 /* | |
6 "pageSets" is a list of lists. | |
7 - Before each sublist: | |
8 Run chrome.browingData.remove and close the connections. | |
9 - Before each url in a sublist: | |
10 Close the connections. | |
11 */ | |
12 var pageSets = [ | |
13 ["http://superfastpageload/web-page-replay-generate-200"], | |
14 | |
15 ["http://cruises.orbitz.com/results.do?wdos=3&places=ALL&days=ALL&Month=ALL&
dd=ALL&d=NaN%2FNaN%2FNaN&d2=NaN%2FNaN%2FNaN&fd=2&shoppingZipCode=Zip+Code&Search
.x=29&Search.y=6&Search=Search&c=ALL&v=ALL&porttype=E&SType=P&ptype=c&type=c&p=A
LL&SType=A&clp=1&sort=7&IncludeSeniorRates=false&IncludeAlumniRates=false&Alumni
CruiseId=false", | |
16 "http://en.wikipedia.org/wiki/List_of_Pok%C3%A9mon", | |
17 "http://espn.go.com/", | |
18 "http://fashion.ebay.com/womens-clothing", | |
19 "http://news.baidu.com/", | |
20 "http://news.google.co.in", | |
21 "http://news.qq.com/", | |
22 "http://techcrunch.com/", | |
23 "http://techmeme.com/", | |
24 "http://twitter.com/BarackObama", | |
25 "http://www.weibo.com/yaochen", | |
26 "http://www.163.com/", | |
27 "http://www.amazon.com/Kindle-Fire-Amazon-Tablet/dp/B0051VVOB2/", | |
28 "http://www.bbc.co.uk/", | |
29 "http://www.cnet.com/", | |
30 "http://www.engadget.com/", | |
31 "http://www.flickr.com/photos/tags/flowers", | |
32 "http://www.google.com/search?q=dogs", | |
33 "http://www.imdb.com/", | |
34 "http://www.linkedin.com/in/jeffweiner08", | |
35 "http://www.msn.com/", | |
36 "http://www.nytimes.com/pages/sports/index.html", | |
37 "http://www.sina.com.cn/", | |
38 "http://www.taobao.com/", | |
39 "http://www.tudou.com/", | |
40 "http://www.yahoo.com/", | |
41 "http://www.yandex.ru/yandsearch?text=obama&lr=84", | |
42 "http://www.youtube.com", | |
43 "http://www.youtube.com/watch?v=xvN9Ri1GmuY&feature=g-sptl&cid=inp-hs-edt", | |
44 "https://plus.google.com/102518365620075109973/posts", | |
45 "https://plus.google.com/photos/102518365620075109973/albums/56304320749812
80145", | |
46 "https://www.tumblr.com/", | |
47 "https://www.facebook.com/barackobama", | |
48 ], | |
49 ]; | |
OLD | NEW |