| Index: Source/core/dom/Document.h
|
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
|
| index 698b5ecbb5ad2e9bac30396d4f402a0174e2e3a2..ab8f623a75c793abdc03e3b497aed123d2043003 100644
|
| --- a/Source/core/dom/Document.h
|
| +++ b/Source/core/dom/Document.h
|
| @@ -389,6 +389,13 @@ public:
|
| bool isTransitionDocument() const { return m_isTransitionDocument; }
|
| void setIsTransitionDocument() { m_isTransitionDocument = true; }
|
|
|
| + struct TransitionElementData {
|
| + String scope;
|
| + String selector;
|
| + String markup;
|
| + };
|
| + void getTransitionElementData(Vector<TransitionElementData>&, ExceptionState&);
|
| +
|
| StyleResolver* styleResolver() const;
|
| StyleResolver& ensureStyleResolver() const;
|
|
|
|
|