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

Side by Side Diff: third_party/WebKit/Source/core/layout/LayoutTableSection.h

Issue 2727093002: Account for perspective and preserve-3d in mapToVisualRectInAncestorSpace (Closed)
Patch Set: none Created 3 years, 9 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, 2013 Apple Inc. All rights 7 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2013 Apple Inc. All rights
8 * reserved. 8 * reserved.
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 bool foregroundIsKnownToBeOpaqueInRect(const LayoutRect&, 315 bool foregroundIsKnownToBeOpaqueInRect(const LayoutRect&,
316 unsigned) const override { 316 unsigned) const override {
317 return false; 317 return false;
318 } 318 }
319 bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect&) const override { 319 bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect&) const override {
320 return false; 320 return false;
321 } 321 }
322 322
323 int paginationStrutForRow(LayoutTableRow*, LayoutUnit logicalOffset) const; 323 int paginationStrutForRow(LayoutTableRow*, LayoutUnit logicalOffset) const;
324 324
325 bool mapToVisualRectInAncestorSpace( 325 bool mapToVisualRectInAncestorSpaceInternal(
326 const LayoutBoxModelObject* ancestor, 326 const LayoutBoxModelObject* ancestor,
327 LayoutRect&, 327 TransformState&,
328 VisualRectFlags = DefaultVisualRectFlags) const override; 328 VisualRectFlags = DefaultVisualRectFlags) const override;
329 329
330 bool isRepeatingHeaderGroup() const; 330 bool isRepeatingHeaderGroup() const;
331 331
332 void layout() override; 332 void layout() override;
333 333
334 protected: 334 protected:
335 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override; 335 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override;
336 bool nodeAtPoint(HitTestResult&, 336 bool nodeAtPoint(HitTestResult&,
337 const HitTestLocation& locationInContainer, 337 const HitTestLocation& locationInContainer,
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 // The use is to disable a painting optimization where we just paint the 475 // The use is to disable a painting optimization where we just paint the
476 // invalidated cells. 476 // invalidated cells.
477 bool m_hasMultipleCellLevels; 477 bool m_hasMultipleCellLevels;
478 }; 478 };
479 479
480 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutTableSection, isTableSection()); 480 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutTableSection, isTableSection());
481 481
482 } // namespace blink 482 } // namespace blink
483 483
484 #endif // LayoutTableSection_h 484 #endif // LayoutTableSection_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutObject.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutTableSection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698