Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upMove script loading out of the HTML parser #3356
Closed
Labels
Comments
|
#1879 is related. |
mbrubeck
added a commit
to mbrubeck/servo
that referenced
this issue
Oct 18, 2014
This removes the old code for asyncronously loading scripts during HTML parsing and then executing them afterward. Fixes servo#3356.
mbrubeck
added a commit
to mbrubeck/servo
that referenced
this issue
Oct 21, 2014
This removes the old code for asyncronously loading scripts during HTML parsing and then executing them afterward. Fixes servo#3356.
mbrubeck
added a commit
to mbrubeck/servo
that referenced
this issue
Oct 27, 2014
This removes the old code for asyncronously loading scripts during HTML parsing and then executing them afterward. Fixes servo#3356.
mbrubeck
added a commit
to mbrubeck/servo
that referenced
this issue
Oct 29, 2014
This removes the old code for asyncronously loading scripts during HTML parsing and then executing them afterward. Fixes servo#3356.
bors-servo
pushed a commit
that referenced
this issue
Oct 29, 2014
mbrubeck
added a commit
to mbrubeck/servo
that referenced
this issue
Oct 29, 2014
This removes the old code for asyncronously loading scripts during HTML parsing and then executing them afterward. Fixes servo#3356.
mbrubeck
added a commit
to mbrubeck/servo
that referenced
this issue
Oct 29, 2014
This removes the old code for asyncronously loading scripts during HTML parsing and then executing them afterward. Fixes servo#3356.
bors-servo
pushed a commit
that referenced
this issue
Oct 29, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Similar to #1959, but for script. We need to make sure that dynamically-inserted
<script>elements are handled correctly, and that inline and remote scripts are loaded synchronously and in the correct order.