Cong Liu
Cong Liu
Exposed the APIs for setting AUMID from native app windows.
fixed nwjs/nw.js#5163
The original logic in `default.js` is duplicated to the implementation in `nw.Window.open`, which could easily bring inconsistancy or bugs. e.g. in nwjs/nw.js#5247, `x` and `y` parameters are missed in the...
test case: test/sanity/app-open-event fixed nwjs/nw.js#2068
``` javascript var htmlparser = require('htmlparser'), util = require('util'), handler = new htmlparser.DefaultHandler(function(err, dom){}), parser = new htmlparser.Parser(handler), rawHtml = 'Heading1'; parser.parseComplete(rawHtml); console.log(util.inspect(handler.dom, false, null)); ``` This piece of code...
fixed #100
##### Checklist - [ ] `make -j4 test` (UNIX), or `vcbuild test nosign` (Windows) passes - [ ] tests and/or benchmarks are included - [ ] documentation is changed or...
Compiled scripts from Node were set to weak, which caused the script object in V8 being GCed shortly. Hence links of the script shown in console of DevTools become invalid...