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

Unified Diff: net/data/proxy_resolver_v8_unittest/bindings.js

Issue 333006: Add three of the six extensions to PAC that Internet Explorer supports. ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: address more of wtc's comments Created 11 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: net/data/proxy_resolver_v8_unittest/bindings.js
===================================================================
--- net/data/proxy_resolver_v8_unittest/bindings.js (revision 29974)
+++ net/data/proxy_resolver_v8_unittest/bindings.js (working copy)
@@ -35,10 +35,17 @@
alert(e);
}
- // Call myIpAddress() with wonky arguments
+ // Call myIpAddress() with wonky arguments
myIpAddress(null);
myIpAddress(null, null);
+ // Call myIpAddressEx() correctly (no arguments).
+ myIpAddressEx();
+
+ // Call dnsResolveEx() (note that isResolvableEx() implicity calls it.)
+ isResolvableEx("is_resolvable");
+ dnsResolveEx("foobar");
+
return "DIRECT";
}

Powered by Google App Engine
This is Rietveld 408576698