Index: Source/core/html/HTMLDocument.cpp |
diff --git a/Source/core/html/HTMLDocument.cpp b/Source/core/html/HTMLDocument.cpp |
index 61e37d55acfae06a3647cec27682d304aaf9686d..95fa689165c2e06c66e53588b483a558f8030d80 100644 |
--- a/Source/core/html/HTMLDocument.cpp |
+++ b/Source/core/html/HTMLDocument.cpp |
@@ -79,21 +79,6 @@ HTMLDocument::~HTMLDocument() |
{ |
} |
-const AtomicString& HTMLDocument::dir() |
-{ |
- HTMLElement* b = body(); |
- if (!b) |
- return nullAtom; |
- return b->getAttribute(dirAttr); |
-} |
- |
-void HTMLDocument::setDir(const AtomicString& value) |
-{ |
- HTMLElement* b = body(); |
- if (b) |
- b->setAttribute(dirAttr, value); |
-} |
- |
String HTMLDocument::designMode() const |
{ |
return inDesignMode() ? "on" : "off"; |