summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/encoding/meta-in-script.html
diff options
context:
space:
mode:
Diffstat (limited to 'LayoutTests/fast/encoding/meta-in-script.html')
-rw-r--r--LayoutTests/fast/encoding/meta-in-script.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/LayoutTests/fast/encoding/meta-in-script.html b/LayoutTests/fast/encoding/meta-in-script.html
new file mode 100644
index 0000000..523788f
--- /dev/null
+++ b/LayoutTests/fast/encoding/meta-in-script.html
@@ -0,0 +1,26 @@
+<html>
+<head>
+<script>
+<meta charset=koi8-r>
+</script>
+<meta charset=windows-1255>
+</head>
+<body>
+<pre id="log"></pre>
+<script>
+function log(message)
+{
+ document.getElementById("log").innerText += message + "\n";
+}
+
+if (window.layoutTestController)
+ layoutTestController.dumpAsText();
+
+if (document.inputEncoding == "windows-1255")
+ log("PASS: " + document.inputEncoding);
+else
+ log("FAIL: " + document.inputEncoding);
+</script>
+<p>This test passes if the charset is parsed from the meta tag outside the script.
+</body>
+</html>