| 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 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 namespace WebCore { | 37 namespace WebCore { |
| 38 | 38 |
| 39 using namespace HTMLNames; | 39 using namespace HTMLNames; |
| 40 | 40 |
| 41 const double HTMLProgressElement::IndeterminatePosition = -1; | 41 const double HTMLProgressElement::IndeterminatePosition = -1; |
| 42 const double HTMLProgressElement::InvalidPosition = -2; | 42 const double HTMLProgressElement::InvalidPosition = -2; |
| 43 | 43 |
| 44 HTMLProgressElement::HTMLProgressElement(const QualifiedName& tagName, const Han
dle<Document>& document) | 44 HTMLProgressElement::HTMLProgressElement(const QualifiedName& tagName, const Han
dle<Document>& document) |
| 45 : LabelableElement(tagName, document) | 45 : LabelableElement(tagName, document) |
| 46 , m_value(0) | |
| 47 { | 46 { |
| 48 ASSERT(hasTagName(progressTag)); | 47 ASSERT(hasTagName(progressTag)); |
| 49 ScriptWrappable::init(this); | 48 ScriptWrappable::init(this); |
| 50 } | 49 } |
| 51 | 50 |
| 52 HTMLProgressElement::~HTMLProgressElement() | 51 HTMLProgressElement::~HTMLProgressElement() |
| 53 { | 52 { |
| 54 } | 53 } |
| 55 | 54 |
| 56 Result<HTMLProgressElement> HTMLProgressElement::create(const QualifiedName& tag
Name, const Handle<Document>& document) | 55 Result<HTMLProgressElement> HTMLProgressElement::create(const QualifiedName& tag
Name, const Handle<Document>& document) |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 return !isDeterminate(); | 173 return !isDeterminate(); |
| 175 } | 174 } |
| 176 | 175 |
| 177 void HTMLProgressElement::accept(Visitor* visitor) const | 176 void HTMLProgressElement::accept(Visitor* visitor) const |
| 178 { | 177 { |
| 179 visitor->visit(m_value); | 178 visitor->visit(m_value); |
| 180 LabelableElement::accept(visitor); | 179 LabelableElement::accept(visitor); |
| 181 } | 180 } |
| 182 | 181 |
| 183 } // namespace | 182 } // namespace |
| OLD | NEW |