| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 56 |
| 57 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes
tLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAct
ion) OVERRIDE FINAL; | 57 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes
tLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAct
ion) OVERRIDE FINAL; |
| 58 | 58 |
| 59 virtual void autoscroll(const IntPoint&) OVERRIDE FINAL; | 59 virtual void autoscroll(const IntPoint&) OVERRIDE FINAL; |
| 60 | 60 |
| 61 // Subclassed to forward to our inner div. | 61 // Subclassed to forward to our inner div. |
| 62 virtual LayoutUnit scrollLeft() const OVERRIDE FINAL; | 62 virtual LayoutUnit scrollLeft() const OVERRIDE FINAL; |
| 63 virtual LayoutUnit scrollTop() const OVERRIDE FINAL; | 63 virtual LayoutUnit scrollTop() const OVERRIDE FINAL; |
| 64 virtual LayoutUnit scrollWidth() const OVERRIDE FINAL; | 64 virtual LayoutUnit scrollWidth() const OVERRIDE FINAL; |
| 65 virtual LayoutUnit scrollHeight() const OVERRIDE FINAL; | 65 virtual LayoutUnit scrollHeight() const OVERRIDE FINAL; |
| 66 virtual void setScrollLeft(LayoutUnit) OVERRIDE FINAL; | 66 virtual void setScrollLeft(LayoutUnit, ScrollBehavior) OVERRIDE FINAL; |
| 67 virtual void setScrollTop(LayoutUnit) OVERRIDE FINAL; | 67 virtual void setScrollTop(LayoutUnit, ScrollBehavior) OVERRIDE FINAL; |
| 68 | 68 |
| 69 int textBlockWidth() const; | 69 int textBlockWidth() const; |
| 70 virtual float getAvgCharWidth(AtomicString family) OVERRIDE FINAL; | 70 virtual float getAvgCharWidth(AtomicString family) OVERRIDE FINAL; |
| 71 virtual LayoutUnit preferredContentLogicalWidth(float charWidth) const OVERR
IDE FINAL; | 71 virtual LayoutUnit preferredContentLogicalWidth(float charWidth) const OVERR
IDE FINAL; |
| 72 virtual LayoutUnit computeControlLogicalHeight(LayoutUnit lineHeight, Layout
Unit nonContentHeight) const OVERRIDE; | 72 virtual LayoutUnit computeControlLogicalHeight(LayoutUnit lineHeight, Layout
Unit nonContentHeight) const OVERRIDE; |
| 73 | 73 |
| 74 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) OV
ERRIDE FINAL; | 74 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) OV
ERRIDE FINAL; |
| 75 | 75 |
| 76 bool textShouldBeTruncated() const; | 76 bool textShouldBeTruncated() const; |
| 77 | 77 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 96 return orientation == HorizontalScrollbar; | 96 return orientation == HorizontalScrollbar; |
| 97 } | 97 } |
| 98 virtual bool scrollsOverflowX() const OVERRIDE { return hasOverflowClip(); } | 98 virtual bool scrollsOverflowX() const OVERRIDE { return hasOverflowClip(); } |
| 99 virtual bool scrollsOverflowY() const OVERRIDE { return false; } | 99 virtual bool scrollsOverflowY() const OVERRIDE { return false; } |
| 100 virtual bool hasLineIfEmpty() const OVERRIDE { return true; } | 100 virtual bool hasLineIfEmpty() const OVERRIDE { return true; } |
| 101 }; | 101 }; |
| 102 | 102 |
| 103 } | 103 } |
| 104 | 104 |
| 105 #endif | 105 #endif |
| OLD | NEW |