| Index: Source/core/dom/Document.h
|
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
|
| index 00b5f305ef5a201996fcb366544384e5c85382bf..e74d5e29943450f0caa464e17e1a3d420516b0ad 100644
|
| --- a/Source/core/dom/Document.h
|
| +++ b/Source/core/dom/Document.h
|
| @@ -792,11 +792,6 @@ public:
|
|
|
| DocumentMarkerController& markers() const { return *m_markers; }
|
|
|
| - bool directionSetOnDocumentElement() const { return m_directionSetOnDocumentElement; }
|
| - bool writingModeSetOnDocumentElement() const { return m_writingModeSetOnDocumentElement; }
|
| - void setDirectionSetOnDocumentElement(bool b) { m_directionSetOnDocumentElement = b; }
|
| - void setWritingModeSetOnDocumentElement(bool b) { m_writingModeSetOnDocumentElement = b; }
|
| -
|
| bool execCommand(const String& command, bool userInterface = false, const String& value = String());
|
| bool queryCommandEnabled(const String& command);
|
| bool queryCommandIndeterm(const String& command);
|
| @@ -1344,8 +1339,6 @@ private:
|
|
|
| ReferrerPolicy m_referrerPolicy;
|
|
|
| - bool m_directionSetOnDocumentElement;
|
| - bool m_writingModeSetOnDocumentElement;
|
| DocumentTiming m_documentTiming;
|
| RefPtrWillBeMember<MediaQueryMatcher> m_mediaQueryMatcher;
|
| bool m_writeRecursionIsTooDeep;
|
|
|