Home | History | Annotate | Download | only in rendering

Lines Matching refs:overflow

31 // There are two types of overflow: layout overflow (which is expected to be reachable via scrolling mechanisms) and
32 // visual overflow (which is not expected to be reachable via scrolling mechanisms).
34 // Layout overflow examples include other boxes that spill out of our box, For example, in the inline case a tall image
37 // Examples of visual overflow are shadows, text stroke (and eventually outline and border-image).
67 void setMinYLayoutOverflow(int overflow) { m_minYLayoutOverflow = overflow; }
68 void setMaxYLayoutOverflow(int overflow) { m_maxYLayoutOverflow = overflow; }
69 void setMinXLayoutOverflow(int overflow) { m_minXLayoutOverflow = overflow; }
70 void setMaxXLayoutOverflow(int overflow) { m_maxXLayoutOverflow = overflow; }
72 void setMinYVisualOverflow(int overflow) { m_minYVisualOverflow = overflow; }
73 void setMaxYVisualOverflow(int overflow) { m_maxYVisualOverflow = overflow; }
74 void setMinXVisualOverflow(int overflow) { m_minXVisualOverflow = overflow; }
75 void setMaxXVisualOverflow(int overflow) { m_maxXVisualOverflow = overflow; }