Index: Source/platform/LayoutTestSupport.cpp |
diff --git a/Source/platform/LayoutTestSupport.cpp b/Source/platform/LayoutTestSupport.cpp |
index 0c5ca0e0a0cbeb8a060754532519ee7e8a872aaf..680c33f00eb90c4cd6b1e98e029fab5ebfbd5c27 100644 |
--- a/Source/platform/LayoutTestSupport.cpp |
+++ b/Source/platform/LayoutTestSupport.cpp |
@@ -34,7 +34,7 @@ |
namespace WebCore { |
static bool s_isRunningLayoutTest = false; |
-static bool s_isFontSmoothingEnabled = false; |
+static bool s_isFontAntialiasingEnabled = false; |
bool isRunningLayoutTest() |
{ |
@@ -46,14 +46,14 @@ void setIsRunningLayoutTest(bool value) |
s_isRunningLayoutTest = value; |
} |
-bool isFontSmoothingEnabledForTest() |
+bool isFontAntialiasingEnabledForTest() |
{ |
- return s_isFontSmoothingEnabled; |
+ return s_isFontAntialiasingEnabled; |
} |
-void setFontSmoothingEnabledForTest(bool value) |
+void setFontAntialiasingEnabledForTest(bool value) |
{ |
- s_isFontSmoothingEnabled = value; |
+ s_isFontAntialiasingEnabled = value; |
} |
} // namespace WebCore |