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

Side by Side Diff: Source/core/style/ComputedStyle.h

Issue 1212893005: Add position: sticky as supported position value when CSSStickyPosition is enabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Merge, convert pixel to ref tests, and address comments. Created 5 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
« no previous file with comments | « Source/core/paint/DeprecatedPaintLayer.cpp ('k') | Source/core/style/ComputedStyleConstants.h » ('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) 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 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 459
460 // Whether or not a positioned element requires normal flow x/y to be comput ed 460 // Whether or not a positioned element requires normal flow x/y to be comput ed
461 // to determine its position. 461 // to determine its position.
462 bool hasAutoLeftAndRight() const { return left().isAuto() && right().isAuto( ); } 462 bool hasAutoLeftAndRight() const { return left().isAuto() && right().isAuto( ); }
463 bool hasAutoTopAndBottom() const { return top().isAuto() && bottom().isAuto( ); } 463 bool hasAutoTopAndBottom() const { return top().isAuto() && bottom().isAuto( ); }
464 bool hasStaticInlinePosition(bool horizontal) const { return horizontal ? ha sAutoLeftAndRight() : hasAutoTopAndBottom(); } 464 bool hasStaticInlinePosition(bool horizontal) const { return horizontal ? ha sAutoLeftAndRight() : hasAutoTopAndBottom(); }
465 bool hasStaticBlockPosition(bool horizontal) const { return horizontal ? has AutoTopAndBottom() : hasAutoLeftAndRight(); } 465 bool hasStaticBlockPosition(bool horizontal) const { return horizontal ? has AutoTopAndBottom() : hasAutoLeftAndRight(); }
466 466
467 EPosition position() const { return static_cast<EPosition>(noninherited_flag s.position); } 467 EPosition position() const { return static_cast<EPosition>(noninherited_flag s.position); }
468 bool hasOutOfFlowPosition() const { return position() == AbsolutePosition || position() == FixedPosition; } 468 bool hasOutOfFlowPosition() const { return position() == AbsolutePosition || position() == FixedPosition; }
469 bool hasInFlowPosition() const { return position() == RelativePosition; } 469 bool hasInFlowPosition() const { return position() == RelativePosition || po sition() == StickyPosition; }
470 bool hasViewportConstrainedPosition() const { return position() == FixedPosi tion; } 470 bool hasViewportConstrainedPosition() const { return position() == FixedPosi tion; }
471 EFloat floating() const { return static_cast<EFloat>(noninherited_flags.floa ting); } 471 EFloat floating() const { return static_cast<EFloat>(noninherited_flags.floa ting); }
472 472
473 const Length& width() const { return m_box->width(); } 473 const Length& width() const { return m_box->width(); }
474 const Length& height() const { return m_box->height(); } 474 const Length& height() const { return m_box->height(); }
475 const Length& minWidth() const { return m_box->minWidth(); } 475 const Length& minWidth() const { return m_box->minWidth(); }
476 const Length& maxWidth() const { return m_box->maxWidth(); } 476 const Length& maxWidth() const { return m_box->maxWidth(); }
477 const Length& minHeight() const { return m_box->minHeight(); } 477 const Length& minHeight() const { return m_box->minHeight(); }
478 const Length& maxHeight() const { return m_box->maxHeight(); } 478 const Length& maxHeight() const { return m_box->maxHeight(); }
479 479
(...skipping 1455 matching lines...) Expand 10 before | Expand all | Expand 10 after
1935 } 1935 }
1936 1936
1937 inline bool ComputedStyle::hasPseudoElementStyle() const 1937 inline bool ComputedStyle::hasPseudoElementStyle() const
1938 { 1938 {
1939 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK; 1939 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK;
1940 } 1940 }
1941 1941
1942 } // namespace blink 1942 } // namespace blink
1943 1943
1944 #endif // ComputedStyle_h 1944 #endif // ComputedStyle_h
OLDNEW
« no previous file with comments | « Source/core/paint/DeprecatedPaintLayer.cpp ('k') | Source/core/style/ComputedStyleConstants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698