| 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 0a1eaf60333bcd2e879a16c411c23d74b1f54bc2..5fa4132aebff94f1c0cfece478a5b10fd8520d44 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.
|
|
|