1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
add_task(function* () {
yield setLinks("0,1,2,3,4,5,6,7,8");
setPinnedLinks("");
yield* addNewTabPageTab();
yield* checkGrid("0,1,2,3,4,5,6,7,8");
yield* simulateExternalDrop(1);
yield* checkGrid("0,99p,1,2,3,4,5,6,7");
yield blockCell(1);
yield* checkGrid("0,1,2,3,4,5,6,7,8");
yield* simulateExternalDrop(1);
yield* checkGrid("0,99p,1,2,3,4,5,6,7");
// Simulate a restart and force the next about:newtab
// instance to read its data from the storage again.
NewTabUtils.blockedLinks.resetCache();
// Update all open pages, e.g. preloaded ones.
NewTabUtils.allPages.update();
yield* addNewTabPageTab();
yield* checkGrid("0,99p,1,2,3,4,5,6,7");
yield blockCell(1);
yield* checkGrid("0,1,2,3,4,5,6,7,8");
});
|