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