Re: [integrity]: latency tradeoffs

> I *think* that Javascript is parsed incrementally at least and
> possibility incrementally executed. However, you would have to ask
> Adam Barth or Eric Seidel to be sure r.e. WebKit and Blink.

Oh, interesting. That would have to be very limited, though, right? JS
is not really designed for that when you can have something like:

function foo() { alert(1); }
foo();
function foo() {alert(2); }

...and have that display "2".

/mz

Received on Wednesday, 15 January 2014 19:41:41 UTC