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/style/ComputedStyle.h

Issue 1308273010: Adapt and reland old position sticky implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Make sticky vertical ref tests expectations not dependent on font size. Created 4 years, 8 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) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 // Whether or not a positioned element requires normal flow x/y to be comput ed 491 // Whether or not a positioned element requires normal flow x/y to be comput ed
492 // to determine its position. 492 // to determine its position.
493 bool hasAutoLeftAndRight() const { return left().isAuto() && right().isAuto( ); } 493 bool hasAutoLeftAndRight() const { return left().isAuto() && right().isAuto( ); }
494 bool hasAutoTopAndBottom() const { return top().isAuto() && bottom().isAuto( ); } 494 bool hasAutoTopAndBottom() const { return top().isAuto() && bottom().isAuto( ); }
495 bool hasStaticInlinePosition(bool horizontal) const { return horizontal ? ha sAutoLeftAndRight() : hasAutoTopAndBottom(); } 495 bool hasStaticInlinePosition(bool horizontal) const { return horizontal ? ha sAutoLeftAndRight() : hasAutoTopAndBottom(); }
496 bool hasStaticBlockPosition(bool horizontal) const { return horizontal ? has AutoTopAndBottom() : hasAutoLeftAndRight(); } 496 bool hasStaticBlockPosition(bool horizontal) const { return horizontal ? has AutoTopAndBottom() : hasAutoLeftAndRight(); }
497 497
498 EPosition position() const { return static_cast<EPosition>(noninherited_flag s.position); } 498 EPosition position() const { return static_cast<EPosition>(noninherited_flag s.position); }
499 bool hasOutOfFlowPosition() const { return position() == AbsolutePosition || position() == FixedPosition; } 499 bool hasOutOfFlowPosition() const { return position() == AbsolutePosition || position() == FixedPosition; }
500 bool hasInFlowPosition() const { return position() == RelativePosition || po sition() == StickyPosition; } 500 bool hasInFlowPosition() const { return position() == RelativePosition || po sition() == StickyPosition; }
501 bool hasViewportConstrainedPosition() const { return position() == FixedPosi tion; } 501 bool hasViewportConstrainedPosition() const { return position() == FixedPosi tion || position() == StickyPosition; }
502 EFloat floating() const { return static_cast<EFloat>(noninherited_flags.floa ting); } 502 EFloat floating() const { return static_cast<EFloat>(noninherited_flags.floa ting); }
503 503
504 const Length& width() const { return m_box->width(); } 504 const Length& width() const { return m_box->width(); }
505 const Length& height() const { return m_box->height(); } 505 const Length& height() const { return m_box->height(); }
506 const Length& minWidth() const { return m_box->minWidth(); } 506 const Length& minWidth() const { return m_box->minWidth(); }
507 const Length& maxWidth() const { return m_box->maxWidth(); } 507 const Length& maxWidth() const { return m_box->maxWidth(); }
508 const Length& minHeight() const { return m_box->minHeight(); } 508 const Length& minHeight() const { return m_box->minHeight(); }
509 const Length& maxHeight() const { return m_box->maxHeight(); } 509 const Length& maxHeight() const { return m_box->maxHeight(); }
510 510
511 const Length& logicalWidth() const { return isHorizontalWritingMode() ? widt h() : height(); } 511 const Length& logicalWidth() const { return isHorizontalWritingMode() ? widt h() : height(); }
(...skipping 1525 matching lines...) Expand 10 before | Expand all | Expand 10 after
2037 } 2037 }
2038 2038
2039 inline bool ComputedStyle::hasPseudoElementStyle() const 2039 inline bool ComputedStyle::hasPseudoElementStyle() const
2040 { 2040 {
2041 return noninherited_flags.pseudoBits & ElementPseudoIdMask; 2041 return noninherited_flags.pseudoBits & ElementPseudoIdMask;
2042 } 2042 }
2043 2043
2044 } // namespace blink 2044 } // namespace blink
2045 2045
2046 #endif // ComputedStyle_h 2046 #endif // ComputedStyle_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698