lone-surrogates.html (570B)
1 <!DOCTYPE HTML> 2 <title>test behaviour with lone surrogates</title> 3 <script src="/resources/testharness.js"></script> 4 <script src="/resources/testharnessreport.js"></script> 5 <script> 6 test(() => assert_true(true), "passing test with lone surrogate \uD800 in name"); 7 test(() => assert_true(false), "failing test with lone surrogate \uD800 in name"); 8 test(() => assert_true(true, "lone \uD800 surrogate"), "passing test with lone surrogate in assert"); 9 test(() => assert_true(false, "lone \uD800 surrogate"), "failing test with lone surrogate in assert"); 10 </script>