Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Side by Side Diff: Source/WebCore/html/InputType.cpp

Issue 12573007: Merge 145423 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1410/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/WebCore/html/InputType.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/WebCore/html/InputType.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698