File: utf-8-lone-surrogate.html

package info (click to toggle)
firefox-esr 115.15.0esr-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,659,216 kB
  • sloc: cpp: 6,676,686; javascript: 5,690,965; ansic: 3,328,546; python: 1,120,594; asm: 397,163; xml: 180,531; java: 178,838; sh: 68,930; makefile: 20,999; perl: 12,595; objc: 12,561; yacc: 4,583; cs: 3,846; pascal: 2,840; lex: 1,720; ruby: 1,079; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 54; csh: 10
file content (31 lines) | stat: -rw-r--r-- 1,336 bytes parent folder | download | duplicates (28)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<html>
<head>
    <meta http-equiv="Content-Security-Policy" content="script-src 'self' 'nonce-abc' 'sha256-YJSaNEZFStZqU2Mp2EttwhcP2aT9lnDvexn+BM2HfKo=';">
    <script src='/resources/testharness.js'></script>
    <script src='/resources/testharnessreport.js'></script>
</head>
<body>
    <script nonce="abc">
      var t = async_test("Should convert the script contents to UTF-8 before hashing");
      var count = 0;
      var script_ran = function() {
        // if both blocks run the tests is succsssful
        if (++count == 2) t.done();
      }
      window.addEventListener("securitypolicyviolation", t.unreached_func("Should not have fired a spv"));

      // Insert a script element that contains the U+FFFD replacement character
      var scr1 = document.createElement('script');
      scr1.text ="//\uFFFD\nscript_ran();";
      document.body.appendChild(scr1);

      // Insert a script element that contains a surrogate character but it otherwise
      // entirely identical to the previously inserted one, the surrogate should be
      // be converted to U+FFFD when converting to UTF-8 so it should have the
      // same hash as the one inserted before
      var scr2 = document.createElement('script');
      scr2.text ="//\uD801\nscript_ran();";
      document.body.appendChild(scr2);
    </script>
</body>
</html>