Christoffer Quist Adamsen
Christoffer Quist Adamsen
**Actual**: EventRacer does not report a race for the following simple example _if_`a.js` loads before `b.js`. **Expected**: A race on `window.status` is issued. **index.html**: ``` Loading window.status = 'Loading'; ```...
**Actual**: EventRacer does not report a race for the following simple example (similar to the example in Figure 4 in the WebRacer paper) _if_ `img.png` loads before `a.js`. **Expected**: A...
See #107.
The following program runs without errors. ``` function inc() {} var inc = function (i) { return i+1; }; ``` Running the jalangi-instrumented program yields an uncaught SyntaxError: "Uncaught SyntaxError:...
The following piece of code should print undefined, but prints the global object. ``` function f() { "use strict"; console.log(this); } f(); ```
File test.html: ``` Foo document.write(''); ``` Reproduce: ``` node src/js/commands/esnstrument_cli.js --inlineIID --inlineSource test.html ``` The string `''` becomes `''`, and thereby closes the enclosing `` tag.