summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/encoding/script-in-head.html
diff options
context:
space:
mode:
Diffstat (limited to 'LayoutTests/fast/encoding/script-in-head.html')
-rw-r--r--LayoutTests/fast/encoding/script-in-head.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/LayoutTests/fast/encoding/script-in-head.html b/LayoutTests/fast/encoding/script-in-head.html
new file mode 100644
index 0000000..d6dc1ca
--- /dev/null
+++ b/LayoutTests/fast/encoding/script-in-head.html
@@ -0,0 +1,30 @@
+<!-- temp --><script language="JavaScript" type="text/JavaScript">
+if (window.layoutTestController) {
+ layoutTestController.dumpAsText();
+ layoutTestController.waitUntilDone();
+}
+document.write ('<SCR' + 'IPT>' +
+
+ 'setTimeout(function () {' +
+ <!-- The letters CCE below are Cyrillic, so we do test that the encoding is correct. -->
+ <!-- We also take an opportunity to test that this weirdly located script actually executes. -->
+ 'document.getElementById("result").innerHTML="SUóóåSS";' +
+ 'if (window.layoutTestController)' +
+ 'layoutTestController.notifyDone();' +
+ '}, 0);' +
+'</SCR' + 'IPT>');document.close(); </script>
+<!-- /temp --><!--HEADER-->
+
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=koi8-r">
+</head>
+<body>
+<p>Test for <a href="http://bugs.webkit.org/show_bug.cgi?id=12165">bug 12165</a>:
+text encoding problem at jn.sapo.pt</p>
+<p>Should see a success message below.</p>
+<div id="result"></div>
+</body>
+</html>