In this snippet
Lets assume th
No. The presence of a src
attribute will cause the descendant nodes of the element to be ignored.
If you had two script elements, then the second script would still always execute second because script elements are blocking.
Only if you had two script elements and the first had defer or async attributes could the second execute before the first.