EventRacer icon indicating copy to clipboard operation
EventRacer copied to clipboard

Misses simple race involving asynchronous script loading

Open christofferqa opened this issue 8 years ago • 0 comments

Actual: EventRacer does not report a race for the following simple example ifa.js loads before b.js. Expected: A race on window.status is issued.

index.html:

<output id="o">Loading</output>
<script>
window.status = 'Loading';
</script>
<script src="a.js" async></script>
<script src="b.js" async></script>

a.js:

window.status = 'Loaded';

b.js:

document.getElementById("o").value = window.status;

christofferqa avatar Apr 09 '16 00:04 christofferqa