summaryrefslogtreecommitdiff
path: root/core/fxcrt/css/cfx_csssyntaxparser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/fxcrt/css/cfx_csssyntaxparser.cpp')
-rw-r--r--core/fxcrt/css/cfx_csssyntaxparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcrt/css/cfx_csssyntaxparser.cpp b/core/fxcrt/css/cfx_csssyntaxparser.cpp
index 30352a5a20..fea951f1ec 100644
--- a/core/fxcrt/css/cfx_csssyntaxparser.cpp
+++ b/core/fxcrt/css/cfx_csssyntaxparser.cpp
@@ -18,7 +18,7 @@
namespace {
bool IsSelectorStart(wchar_t wch) {
- return wch == '.' || wch == '#' || wch == '*' || FXSYS_iswalpha(wch);
+ return wch == '.' || wch == '#' || wch == '*' || FXSYS_iswASCIIalpha(wch);
}
} // namespace