Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1442)

Unified Diff: Source/modules/accessibility/AXLayoutObject.cpp

Issue 1119663002: Making Unicode character names consistent (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase patch Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/style/ComputedStyle.cpp ('k') | Source/modules/indexeddb/IDBKeyPath.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXLayoutObject.cpp
diff --git a/Source/modules/accessibility/AXLayoutObject.cpp b/Source/modules/accessibility/AXLayoutObject.cpp
index 3d8974d5ffb1db4abef1dc8a9cac1a62d25c31df..cfda23a379a12d508c63be11f9c43dc8b6d5e1a4 100644
--- a/Source/modules/accessibility/AXLayoutObject.cpp
+++ b/Source/modules/accessibility/AXLayoutObject.cpp
@@ -870,13 +870,13 @@ String AXLayoutObject::text() const
case TSNONE:
break; // Fall through to the non-password branch.
case TSDISC:
- maskCharacter = bullet;
+ maskCharacter = bulletCharacter;
break;
case TSCIRCLE:
- maskCharacter = whiteBullet;
+ maskCharacter = whiteBulletCharacter;
break;
case TSSQUARE:
- maskCharacter = blackSquare;
+ maskCharacter = blackSquareCharacter;
break;
}
if (maskCharacter) {
« no previous file with comments | « Source/core/style/ComputedStyle.cpp ('k') | Source/modules/indexeddb/IDBKeyPath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698