| 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, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2010 Apple Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 descriptionFromLegacyTag = document().viewportDescription(); | 423 descriptionFromLegacyTag = document().viewportDescription(); |
| 424 | 424 |
| 425 getViewportDescriptionFromContentAttribute( | 425 getViewportDescriptionFromContentAttribute( |
| 426 content, descriptionFromLegacyTag, &document(), | 426 content, descriptionFromLegacyTag, &document(), |
| 427 document().settings() && | 427 document().settings() && |
| 428 document().settings()->getViewportMetaZeroValuesQuirk()); | 428 document().settings()->getViewportMetaZeroValuesQuirk()); |
| 429 | 429 |
| 430 document().setViewportDescription(descriptionFromLegacyTag); | 430 document().setViewportDescription(descriptionFromLegacyTag); |
| 431 } | 431 } |
| 432 | 432 |
| 433 void HTMLMetaElement::parseAttribute(const QualifiedName& name, | 433 void HTMLMetaElement::parseAttribute( |
| 434 const AtomicString& oldValue, | 434 const AttributeModificationParams& params) { |
| 435 const AtomicString& value) { | 435 if (params.name == http_equivAttr || params.name == contentAttr) { |
| 436 if (name == http_equivAttr || name == contentAttr) { | |
| 437 process(); | 436 process(); |
| 438 return; | 437 return; |
| 439 } | 438 } |
| 440 | 439 |
| 441 if (name != nameAttr) | 440 if (params.name != nameAttr) |
| 442 HTMLElement::parseAttribute(name, oldValue, value); | 441 HTMLElement::parseAttribute(params); |
| 443 } | 442 } |
| 444 | 443 |
| 445 Node::InsertionNotificationRequest HTMLMetaElement::insertedInto( | 444 Node::InsertionNotificationRequest HTMLMetaElement::insertedInto( |
| 446 ContainerNode* insertionPoint) { | 445 ContainerNode* insertionPoint) { |
| 447 HTMLElement::insertedInto(insertionPoint); | 446 HTMLElement::insertedInto(insertionPoint); |
| 448 return InsertionShouldCallDidNotifySubtreeInsertions; | 447 return InsertionShouldCallDidNotifySubtreeInsertions; |
| 449 } | 448 } |
| 450 | 449 |
| 451 void HTMLMetaElement::didNotifySubtreeInsertionsToDocument() { | 450 void HTMLMetaElement::didNotifySubtreeInsertionsToDocument() { |
| 452 process(); | 451 process(); |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 } | 512 } |
| 514 | 513 |
| 515 const AtomicString& HTMLMetaElement::httpEquiv() const { | 514 const AtomicString& HTMLMetaElement::httpEquiv() const { |
| 516 return getAttribute(http_equivAttr); | 515 return getAttribute(http_equivAttr); |
| 517 } | 516 } |
| 518 | 517 |
| 519 const AtomicString& HTMLMetaElement::name() const { | 518 const AtomicString& HTMLMetaElement::name() const { |
| 520 return getNameAttribute(); | 519 return getNameAttribute(); |
| 521 } | 520 } |
| 522 } | 521 } |
| OLD | NEW |