Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /encoding/legacy-mb-tchinese/big5/big5-encode-form-errors-misc.html?1-1000 - WPT Dashboard Interop Dashboard
- /encoding/legacy-mb-tchinese/big5/big5-encode-form-errors-misc.html?1001-2000 - WPT Dashboard Interop Dashboard
- /encoding/legacy-mb-tchinese/big5/big5-encode-form-errors-misc.html?2001-3000 - WPT Dashboard Interop Dashboard
- /encoding/legacy-mb-tchinese/big5/big5-encode-form-errors-misc.html?3001-last - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="big5"> <!-- test breaks if the server overrides this -->
<title>Big5 encoding errors (form, misc)</title>
<meta name="timeout" content="long">
<meta name="variant" content="?1-1000">
<meta name="variant" content="?1001-2000">
<meta name="variant" content="?2001-3000">
<meta name="variant" content="?3001-last">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/subset-tests.js"></script>
<script src="big5_index.js"></script>
<script src="big5-encoder.js"></script>
<link rel="author" title="Richard Ishida" href="mailto:ishida@w3.org">
<meta name="assert" content="The browser produces percent-escaped character references for a URL produced by a form when encoding miscellaneous characters that are not in the big5 encoding.">
<style>
iframe { display:none }
form { display:none }
</style>
</head>
<body>
<div id="log"></div>
<script src="../../resources/ranges.js"></script>
<script>
var errors = true;
var encoder = big5Encoder;
var ranges = rangesMisc;
var separator = ",";
function expect(result, codepoint) {
return "%26%23" + codepoint + "%3B";
}
// Overwrite normalizeStr
function normalizeStr(str) {
return str;
}
</script>
<script src="../../resources/encode-form-common.js"></script>
</body>
</html>