| Index: third_party/WebKit/Source/core/layout/TextAutosizer.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/TextAutosizer.cpp b/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
|
| index 81a6ef9e8343e7b3cead5c3da32d812496fe9245..29e952712eb89a2880a147c8efdbe8276cc1325b 100644
|
| --- a/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
|
| @@ -988,7 +988,9 @@ void TextAutosizer::applyMultiplier(LayoutObject* layoutObject, float multiplier
|
| {
|
| ASSERT(layoutObject);
|
| ComputedStyle& currentStyle = layoutObject->mutableStyleRef();
|
| - if (!currentStyle.getTextSizeAdjust().isAuto()) {
|
| + // TODO(pdr): text-size-adjust is temporarily not honored due to
|
| + // breaking accessibility settings. See: https://645269.
|
| + if (false && !currentStyle.getTextSizeAdjust().isAuto()) {
|
| multiplier = currentStyle.getTextSizeAdjust().multiplier();
|
| } else if (multiplier < 1) {
|
| // Unlike text-size-adjust, the text autosizer should only inflate fonts.
|
|
|