Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(501)

Side by Side Diff: LayoutTests/netinfo/unregister-during-event.html

Issue 291203002: Adds NetInfo v3 Web API to Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@netinfo1
Patch Set: Comment typo Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <head>
3 <script src="../resources/js-test.js"></script>
4 <script src="resources/netinfo_common.js"></script>
5 </head>
6 <body>
7 <script>
8
9 description("Tests that it's okay to unregister the event listener while handlin g the event.");
10
11 shouldBe('typeof window.internals.observeGC', '"function"',
12 'this test requires window.internals');
13
14 var otherHandler = function(e) {
15 if (connection.type != initialType)
16 testFailed("The connection type did not revert.");
17 finishJSTest();
18 };
19
20 var handler = function(e) {
21 if (connection.type != newConnectionType)
22 testFailed("The connection type did not change.");
23 connection.removeEventListener('typechange', handler);
24 connection.addEventListener('typechange', otherHandler);
25 internals.setNetworkConnectionInfo(initialType);
26 };
27
28 connection.addEventListener('typechange', handler);
29 internals.setNetworkConnectionInfo(newConnectionType);
30
31 </script>
32 </body>
33 </html>
OLDNEW
« no previous file with comments | « LayoutTests/netinfo/resources/netinfo_common.js ('k') | LayoutTests/netinfo/unregister-during-event-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698