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

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

Issue 10807056: Revert 117339 - CSS 2.1 failure: inline-table-001 fails (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1180/
Patch Set: Created 8 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 unified diff | Download patch
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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 virtual void removeChild(RenderObject* oldChild); 238 virtual void removeChild(RenderObject* oldChild);
239 239
240 virtual void paint(PaintInfo&, const LayoutPoint&); 240 virtual void paint(PaintInfo&, const LayoutPoint&);
241 virtual void paintObject(PaintInfo&, const LayoutPoint&); 241 virtual void paintObject(PaintInfo&, const LayoutPoint&);
242 virtual void paintBoxDecorations(PaintInfo&, const LayoutPoint&); 242 virtual void paintBoxDecorations(PaintInfo&, const LayoutPoint&);
243 virtual void paintMask(PaintInfo&, const LayoutPoint&); 243 virtual void paintMask(PaintInfo&, const LayoutPoint&);
244 virtual void layout(); 244 virtual void layout();
245 virtual void computePreferredLogicalWidths(); 245 virtual void computePreferredLogicalWidths();
246 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const Layout Point& pointInContainer, const LayoutPoint& accumulatedOffset, HitTestAction); 246 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const Layout Point& pointInContainer, const LayoutPoint& accumulatedOffset, HitTestAction);
247 247
248 virtual LayoutUnit firstLineBoxBaseline() const OVERRIDE; 248 virtual LayoutUnit firstLineBoxBaseline() const;
249 virtual LayoutUnit lastLineBoxBaseline() const OVERRIDE;
250 249
251 virtual RenderBlock* firstLineBlock() const; 250 virtual RenderBlock* firstLineBlock() const;
252 virtual void updateFirstLetter(); 251 virtual void updateFirstLetter();
253 252
254 virtual void setCellLogicalWidths(); 253 virtual void setCellLogicalWidths();
255 254
256 virtual void computeLogicalWidth(); 255 virtual void computeLogicalWidth();
257 256
258 LayoutUnit convertStyleLogicalWidthToComputedWidth(const Length& styleLogica lWidth, LayoutUnit availableWidth); 257 LayoutUnit convertStyleLogicalWidthToComputedWidth(const Length& styleLogica lWidth, LayoutUnit availableWidth);
259 258
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 ASSERT(!object || object->isTable()); 312 ASSERT(!object || object->isTable());
314 return static_cast<const RenderTable*>(object); 313 return static_cast<const RenderTable*>(object);
315 } 314 }
316 315
317 // This will catch anyone doing an unnecessary cast. 316 // This will catch anyone doing an unnecessary cast.
318 void toRenderTable(const RenderTable*); 317 void toRenderTable(const RenderTable*);
319 318
320 } // namespace WebCore 319 } // namespace WebCore
321 320
322 #endif // RenderTable_h 321 #endif // RenderTable_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698