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

Unified Diff: third_party/WebKit/Source/core/layout/api/LineLayoutInline.h

Issue 2640143005: Support subpixel layout for borders. (Closed)
Patch Set: Rebaselined tests. Created 3 years, 10 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
Index: third_party/WebKit/Source/core/layout/api/LineLayoutInline.h
diff --git a/third_party/WebKit/Source/core/layout/api/LineLayoutInline.h b/third_party/WebKit/Source/core/layout/api/LineLayoutInline.h
index adbf92f20a8901a8b0733741aeb80801c61ac026..b01c05bade59aff183d6f661cc5f24ef53d6e5f1 100644
--- a/third_party/WebKit/Source/core/layout/api/LineLayoutInline.h
+++ b/third_party/WebKit/Source/core/layout/api/LineLayoutInline.h
@@ -39,9 +39,9 @@ class LineLayoutInline : public LineLayoutBoxModel {
LayoutUnit marginEnd() const { return toInline()->marginEnd(); }
- int borderStart() const { return toInline()->borderStart(); }
+ LayoutUnit borderStart() const { return toInline()->borderStart(); }
- int borderEnd() const { return toInline()->borderEnd(); }
+ LayoutUnit borderEnd() const { return toInline()->borderEnd(); }
LayoutUnit paddingStart() const { return toInline()->paddingStart(); }

Powered by Google App Engine
This is Rietveld 408576698