You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var e = document.createElement("script");
e.text ="X";
After running this code via Env-js Rhino complains that X is not defined, it means that this created Script node is evaluated immediately even if it is not attached to document. That is wrong.
The text was updated successfully, but these errors were encountered:
We have in our script something like:
var e = document.createElement("script");
e.text ="X";
After running this code via Env-js Rhino complains that X is not defined, it means that this created Script node is evaluated immediately even if it is not attached to document. That is wrong.
The text was updated successfully, but these errors were encountered: