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

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: Comment fixes 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
Index: Source/modules/accessibility/AXLayoutObject.cpp
diff --git a/Source/modules/accessibility/AXLayoutObject.cpp b/Source/modules/accessibility/AXLayoutObject.cpp
index d2e27e2bc40e14279eaf33a8472da5effdd28b17..4148bce14997dd53d2ffb023d8a7ddd32ee51639 100644
--- a/Source/modules/accessibility/AXLayoutObject.cpp
+++ b/Source/modules/accessibility/AXLayoutObject.cpp
@@ -827,13 +827,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) {

Powered by Google App Engine
This is Rietveld 408576698