summaryrefslogtreecommitdiffstats
path: root/WebCore/rendering/AutoTableLayout.cpp
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2009-10-21 14:12:09 +0100
committerSteve Block <steveblock@google.com>2009-10-22 16:36:53 +0100
commitbc7b84de3fd863c500a8169fd00dca3811cadbb3 (patch)
tree1d3d4b6c3c86a7e5d24ab942837279ee38a292e4 /WebCore/rendering/AutoTableLayout.cpp
parent1609212f285a36758049a60789693cc6f721fbc8 (diff)
downloadexternal_webkit-bc7b84de3fd863c500a8169fd00dca3811cadbb3.zip
external_webkit-bc7b84de3fd863c500a8169fd00dca3811cadbb3.tar.gz
external_webkit-bc7b84de3fd863c500a8169fd00dca3811cadbb3.tar.bz2
Makes a number of changes to ease future merging with and upstreaming to webkit.org.
- Fixes whitespace discrepancies between webkit.org and Android versions - Re-orders Android-specific changes to minimise the diff with webkit.org - Makes sure all Android-specific changes are appropriately guarded. - Fixes some Android-specific style problems None of these should introduce any functional changes for PLATFORM(ANDROID). Change-Id: Id27cf0b0e8682a7f29590c3fccae2d287b3630f1
Diffstat (limited to 'WebCore/rendering/AutoTableLayout.cpp')
-rw-r--r--WebCore/rendering/AutoTableLayout.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/rendering/AutoTableLayout.cpp b/WebCore/rendering/AutoTableLayout.cpp
index c37fba4..0e001c7 100644
--- a/WebCore/rendering/AutoTableLayout.cpp
+++ b/WebCore/rendering/AutoTableLayout.cpp
@@ -495,10 +495,10 @@ void AutoTableLayout::insertSpanCell(RenderTableCell *cell)
void AutoTableLayout::layout()
{
-#ifdef ANDROID_LAYOUT
+#ifdef ANDROID_LAYOUT
if (m_table->isSingleColumn())
return;
-#endif
+#endif
// table layout based on the values collected in the layout structure.
int tableWidth = m_table->width() - m_table->bordersPaddingAndSpacing();
int available = tableWidth;