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) 2000 Simon Hausmann <hausmann@kde.org> | 4 * (C) 2000 Simon Hausmann <hausmann@kde.org> |
5 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. | 5 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. |
6 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 } | 340 } |
341 | 341 |
342 String HTMLAnchorElement::input() const | 342 String HTMLAnchorElement::input() const |
343 { | 343 { |
344 return getAttribute(hrefAttr); | 344 return getAttribute(hrefAttr); |
345 } | 345 } |
346 | 346 |
347 void HTMLAnchorElement::setInput(const String& value) | 347 void HTMLAnchorElement::setInput(const String& value) |
348 { | 348 { |
349 setHref(AtomicString(value)); | 349 setHref(AtomicString(value)); |
| 350 DOMURLUtils::update(this); |
350 } | 351 } |
351 | 352 |
352 bool HTMLAnchorElement::hasRel(uint32_t relation) const | 353 bool HTMLAnchorElement::hasRel(uint32_t relation) const |
353 { | 354 { |
354 return m_linkRelations & relation; | 355 return m_linkRelations & relation; |
355 } | 356 } |
356 | 357 |
357 void HTMLAnchorElement::setRel(const AtomicString& value) | 358 void HTMLAnchorElement::setRel(const AtomicString& value) |
358 { | 359 { |
359 m_linkRelations = 0; | 360 m_linkRelations = 0; |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
689 preconnectToURL(url, motivation); | 690 preconnectToURL(url, motivation); |
690 m_hasIssuedPreconnect = true; | 691 m_hasIssuedPreconnect = true; |
691 } | 692 } |
692 | 693 |
693 bool HTMLAnchorElement::isInteractiveContent() const | 694 bool HTMLAnchorElement::isInteractiveContent() const |
694 { | 695 { |
695 return true; | 696 return true; |
696 } | 697 } |
697 | 698 |
698 } | 699 } |
OLD | NEW |