Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 2 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /infrastructure/testharness/lone-surrogates.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<title>test behaviour with lone surrogates</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => assert_true(true), "passing test with lone surrogate \uD800 in name");
test(() => assert_true(false), "failing test with lone surrogate \uD800 in name");
test(() => assert_true(true, "lone \uD800 surrogate"), "passing test with lone surrogate in assert");
test(() => assert_true(false, "lone \uD800 surrogate"), "failing test with lone surrogate in assert");
</script>