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

Side by Side Diff: Source/core/rendering/RenderTable.h

Issue 134473008: Remove CSS regions support, keeping a bare minimum to support "region-based" multicol. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase master Created 6 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 unified diff | Download patch
« no previous file with comments | « Source/core/rendering/RenderReplica.cpp ('k') | Source/core/rendering/RenderTable.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org)
3 * (C) 1997 Torben Weis (weis@kde.org) 3 * (C) 1997 Torben Weis (weis@kde.org)
4 * (C) 1998 Waldo Bastian (bastian@kde.org) 4 * (C) 1998 Waldo Bastian (bastian@kde.org)
5 * (C) 1999 Lars Knoll (knoll@kde.org) 5 * (C) 1999 Lars Knoll (knoll@kde.org)
6 * (C) 1999 Antti Koivisto (koivisto@kde.org) 6 * (C) 1999 Antti Koivisto (koivisto@kde.org)
7 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2010 Apple Inc. All rights reserv ed. 7 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2010 Apple Inc. All rights reserv ed.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 void invalidateCachedColumns(); 299 void invalidateCachedColumns();
300 300
301 virtual RenderBlock* firstLineBlock() const OVERRIDE; 301 virtual RenderBlock* firstLineBlock() const OVERRIDE;
302 virtual void updateFirstLetter() OVERRIDE; 302 virtual void updateFirstLetter() OVERRIDE;
303 303
304 virtual void updateLogicalWidth() OVERRIDE; 304 virtual void updateLogicalWidth() OVERRIDE;
305 305
306 LayoutUnit convertStyleLogicalWidthToComputedWidth(const Length& styleLogica lWidth, LayoutUnit availableWidth); 306 LayoutUnit convertStyleLogicalWidthToComputedWidth(const Length& styleLogica lWidth, LayoutUnit availableWidth);
307 LayoutUnit convertStyleLogicalHeightToComputedHeight(const Length& styleLogi calHeight); 307 LayoutUnit convertStyleLogicalHeightToComputedHeight(const Length& styleLogi calHeight);
308 308
309 virtual LayoutRect overflowClipRect(const LayoutPoint& location, RenderRegio n*, OverlayScrollbarSizeRelevancy = IgnoreOverlayScrollbarSize) OVERRIDE; 309 virtual LayoutRect overflowClipRect(const LayoutPoint& location, OverlayScro llbarSizeRelevancy = IgnoreOverlayScrollbarSize) OVERRIDE;
310 310
311 virtual void addOverflowFromChildren() OVERRIDE; 311 virtual void addOverflowFromChildren() OVERRIDE;
312 312
313 void subtractCaptionRect(LayoutRect&) const; 313 void subtractCaptionRect(LayoutRect&) const;
314 314
315 void recalcCollapsedBorders(); 315 void recalcCollapsedBorders();
316 void recalcSections() const; 316 void recalcSections() const;
317 void layoutCaption(RenderTableCaption*); 317 void layoutCaption(RenderTableCaption*);
318 318
319 void distributeExtraLogicalHeight(int extraLogicalHeight); 319 void distributeExtraLogicalHeight(int extraLogicalHeight);
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 if (m_firstBody) 362 if (m_firstBody)
363 return m_firstBody; 363 return m_firstBody;
364 return m_foot; 364 return m_foot;
365 } 365 }
366 366
367 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderTable, isTable()); 367 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderTable, isTable());
368 368
369 } // namespace WebCore 369 } // namespace WebCore
370 370
371 #endif // RenderTable_h 371 #endif // RenderTable_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderReplica.cpp ('k') | Source/core/rendering/RenderTable.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698