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

Unified Diff: third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainterTest.cpp

Issue 2162033003: Include any text shadow bounds in SVG text cull rect. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix approximation. Created 4 years, 5 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/paint/SVGInlineTextBoxPainter.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/paint/SVGInlineTextBoxPainterTest.cpp
diff --git a/third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainterTest.cpp b/third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainterTest.cpp
index b969b56420f1ddd6b0d4a4f82a26007bc5ce0afd..c2f92b58c612bb0eda8d913556281e4547dfb68e 100644
--- a/third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainterTest.cpp
+++ b/third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainterTest.cpp
@@ -71,24 +71,25 @@ static void assertTextDrawingEquals(const DrawingDisplayItem* drawingDisplayItem
ASSERT_EQ(str, static_cast<const InlineTextBox*>(&drawingDisplayItem->client())->text());
}
-const static int kAllowedPixelDelta = 8;
+bool ApproximatelyEqual(int a, int b, int delta)
+{
+ return abs(a - b) <= delta;
+}
+
+const static int kPixelDelta = 4;
+
+#define EXPECT_RECT_EQ(expected, actual) \
+do { \
+ const FloatRect& actualRect = actual; \
+ EXPECT_TRUE(ApproximatelyEqual(expected.x(), actualRect.x(), kPixelDelta)) << "actual: " << actualRect.x() << ", expected: " << expected.x(); \
+ EXPECT_TRUE(ApproximatelyEqual(expected.y(), actualRect.y(), kPixelDelta)) << "actual: " << actualRect.y() << ", expected: " << expected.y(); \
+ EXPECT_TRUE(ApproximatelyEqual(expected.width(), actualRect.width(), kPixelDelta)) << "actual: " << actualRect.width() << ", expected: " << expected.width(); \
+ EXPECT_TRUE(ApproximatelyEqual(expected.height(), actualRect.height(), kPixelDelta)) << "actual: " << actualRect.height() << ", expected: " << expected.height(); \
+} while (false)
-static void assertCullRectEquals(const DrawingDisplayItem* drawingDisplayItem, const IntRect& expectedRect)
+static IntRect cullRectFromDrawing(const DrawingDisplayItem& drawingDisplayItem)
{
- // Text metrics can vary slightly across platforms, so we allow for a small pixel difference.
- IntRect outerRect(expectedRect);
- int delta = kAllowedPixelDelta / 2;
- outerRect.expand(IntRectOutsets(delta, delta, delta, delta));
- IntRect innerRect(expectedRect);
- // Rect contains is inclusive of edge, so shrink by one extra pixel.
- int contractDelta = -delta - 1;
- innerRect.expand(IntRectOutsets(contractDelta, contractDelta, contractDelta, contractDelta));
-
- IntRect actualRect(IntRect(drawingDisplayItem->picture()->cullRect()));
- ASSERT_TRUE(outerRect.contains(actualRect) && !innerRect.contains(actualRect))
- << "Cull rect not approximately equal [expected=("
- << expectedRect.x() << "," << expectedRect.y() << " " << expectedRect.width() << "x" << expectedRect.height() << "), actual=("
- << actualRect.x() << "," << actualRect.y() << " " << actualRect.width() << "x" << actualRect.height() << ")].";
+ return IntRect(drawingDisplayItem.picture()->cullRect());
}
TEST_F(SVGInlineTextBoxPainterTest, TextCullRect_DefaultWritingMode)
@@ -101,14 +102,14 @@ TEST_F(SVGInlineTextBoxPainterTest, TextCullRect_DefaultWritingMode)
const DrawingDisplayItem* drawingDisplayItem = getDrawingForSVGTextById("target");
assertTextDrawingEquals(drawingDisplayItem, "x");
- assertCullRectEquals(drawingDisplayItem, IntRect(50, 3, 15, 33));
+ EXPECT_RECT_EQ(IntRect(50, 3, 15, 33), cullRectFromDrawing(*drawingDisplayItem));
selectAllText();
document().view()->updateAllLifecyclePhases();
drawingDisplayItem = getDrawingForSVGTextById("target");
assertTextDrawingEquals(drawingDisplayItem, "x");
- assertCullRectEquals(drawingDisplayItem, IntRect(50, 3, 15, 33));
+ EXPECT_RECT_EQ(IntRect(50, 3, 15, 33), cullRectFromDrawing(*drawingDisplayItem));
}
TEST_F(SVGInlineTextBoxPainterTest, TextCullRect_WritingModeTopToBottom)
@@ -121,7 +122,7 @@ TEST_F(SVGInlineTextBoxPainterTest, TextCullRect_WritingModeTopToBottom)
const DrawingDisplayItem* drawingDisplayItem = getDrawingForSVGTextById("target");
assertTextDrawingEquals(drawingDisplayItem, "x");
- assertCullRectEquals(drawingDisplayItem, IntRect(33, 30, 34, 15));
+ EXPECT_RECT_EQ(IntRect(33, 30, 34, 15), cullRectFromDrawing(*drawingDisplayItem));
selectAllText();
document().view()->updateAllLifecyclePhases();
@@ -131,7 +132,20 @@ TEST_F(SVGInlineTextBoxPainterTest, TextCullRect_WritingModeTopToBottom)
// enclosingIntRect() in SVGInlineTextBox::localSelectionRect().
drawingDisplayItem = getDrawingForSVGTextById("target");
assertTextDrawingEquals(drawingDisplayItem, "x");
- assertCullRectEquals(drawingDisplayItem, IntRect(33, 30, 34, 16));
+ EXPECT_RECT_EQ(IntRect(33, 30, 34, 16), cullRectFromDrawing(*drawingDisplayItem));
+}
+
+TEST_F(SVGInlineTextBoxPainterTest, TextCullRect_TextShadow)
+{
+ setBodyInnerHTML(
+ "<svg width='400px' height='400px' font-family='Arial' font-size='30'>"
+ "<text id='target' x='50' y='30' style='text-shadow: 200px 200px 5px red'>x</text>"
+ "</svg>");
+ document().view()->updateAllLifecyclePhases();
+
+ const DrawingDisplayItem* drawingDisplayItem = getDrawingForSVGTextById("target");
+ assertTextDrawingEquals(drawingDisplayItem, "x");
+ EXPECT_RECT_EQ(IntRect(50, 3, 220, 238), cullRectFromDrawing(*drawingDisplayItem));
}
} // namespace
« no previous file with comments | « third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainter.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698