| Index: Source/core/dom/Element.h
|
| diff --git a/Source/core/dom/Element.h b/Source/core/dom/Element.h
|
| index c77f7ed27ccf08aa26365ac1e8f861f131ad7163..5cdc0c63ce7e612f5ee1daa31db7de62e8a19dad 100644
|
| --- a/Source/core/dom/Element.h
|
| +++ b/Source/core/dom/Element.h
|
| @@ -61,6 +61,8 @@ class PropertySetCSSStyleDeclaration;
|
| class PseudoElement;
|
| class ShadowRoot;
|
| class StylePropertySet;
|
| +template <typename T> class WebVector;
|
| +struct WebTeleportValue;
|
|
|
| enum SpellcheckAttributeState {
|
| SpellcheckAttributeTrue,
|
| @@ -458,6 +460,15 @@ public:
|
|
|
| void requestPointerLock();
|
|
|
| + String bindAnimatedProperty(const String& propertyName, ExceptionState&);
|
| + void unbindAnimatedProperty(const String& propertyName, ExceptionState&);
|
| +
|
| + static void updateBoundAnimatedPropertiesIfNeeded();
|
| + static void applyToBoundAnimatedProperties(const WebVector<WebTeleportValue>&);
|
| +
|
| + bool getBoundAnimatedProperty(const String& propertyName, String& token) const;
|
| + bool hasBoundAnimatedProperty() const;
|
| +
|
| bool isSpellCheckingEnabled() const;
|
|
|
| // FIXME: public for RenderTreeBuilder, we shouldn't expose this though.
|
|
|