scala-js-env-selenium icon indicating copy to clipboard operation
scala-js-env-selenium copied to clipboard

Error fails to terminate com receive loop

Open gzm0 opened this issue 8 years ago • 0 comments

Consider:

var x = true
window.setInterval(1000, function() {
  if (x) {
    x = false;
    throw "foo";
  }

  scalaJSCom.send("hello");
}

The message(s) "hello" should not be sent.

gzm0 avatar Sep 26 '17 16:09 gzm0