| 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 Peter Kelly (pmk@post.com) | 4 * (C) 2001 Peter Kelly (pmk@post.com) |
| 5 * (C) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013 Appl
e Inc. All rights reserved. | 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013 Appl
e Inc. All rights reserved. |
| 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 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 // but making parsing a special case in this respect should be avoided if po
ssible. | 429 // but making parsing a special case in this respect should be avoided if po
ssible. |
| 430 virtual void finishParsingChildren(); | 430 virtual void finishParsingChildren(); |
| 431 | 431 |
| 432 void beginParsingChildren() { setIsParsingChildrenFinished(false); } | 432 void beginParsingChildren() { setIsParsingChildrenFinished(false); } |
| 433 | 433 |
| 434 PseudoElement* pseudoElement(PseudoId) const; | 434 PseudoElement* pseudoElement(PseudoId) const; |
| 435 RenderObject* pseudoElementRenderer(PseudoId) const; | 435 RenderObject* pseudoElementRenderer(PseudoId) const; |
| 436 | 436 |
| 437 virtual bool matchesReadOnlyPseudoClass() const { return false; } | 437 virtual bool matchesReadOnlyPseudoClass() const { return false; } |
| 438 virtual bool matchesReadWritePseudoClass() const { return false; } | 438 virtual bool matchesReadWritePseudoClass() const { return false; } |
| 439 bool webkitMatchesSelector(const String& selectors, ExceptionState&); | 439 bool matches(const String& selectors, ExceptionState&); |
| 440 virtual bool shouldAppearIndeterminate() const { return false; } | 440 virtual bool shouldAppearIndeterminate() const { return false; } |
| 441 | 441 |
| 442 DOMTokenList* classList(); | 442 DOMTokenList* classList(); |
| 443 | 443 |
| 444 DOMStringMap* dataset(); | 444 DOMStringMap* dataset(); |
| 445 | 445 |
| 446 virtual bool isMediaElement() const { return false; } | 446 virtual bool isMediaElement() const { return false; } |
| 447 | 447 |
| 448 #if ENABLE(INPUT_SPEECH) | 448 #if ENABLE(INPUT_SPEECH) |
| 449 virtual bool isInputFieldSpeechButtonElement() const { return false; } | 449 virtual bool isInputFieldSpeechButtonElement() const { return false; } |
| (...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 896 } | 896 } |
| 897 | 897 |
| 898 inline bool isShadowHost(const Element* element) | 898 inline bool isShadowHost(const Element* element) |
| 899 { | 899 { |
| 900 return element && element->shadow(); | 900 return element && element->shadow(); |
| 901 } | 901 } |
| 902 | 902 |
| 903 } // namespace | 903 } // namespace |
| 904 | 904 |
| 905 #endif | 905 #endif |
| OLD | NEW |