| 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) 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 * Copyright (C) 2009 Rob Buis (rwlbuis@gmail.com) | 6 * Copyright (C) 2009 Rob Buis (rwlbuis@gmail.com) |
| 7 * Copyright (C) 2011 Google Inc. All rights reserved. | 7 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 DOMSettableTokenList* HTMLLinkElement::sizes() const | 513 DOMSettableTokenList* HTMLLinkElement::sizes() const |
| 514 { | 514 { |
| 515 return m_sizes.get(); | 515 return m_sizes.get(); |
| 516 } | 516 } |
| 517 | 517 |
| 518 void HTMLLinkElement::setSizes(const String& value) | 518 void HTMLLinkElement::setSizes(const String& value) |
| 519 { | 519 { |
| 520 m_sizes->setValue(value); | 520 m_sizes->setValue(value); |
| 521 } | 521 } |
| 522 | 522 |
| 523 #if ENABLE(MICRODATA) | |
| 524 String HTMLLinkElement::itemValueText() const | |
| 525 { | |
| 526 return getURLAttribute(hrefAttr); | |
| 527 } | |
| 528 | |
| 529 void HTMLLinkElement::setItemValueText(const String& value, ExceptionCode&) | |
| 530 { | |
| 531 setAttribute(hrefAttr, value); | |
| 532 } | |
| 533 #endif | |
| 534 | |
| 535 } // namespace WebCore | 523 } // namespace WebCore |
| OLD | NEW |