OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
3 * | 3 * |
4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
8 * | 8 * |
9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 26 matching lines...) Expand all Loading... |
37 } | 37 } |
38 | 38 |
39 RenderMeter::~RenderMeter() | 39 RenderMeter::~RenderMeter() |
40 { | 40 { |
41 } | 41 } |
42 | 42 |
43 HTMLMeterElement* RenderMeter::meterElement() const | 43 HTMLMeterElement* RenderMeter::meterElement() const |
44 { | 44 { |
45 ASSERT(node()); | 45 ASSERT(node()); |
46 | 46 |
47 if (node()->hasTagName(meterTag)) | 47 if (isHTMLMeterElement(*node())) |
48 return toHTMLMeterElement(node()); | 48 return toHTMLMeterElement(node()); |
49 | 49 |
50 ASSERT(node()->shadowHost()); | 50 ASSERT(node()->shadowHost()); |
51 return toHTMLMeterElement(node()->shadowHost()); | 51 return toHTMLMeterElement(node()->shadowHost()); |
52 } | 52 } |
53 | 53 |
54 void RenderMeter::updateLogicalWidth() | 54 void RenderMeter::updateLogicalWidth() |
55 { | 55 { |
56 RenderBox::updateLogicalWidth(); | 56 RenderBox::updateLogicalWidth(); |
57 | 57 |
(...skipping 18 matching lines...) Expand all Loading... |
76 { | 76 { |
77 return meterElement()->valueRatio(); | 77 return meterElement()->valueRatio(); |
78 } | 78 } |
79 | 79 |
80 void RenderMeter::updateFromElement() | 80 void RenderMeter::updateFromElement() |
81 { | 81 { |
82 repaint(); | 82 repaint(); |
83 } | 83 } |
84 | 84 |
85 } // namespace WebCore | 85 } // namespace WebCore |
OLD | NEW |