| 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 Apple Inc.
All rights reserved. | 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple 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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 virtual bool wasChangedSinceLastFormControlChangeEvent() const; | 371 virtual bool wasChangedSinceLastFormControlChangeEvent() const; |
| 372 virtual void setChangedSinceLastFormControlChangeEvent(bool); | 372 virtual void setChangedSinceLastFormControlChangeEvent(bool); |
| 373 virtual void dispatchFormControlChangeEvent() { } | 373 virtual void dispatchFormControlChangeEvent() { } |
| 374 | 374 |
| 375 #if ENABLE(SVG) | 375 #if ENABLE(SVG) |
| 376 virtual bool childShouldCreateRenderer(const NodeRenderingContext&) const; | 376 virtual bool childShouldCreateRenderer(const NodeRenderingContext&) const; |
| 377 #endif | 377 #endif |
| 378 | 378 |
| 379 #if ENABLE(FULLSCREEN_API) | 379 #if ENABLE(FULLSCREEN_API) |
| 380 enum { | 380 enum { |
| 381 ALLOW_KEYBOARD_INPUT = 1 << 0, | 381 ALLOW_KEYBOARD_INPUT = 1 |
| 382 LEGACY_MOZILLA_REQUEST = 1 << 1, | |
| 383 }; | 382 }; |
| 384 | 383 |
| 385 void webkitRequestFullScreen(unsigned short flags); | 384 void webkitRequestFullScreen(unsigned short flags); |
| 386 virtual bool containsFullScreenElement() const; | 385 virtual bool containsFullScreenElement() const; |
| 387 virtual void setContainsFullScreenElement(bool); | 386 virtual void setContainsFullScreenElement(bool); |
| 388 virtual void setContainsFullScreenElementOnAncestorsCrossingFrameBoundaries(
bool); | 387 virtual void setContainsFullScreenElementOnAncestorsCrossingFrameBoundaries(
bool); |
| 389 | |
| 390 // W3C API | |
| 391 void webkitRequestFullscreen(); | |
| 392 #endif | 388 #endif |
| 393 | 389 |
| 394 virtual bool isSpellCheckingEnabled() const; | 390 virtual bool isSpellCheckingEnabled() const; |
| 395 | 391 |
| 396 PassRefPtr<WebKitAnimationList> webkitGetAnimations() const; | 392 PassRefPtr<WebKitAnimationList> webkitGetAnimations() const; |
| 397 | 393 |
| 398 PassRefPtr<RenderStyle> styleForRenderer(); | 394 PassRefPtr<RenderStyle> styleForRenderer(); |
| 399 | 395 |
| 400 const AtomicString& webkitRegionOverflow() const; | 396 const AtomicString& webkitRegionOverflow() const; |
| 401 | 397 |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 } | 698 } |
| 703 | 699 |
| 704 inline bool Node::hasClass() const | 700 inline bool Node::hasClass() const |
| 705 { | 701 { |
| 706 return isElementNode() && toElement(this)->hasClass(); | 702 return isElementNode() && toElement(this)->hasClass(); |
| 707 } | 703 } |
| 708 | 704 |
| 709 } // namespace | 705 } // namespace |
| 710 | 706 |
| 711 #endif | 707 #endif |
| OLD | NEW |