https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 0411120510cdf715e349d407a44b834c54662162 authored by Anne van Kesteren on 09 April 2018, 14:18:58 UTC
Test self.event in workers
Tip revision: 0411120
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", "&%23128169;", "poo")
</script>
back to top