https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 6787a82def57b8e2ec25dc0300231d97bc5ea593 authored by Jeff Walden on 19 November 2019, 04:55:39 UTC
Bug 1596544 - intl_ValidateAndCanonicalizeUnicodeExtensionType should ignore the second |option| argument until it's needed to report an error. r=anba
Tip revision: 6787a82
surrogates-2.html
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>Bug xxxx</title>
<style>
p {
  width:0;
}
.bmp {
  color: green;
}
.supp {
  color: blue;
}
</style>
</head>
<body>
Line-breaking in the green (BMP) and blue (supplementary-plane) examples should match.
<p class="bmp">abcdef&#x2018;&#x6587;&#x2019;abcdef</p>
<p class="supp">abcdef&#x2018;&#x2000B;&#x2019;abcdef</p>
</body>
</html>
back to top