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

Unified Diff: third_party/WebKit/Source/core/layout/TextAutosizerTest.cpp

Issue 2330513002: Temporarily stop honoring text-size-adjust as it breaks accessibility (Closed)
Patch Set: Created 4 years, 3 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 | « third_party/WebKit/Source/core/layout/TextAutosizer.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/TextAutosizerTest.cpp
diff --git a/third_party/WebKit/Source/core/layout/TextAutosizerTest.cpp b/third_party/WebKit/Source/core/layout/TextAutosizerTest.cpp
index 2fbec8bc8e971b70218c8b879bd439bb44640ac1..d8604198d5721a4295a8dd44b4940879f28e4b0d 100644
--- a/third_party/WebKit/Source/core/layout/TextAutosizerTest.cpp
+++ b/third_party/WebKit/Source/core/layout/TextAutosizerTest.cpp
@@ -39,7 +39,7 @@ TEST_F(TextAutosizerTest, SimpleParagraph)
EXPECT_FLOAT_EQ(40.f, autosized->layoutObject()->style()->computedFontSize());
}
-TEST_F(TextAutosizerTest, TextSizeAdjustDisablesAutosizing)
+TEST_F(TextAutosizerTest, DISABLED_TextSizeAdjustDisablesAutosizing)
{
setBodyInnerHTML(
"<meta name='viewport' content='width=800'>"
@@ -82,7 +82,7 @@ TEST_F(TextAutosizerTest, TextSizeAdjustDisablesAutosizing)
EXPECT_FLOAT_EQ(16.f, textSizeAdjust100->style()->computedFontSize());
}
-TEST_F(TextAutosizerTest, ParagraphWithChangingTextSizeAdjustment)
+TEST_F(TextAutosizerTest, DISABLED_ParagraphWithChangingTextSizeAdjustment)
{
setBodyInnerHTML(
"<meta name='viewport' content='width=800'>"
@@ -126,7 +126,7 @@ TEST_F(TextAutosizerTest, ParagraphWithChangingTextSizeAdjustment)
EXPECT_FLOAT_EQ(40.f, autosizedDiv->layoutObject()->style()->computedFontSize());
}
-TEST_F(TextAutosizerTest, ZeroTextSizeAdjustment)
+TEST_F(TextAutosizerTest, DISABLED_ZeroTextSizeAdjustment)
{
setBodyInnerHTML(
"<meta name='viewport' content='width=800'>"
@@ -191,7 +191,7 @@ TEST_F(TextAutosizerTest, TextSizeAdjustmentPixelUnits)
EXPECT_FLOAT_EQ(40.f, textSizeAdjustPixels->style()->computedFontSize());
}
-TEST_F(TextAutosizerTest, NestedTextSizeAdjust)
+TEST_F(TextAutosizerTest, DISABLED_NestedTextSizeAdjust)
{
setBodyInnerHTML(
"<meta name='viewport' content='width=800'>"
@@ -225,7 +225,7 @@ TEST_F(TextAutosizerTest, NestedTextSizeAdjust)
EXPECT_FLOAT_EQ(8.48f, textSizeAdjustB->style()->computedFontSize());
}
-TEST_F(TextAutosizerTest, PrefixedTextSizeAdjustIsAlias)
+TEST_F(TextAutosizerTest, DISABLED_PrefixedTextSizeAdjustIsAlias)
{
setBodyInnerHTML(
"<meta name='viewport' content='width=800'>"
« no previous file with comments | « third_party/WebKit/Source/core/layout/TextAutosizer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698