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

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: Code changes to correct Test Expectation Created 5 years, 8 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..b8defb9dc6ec1e89427715842f35116ee2e1e7d9 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 = characterBullet;
break;
case TSCIRCLE:
- maskCharacter = whiteBullet;
+ maskCharacter = characterWhiteBullet;
break;
case TSSQUARE:
- maskCharacter = blackSquare;
+ maskCharacter = characterBlackSquare;
break;
}
if (maskCharacter) {

Powered by Google App Engine
This is Rietveld 408576698