| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
| 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
| 7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) | 7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) |
| 8 * Copyright (C) 2009, 2010, 2011, 2012 Google Inc. All rights reserved. | 8 * Copyright (C) 2009, 2010, 2011, 2012 Google Inc. All rights reserved. |
| 9 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 9 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 10 * | 10 * |
| (...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 594 } | 594 } |
| 595 | 595 |
| 596 void InputType::altAttributeChanged() | 596 void InputType::altAttributeChanged() |
| 597 { | 597 { |
| 598 } | 598 } |
| 599 | 599 |
| 600 void InputType::srcAttributeChanged() | 600 void InputType::srcAttributeChanged() |
| 601 { | 601 { |
| 602 } | 602 } |
| 603 | 603 |
| 604 void InputType::willMoveToNewOwnerDocument() | |
| 605 { | |
| 606 } | |
| 607 | |
| 608 bool InputType::shouldRespectAlignAttribute() | 604 bool InputType::shouldRespectAlignAttribute() |
| 609 { | 605 { |
| 610 return false; | 606 return false; |
| 611 } | 607 } |
| 612 | 608 |
| 613 bool InputType::canChangeFromAnotherType() const | 609 bool InputType::canChangeFromAnotherType() const |
| 614 { | 610 { |
| 615 return true; | 611 return true; |
| 616 } | 612 } |
| 617 | 613 |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1135 | 1131 |
| 1136 void InputType::observeFeatureIfVisible(FeatureObserver::Feature feature) const | 1132 void InputType::observeFeatureIfVisible(FeatureObserver::Feature feature) const |
| 1137 { | 1133 { |
| 1138 if (RenderStyle* style = element()->renderStyle()) { | 1134 if (RenderStyle* style = element()->renderStyle()) { |
| 1139 if (style->visibility() != HIDDEN) | 1135 if (style->visibility() != HIDDEN) |
| 1140 FeatureObserver::observe(element()->document(), feature); | 1136 FeatureObserver::observe(element()->document(), feature); |
| 1141 } | 1137 } |
| 1142 } | 1138 } |
| 1143 | 1139 |
| 1144 } // namespace WebCore | 1140 } // namespace WebCore |
| OLD | NEW |