1
0
Fork 0
firefox/dom/html/test/test_bug615595.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

48 lines
2.6 KiB
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=615595
-->
<head>
<meta charset="utf-8">
<title>Test for Bug 615595</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"
charset="UTF-8"></script>
<link charset="UTF-8" rel="stylesheet" type="text/css"
href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=615595">Mozilla Bug 615595</a>
<p id="display">
<form method='get' target="target" id="f" action="noSuchPage.html">
<input type='text' name='data' value='aïe' />
<input type='hidden' name='_charset_' />
</form>
<iframe name="target" id="t"></iframe>
</p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 615595 **/
SimpleTest.waitForExplicitFinish();
addLoadEvent(function() {
is(document.characterSet, "UTF-16BE");
$("t").onload = function() {
is(this.contentWindow.location.href,
window.location.href.replace("test_bug615595.html",
"noSuchPage.html?data=a%C3%AFe&_charset_=UTF-8"),
"Should have correct data and charset should be claimed to be UTF-8");
SimpleTest.finish();
}
$("f").submit();
})
</script>
</pre>
</body>
</html>