[Webkit-unassigned] [Bug 99324] Web Inspector: Scripts for dynamically added script elememnts are not shown in sources panel.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Oct 15 07:30:17 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=99324





--- Comment #1 from Vsevolod Vlasov <vsevik at chromium.org>  2012-10-15 07:31:05 PST ---
Scripts added with

var scriptElement = document.createElement("script");
scriptElement.src = url;
document.head.appendChild(scriptElement);
Are not shown if inspector is opened after the script was loaded.

var scriptElement = document.createElement("script");
scriptElement.textContent = script;
document.head.appendChild(scriptElement);
are not shown at all.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list