| 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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 { | 330 { |
| 331 // Skip the supportsFocus check in HTMLElement. | 331 // Skip the supportsFocus check in HTMLElement. |
| 332 return Element::tabIndex(); | 332 return Element::tabIndex(); |
| 333 } | 333 } |
| 334 | 334 |
| 335 AtomicString HTMLAnchorElement::target() const | 335 AtomicString HTMLAnchorElement::target() const |
| 336 { | 336 { |
| 337 return getAttribute(targetAttr); | 337 return getAttribute(targetAttr); |
| 338 } | 338 } |
| 339 | 339 |
| 340 void HTMLAnchorElement::setText(const String& text) | |
| 341 { | |
| 342 setTextContent(text); | |
| 343 } | |
| 344 | |
| 345 String HTMLAnchorElement::text() | |
| 346 { | |
| 347 return innerText(); | |
| 348 } | |
| 349 | |
| 350 bool HTMLAnchorElement::isLiveLink() const | 340 bool HTMLAnchorElement::isLiveLink() const |
| 351 { | 341 { |
| 352 return isLink() && !rendererIsEditable(); | 342 return isLink() && !rendererIsEditable(); |
| 353 } | 343 } |
| 354 | 344 |
| 355 void HTMLAnchorElement::sendPings(const KURL& destinationURL) | 345 void HTMLAnchorElement::sendPings(const KURL& destinationURL) |
| 356 { | 346 { |
| 357 const AtomicString& pingValue = getAttribute(pingAttr); | 347 const AtomicString& pingValue = getAttribute(pingAttr); |
| 358 if (pingValue.isNull() || !document().settings() || !document().settings()->
hyperlinkAuditingEnabled()) | 348 if (pingValue.isNull() || !document().settings() || !document().settings()->
hyperlinkAuditingEnabled()) |
| 359 return; | 349 return; |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 preconnectToURL(url, motivation); | 576 preconnectToURL(url, motivation); |
| 587 m_hasIssuedPreconnect = true; | 577 m_hasIssuedPreconnect = true; |
| 588 } | 578 } |
| 589 | 579 |
| 590 bool HTMLAnchorElement::isInteractiveContent() const | 580 bool HTMLAnchorElement::isInteractiveContent() const |
| 591 { | 581 { |
| 592 return isLink(); | 582 return isLink(); |
| 593 } | 583 } |
| 594 | 584 |
| 595 } | 585 } |
| OLD | NEW |