Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // This PAC script will throw an exception when accessing the | |
| 2 // "FindProxyForURL" property. | |
| 3 | |
| 4 function FindProxyForURLGetter() { | |
|
mmenke
2015/02/20 22:15:05
nit: f should be lowercase, I believe.
eroman
2015/02/20 22:24:23
In my mind "FindProxyForURL" is the target object,
| |
| 5 throw "crash!"; | |
| 6 } | |
| 7 | |
| 8 Object.defineProperty(this, "FindProxyForURL", {get: FindProxyForURLGetter}); | |
| OLD | NEW |