Revision db4eb13c5d377bd2067613a9adca886c818aa1dc authored by Corey Farwell on 26 April 2016, 09:31:10 UTC, committed by Ms2ger on 26 April 2016, 09:31:10 UTC
https://github.com/whatwg/dom/commit/9e3ce67c7927d6642646a3d0c84fa6d8f7926cfa
1 parent d5a4c5b
Raw File
gbk-encoder.html
<!doctype html>
<meta charset=gbk> <!-- if the server overrides this, it is stupid, as this is a testsuite -->
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<div id=log></div>
<script>
 function encode(input, output, desc) {
   test(function() {
     var a = document.createElement("a") // <a> uses document encoding for URL's query
     a.href = "https://example.com/?" + input
     assert_equals(a.search.substr(1), output) // remove leading "?"
   }, "gbk encoder: " + desc)
 }

 encode("s", "s", "very basic")
 encode("\u20AC", "%80", "Euro")
 encode("\u4E02", "%81@", "character")
 encode("\uE4C6", "%A1@", "PUA")
 encode("\uE4C5", "%FE%FE", "PUA #2")
 encode("\ud83d\udca9", "%26%23128169%3B", "poo")
</script>
back to top