blob: e5f923671d4a070a95a1e766e782ec701d18e9c2 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/js-test.js"></script>
</head>
<body>
<span id="span">
<p id="description"></p>
<div id="console"></div>
<script>
description("This tests verifies that the test tools can handle a dangling surrogate character");
var danglingFirst = "\uD803";
var danglingSecond = "\uDC01";
shouldBe('danglingFirst', '"\uD803"');
shouldBe('danglingSecond', '"\uDC01"');
</script>
</body>
</html>