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

Unified Diff: third_party/WebKit/Source/core/style/BorderData.h

Issue 2640143005: Support subpixel layout for borders. (Closed)
Patch Set: Created 3 years, 11 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/style/BorderData.h
diff --git a/third_party/WebKit/Source/core/style/BorderData.h b/third_party/WebKit/Source/core/style/BorderData.h
index fb7ada516f6acaaa67677c4bf38a6f306416d7b8..31f620b7129e5b0e0654d99693499699c093bea8 100644
--- a/third_party/WebKit/Source/core/style/BorderData.h
+++ b/third_party/WebKit/Source/core/style/BorderData.h
@@ -63,27 +63,27 @@ class BorderData {
return false;
}
- int borderLeftWidth() const {
+ float borderLeftWidth() const {
if (m_left.style() == BorderStyleNone ||
m_left.style() == BorderStyleHidden)
return 0;
return m_left.width();
}
- int borderRightWidth() const {
+ float borderRightWidth() const {
if (m_right.style() == BorderStyleNone ||
m_right.style() == BorderStyleHidden)
return 0;
return m_right.width();
}
- int borderTopWidth() const {
+ float borderTopWidth() const {
if (m_top.style() == BorderStyleNone || m_top.style() == BorderStyleHidden)
return 0;
return m_top.width();
}
- int borderBottomWidth() const {
+ float borderBottomWidth() const {
if (m_bottom.style() == BorderStyleNone ||
m_bottom.style() == BorderStyleHidden)
return 0;

Powered by Google App Engine
This is Rietveld 408576698