summaryrefslogtreecommitdiffstats
path: root/dom/encoding/test/test_in_lk_TLD.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /dom/encoding/test/test_in_lk_TLD.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/encoding/test/test_in_lk_TLD.html')
-rw-r--r--dom/encoding/test/test_in_lk_TLD.html56
1 files changed, 56 insertions, 0 deletions
diff --git a/dom/encoding/test/test_in_lk_TLD.html b/dom/encoding/test/test_in_lk_TLD.html
new file mode 100644
index 0000000000..c4238f3b82
--- /dev/null
+++ b/dom/encoding/test/test_in_lk_TLD.html
@@ -0,0 +1,56 @@
+<!DOCTYPE HTML>
+<html>
+<!--
+https://bugzilla.mozilla.org/show_bug.cgi?id=1603712
+-->
+<head>
+ <meta charset="utf-8">
+ <title>Test for Bug 1603712</title>
+ <script src="/tests/SimpleTest/SimpleTest.js"></script>
+ <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
+ <script type="application/javascript">
+
+ /** Test for Bug 1603712 **/
+
+ SimpleTest.waitForExplicitFinish();
+
+ var tlds = [
+ {'tld': 'in', 'expectedEncoding': 'Shift_JIS', 'file': 'file_in_lk_TLD.html'},
+ {'tld': 'lk', 'expectedEncoding': 'Shift_JIS', 'file': 'file_in_lk_TLD.html'},
+ {'tld': 'co.jp', 'expectedEncoding': 'windows-1251', 'file': 'file_jp_TLD.html'},
+ ];
+
+ var iframe = null;
+
+ var current = null;
+
+ function runTest() {
+ iframe = document.getElementsByTagName("iframe")[0];
+ window.addEventListener("message", next);
+ next(null);
+ }
+
+ function next(event) {
+ if (event) {
+ is(event.data, current.expectedEncoding, "Got bad encoding for " + current.tld);
+ }
+ current = tlds.shift();
+ if (!current) {
+ SimpleTest.finish();
+ return;
+ }
+ iframe.src = "http://example." + current.tld + "/tests/dom/encoding/test/" + current.file;
+ }
+
+ </script>
+</head>
+<body onload="runTest();">
+<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1603712">Mozilla Bug 1603712</a>
+<p id="display"></p>
+<div id="content" style="display: none">
+<iframe></iframe>
+</div>
+<pre id="test">
+</pre>
+</body>
+</html>