mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 21:31:04 +00:00
Bug 1428774 - Avoid surrogate math in HasRTLChars(). r=jfkthame
Behavior change: Certain unpaired high surrogates will result in the text being considered RTL where that wasn't the case before. MozReview-Commit-ID: JL7wiRjhslC --HG-- extra : rebase_source : ecd521a97be8908bb839aca02d624d86d5b0337f
This commit is contained in:
parent
7efbdaade9
commit
a710d83a47
@ -93,14 +93,11 @@ bool HasRTLChars(const char16_t* aText, uint32_t aLength)
|
||||
const char16_t* cp = aText;
|
||||
const char16_t* end = cp + aLength;
|
||||
while (cp < end) {
|
||||
uint32_t ch = *cp++;
|
||||
char16_t ch = *cp++;
|
||||
if (ch < mozilla::kMinRTLChar) {
|
||||
continue;
|
||||
}
|
||||
if (NS_IS_HIGH_SURROGATE(ch) && cp < end && NS_IS_LOW_SURROGATE(*cp)) {
|
||||
ch = SURROGATE_TO_UCS4(ch, *cp++);
|
||||
}
|
||||
if (UTF32_CHAR_IS_BIDI(ch) || IsBidiControlRTL(ch)) {
|
||||
if (UTF16_CODE_UNIT_IS_BIDI(ch) || IsBidiControlRTL(ch)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
@ -124863,6 +124863,30 @@
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/css-text/astral-bidi/adlam-anti-ref.html": [
|
||||
[
|
||||
"/css/css-text/astral-bidi/adlam-anti-ref.html",
|
||||
[
|
||||
[
|
||||
"/css/css-text/astral-bidi/adlam.html",
|
||||
"!="
|
||||
]
|
||||
],
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/css-text/astral-bidi/cypriot-anti-ref.html": [
|
||||
[
|
||||
"/css/css-text/astral-bidi/cypriot-anti-ref.html",
|
||||
[
|
||||
[
|
||||
"/css/css-text/astral-bidi/cypriot.html",
|
||||
"!="
|
||||
]
|
||||
],
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/css-text/i18n/css3-text-line-break-jazh-001.html": [
|
||||
[
|
||||
"/css/css-text/i18n/css3-text-line-break-jazh-001.html",
|
||||
@ -180977,6 +181001,30 @@
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/css-text/astral-bidi/adlam.html": [
|
||||
[
|
||||
"/css/css-text/astral-bidi/adlam.html",
|
||||
[
|
||||
[
|
||||
"/css/css-text/astral-bidi/adlam-ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/css-text/astral-bidi/cypriot.html": [
|
||||
[
|
||||
"/css/css-text/astral-bidi/cypriot.html",
|
||||
[
|
||||
[
|
||||
"/css/css-text/astral-bidi/cypriot-ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/css-transforms/2d-rotate-notref.html": [
|
||||
[
|
||||
"/css/css-transforms/2d-rotate-notref.html",
|
||||
@ -247352,6 +247400,26 @@
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/css-text/astral-bidi/adlam-ref.html": [
|
||||
[
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/css-text/astral-bidi/cypriot-ref.html": [
|
||||
[
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/css-text/astral-bidi/support/adlam.css": [
|
||||
[
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/css-text/astral-bidi/support/cypriot.css": [
|
||||
[
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/css-text/hanging-punctuation/reference/hanging-punctuation-allow-end-001-ref.xht": [
|
||||
[
|
||||
{}
|
||||
@ -257942,6 +258010,36 @@
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/fonts/noto/NotoSansAdlam-hinted/LICENSE_OFL.txt": [
|
||||
[
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/fonts/noto/NotoSansAdlam-hinted/NotoSansAdlam-Regular.ttf": [
|
||||
[
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/fonts/noto/NotoSansAdlam-hinted/README": [
|
||||
[
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/fonts/noto/NotoSansCypriot-hinted/LICENSE_OFL.txt": [
|
||||
[
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/fonts/noto/NotoSansCypriot-hinted/NotoSansCypriot-Regular.ttf": [
|
||||
[
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/fonts/noto/NotoSansCypriot-hinted/README": [
|
||||
[
|
||||
{}
|
||||
]
|
||||
],
|
||||
"css/geometry/OWNERS": [
|
||||
[
|
||||
{}
|
||||
@ -495810,6 +495908,38 @@
|
||||
"a9db9c3323d29904f9e631e48ddcd6c722e097a3",
|
||||
"support"
|
||||
],
|
||||
"css/css-text/astral-bidi/adlam-anti-ref.html": [
|
||||
"d288d3c927c1873f69c81886087e581de111f75d",
|
||||
"reftest"
|
||||
],
|
||||
"css/css-text/astral-bidi/adlam-ref.html": [
|
||||
"4cc3199ae52983d1bbbf07ba63dacdf1505f747c",
|
||||
"support"
|
||||
],
|
||||
"css/css-text/astral-bidi/adlam.html": [
|
||||
"72e9c9cc666f8fc1762a6621c0f05937ad413f33",
|
||||
"reftest_node"
|
||||
],
|
||||
"css/css-text/astral-bidi/cypriot-anti-ref.html": [
|
||||
"04d9e80edb3faeeafea19a7ee122fc61c09acca4",
|
||||
"reftest"
|
||||
],
|
||||
"css/css-text/astral-bidi/cypriot-ref.html": [
|
||||
"952516be0a292d4560fcc667f48f96a8c4e4d356",
|
||||
"support"
|
||||
],
|
||||
"css/css-text/astral-bidi/cypriot.html": [
|
||||
"b33812e2fd3e87fca52c430471ef12bc90539ad4",
|
||||
"reftest_node"
|
||||
],
|
||||
"css/css-text/astral-bidi/support/adlam.css": [
|
||||
"83d24d6c948fe4a68423b2892ff1e75c765ec98a",
|
||||
"support"
|
||||
],
|
||||
"css/css-text/astral-bidi/support/cypriot.css": [
|
||||
"0e32370ffc7e03a76dd32301ec9e25ee53e8bd51",
|
||||
"support"
|
||||
],
|
||||
"css/css-text/hanging-punctuation/hanging-punctuation-allow-end-001.xht": [
|
||||
"4f0a720f0b4d91d920ce2fb34ad97810cdd92ccd",
|
||||
"manual"
|
||||
@ -518698,6 +518828,30 @@
|
||||
"6f3884860a84b9b6e7524c84626638e303a14660",
|
||||
"support"
|
||||
],
|
||||
"css/fonts/noto/NotoSansAdlam-hinted/LICENSE_OFL.txt": [
|
||||
"ec660b17dff69058c2bbf122ca85ab83b920fce7",
|
||||
"support"
|
||||
],
|
||||
"css/fonts/noto/NotoSansAdlam-hinted/NotoSansAdlam-Regular.ttf": [
|
||||
"dea38de8b3affb6060e50e4727682ab3eff7b0c6",
|
||||
"support"
|
||||
],
|
||||
"css/fonts/noto/NotoSansAdlam-hinted/README": [
|
||||
"837f8d36a2d38637c424b878c7b068930a07c377",
|
||||
"support"
|
||||
],
|
||||
"css/fonts/noto/NotoSansCypriot-hinted/LICENSE_OFL.txt": [
|
||||
"ec660b17dff69058c2bbf122ca85ab83b920fce7",
|
||||
"support"
|
||||
],
|
||||
"css/fonts/noto/NotoSansCypriot-hinted/NotoSansCypriot-Regular.ttf": [
|
||||
"12a8cdf3af7376abf50426eae30d490c8f83f13e",
|
||||
"support"
|
||||
],
|
||||
"css/fonts/noto/NotoSansCypriot-hinted/README": [
|
||||
"837f8d36a2d38637c424b878c7b068930a07c377",
|
||||
"support"
|
||||
],
|
||||
"css/geometry/DOMMatrix-001.html": [
|
||||
"a8cfa83e572a766b61e4eae5946e7efb62e9eab7",
|
||||
"testharness"
|
||||
|
@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Adlam</title>
|
||||
<link href="support/adlam.css" rel="stylesheet">
|
||||
<link href="adlam.html" rel="mismatch">
|
||||
</head>
|
||||
<body>
|
||||
<p><bdo dir="ltr">𞤀𞤁𞤂𞤁𞤄</bdo></p>
|
||||
<p>U+1E900 U+1E901 U+1E902 U+1E901 U+1E904</p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,12 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Adlam</title>
|
||||
<link href="support/adlam.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<p><bdo dir="rtl">𞤀𞤁𞤂𞤁𞤄</bdo></p>
|
||||
<p>U+1E900 U+1E901 U+1E902 U+1E901 U+1E904</p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Adlam</title>
|
||||
<link href="support/adlam.css" rel="stylesheet">
|
||||
<link href="adlam-ref.html" rel="match">
|
||||
<link href="https://www.unicode.org/roadmaps/smp/" rel="help">
|
||||
<meta name="assert" content="Upper astral RTL range is treated as RTL.">
|
||||
</head>
|
||||
<body>
|
||||
<p>𞤀𞤁𞤂𞤁𞤄</p>
|
||||
<p>U+1E900 U+1E901 U+1E902 U+1E901 U+1E904</p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Cypriot</title>
|
||||
<link href="support/cypriot.css" rel="stylesheet">
|
||||
<link href="cypriot.html" rel="mismatch">
|
||||
</head>
|
||||
<body>
|
||||
<p><bdo dir="ltr">𐠀𐠰𐠦𐠡𐠩</bdo></p>
|
||||
<p>U+10800 U+10830 U+10826 U+10821 U+10829</p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,12 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Cypriot</title>
|
||||
<link href="support/cypriot.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<p><bdo dir="rtl">𐠀𐠰𐠦𐠡𐠩</bdo></p>
|
||||
<p>U+10800 U+10830 U+10826 U+10821 U+10829</p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Cypriot</title>
|
||||
<link href="support/cypriot.css" rel="stylesheet">
|
||||
<link href="cypriot-ref.html" rel="match">
|
||||
<link href="https://www.unicode.org/roadmaps/smp/" rel="help">
|
||||
<meta name="assert" content="Lower astral RTL range is treated as RTL.">
|
||||
</head>
|
||||
<body>
|
||||
<p>𐠀𐠰𐠦𐠡𐠩</p>
|
||||
<p>U+10800 U+10830 U+10826 U+10821 U+10829</p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,9 @@
|
||||
@font-face {
|
||||
font-family: "Noto Sans Adlam";
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
src: url("../../../fonts/noto/NotoSansAdlam-hinted/NotoSansAdlam-Regular.ttf") format("truetype");
|
||||
}
|
||||
p {
|
||||
font-family: "Noto Sans Adlam";
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
@font-face {
|
||||
font-family: "Noto Sans Cypriot";
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
src: url("../../../fonts/noto/NotoSansCypriot-hinted/NotoSansCypriot-Regular.ttf") format("truetype");
|
||||
}
|
||||
p {
|
||||
font-family: "Noto Sans Cypriot";
|
||||
}
|
@ -0,0 +1,92 @@
|
||||
This Font Software is licensed under the SIL Open Font License,
|
||||
Version 1.1.
|
||||
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font
|
||||
creation efforts of academic and linguistic communities, and to
|
||||
provide a free and open framework in which fonts may be shared and
|
||||
improved in partnership with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply to
|
||||
any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software
|
||||
components as distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to,
|
||||
deleting, or substituting -- in part or in whole -- any of the
|
||||
components of the Original Version, by changing formats or by porting
|
||||
the Font Software to a new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed,
|
||||
modify, redistribute, and sell modified and unmodified copies of the
|
||||
Font Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components, in
|
||||
Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the
|
||||
corresponding Copyright Holder. This restriction only applies to the
|
||||
primary font name as presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created using
|
||||
the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
Binary file not shown.
@ -0,0 +1,11 @@
|
||||
This package is part of the noto project. Visit
|
||||
google.com/get/noto for more information.
|
||||
|
||||
Built on 2017-10-24 from the following noto repository:
|
||||
-----
|
||||
Repo: noto-fonts
|
||||
Tag: v2017-10-24-phase3-second-cleanup
|
||||
Date: 2017-10-24 12:10:34 GMT
|
||||
Commit: 8ef14e6c606a7a0ef3943b9ca01fd49445620d79
|
||||
|
||||
Remove some files that aren't for release.
|
@ -0,0 +1,92 @@
|
||||
This Font Software is licensed under the SIL Open Font License,
|
||||
Version 1.1.
|
||||
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font
|
||||
creation efforts of academic and linguistic communities, and to
|
||||
provide a free and open framework in which fonts may be shared and
|
||||
improved in partnership with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply to
|
||||
any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software
|
||||
components as distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to,
|
||||
deleting, or substituting -- in part or in whole -- any of the
|
||||
components of the Original Version, by changing formats or by porting
|
||||
the Font Software to a new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed,
|
||||
modify, redistribute, and sell modified and unmodified copies of the
|
||||
Font Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components, in
|
||||
Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the
|
||||
corresponding Copyright Holder. This restriction only applies to the
|
||||
primary font name as presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created using
|
||||
the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
Binary file not shown.
@ -0,0 +1,11 @@
|
||||
This package is part of the noto project. Visit
|
||||
google.com/get/noto for more information.
|
||||
|
||||
Built on 2017-10-24 from the following noto repository:
|
||||
-----
|
||||
Repo: noto-fonts
|
||||
Tag: v2017-10-24-phase3-second-cleanup
|
||||
Date: 2017-10-24 12:10:34 GMT
|
||||
Commit: 8ef14e6c606a7a0ef3943b9ca01fd49445620d79
|
||||
|
||||
Remove some files that aren't for release.
|
Loading…
Reference in New Issue
Block a user