WebCore/manual-tests/load-deferrer-script-element.html
changeset 0 4f2f89ce4247
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WebCore/manual-tests/load-deferrer-script-element.html	Fri Sep 17 09:02:29 2010 +0300
@@ -0,0 +1,44 @@
+<html>
+<head>
+<script>
+function log(message)
+{
+    document.getElementById("result").innerHTML += message + "<br>";
+}
+
+function loadJSFile(){
+    var s = document.createElement('script')
+    s.setAttribute("type", "text/javascript")
+    s.setAttribute("src", "resources/load-deferrer-script-element.js")
+
+    document.getElementsByTagName("head")[0].appendChild(s);
+}
+
+jsLoaded = false;
+runningModal = false;
+
+// This line will load external script into memory.
+loadJSFile();
+
+function runModal()
+{
+    jsLoaded = true;
+    loadJSFile();
+ 
+    runningModal = true;
+    alert("Scripts should not be running in the background!");
+    runningModal = false;
+}
+</script>
+</head>
+ 
+<body>
+    
+<p>This tests the bug https://bugs.webkit.org/show_bug.cgi?id=38910.
+Click the button, wait 5 seconds and close it.
+The test passes if no error messages show up in the page!</p>
+<input id="button" type="button" value="click me" onclick="runModal()"/>
+<p id="result"></p>
+
+</body>
+</html>