| Index: Source/core/dom/Document.cpp
 | 
| diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
 | 
| index 86d8fbb723896ee7e4913703bde30a8e8528073a..8a2b5514ef270e8f68e090411bc09b919aeedbb9 100644
 | 
| --- a/Source/core/dom/Document.cpp
 | 
| +++ b/Source/core/dom/Document.cpp
 | 
| @@ -62,7 +62,6 @@
 | 
|  #include "core/dom/Comment.h"
 | 
|  #include "core/dom/ContextFeatures.h"
 | 
|  #include "core/dom/DOMImplementation.h"
 | 
| -#include "core/dom/DOMNamedFlowCollection.h"
 | 
|  #include "core/dom/DocumentFragment.h"
 | 
|  #include "core/dom/DocumentLifecycleNotifier.h"
 | 
|  #include "core/dom/DocumentLifecycleObserver.h"
 | 
| @@ -74,7 +73,6 @@
 | 
|  #include "core/dom/ExceptionCode.h"
 | 
|  #include "core/dom/ExecutionContextTask.h"
 | 
|  #include "core/dom/MainThreadTaskRunner.h"
 | 
| -#include "core/dom/NamedFlowCollection.h"
 | 
|  #include "core/dom/NodeChildRemovalTracker.h"
 | 
|  #include "core/dom/NodeFilter.h"
 | 
|  #include "core/dom/NodeIterator.h"
 | 
| @@ -1031,29 +1029,6 @@ PassRefPtr<Element> Document::createElement(const QualifiedName& qName, bool cre
 | 
|      return e.release();
 | 
|  }
 | 
|  
 | 
| -bool Document::regionBasedColumnsEnabled() const
 | 
| -{
 | 
| -    return settings() && settings()->regionBasedColumnsEnabled();
 | 
| -}
 | 
| -
 | 
| -PassRefPtr<DOMNamedFlowCollection> Document::webkitGetNamedFlows()
 | 
| -{
 | 
| -    if (!RuntimeEnabledFeatures::cssRegionsEnabled() || !renderView())
 | 
| -        return 0;
 | 
| -
 | 
| -    updateStyleIfNeeded();
 | 
| -
 | 
| -    return namedFlows()->createCSSOMSnapshot();
 | 
| -}
 | 
| -
 | 
| -NamedFlowCollection* Document::namedFlows()
 | 
| -{
 | 
| -    if (!m_namedFlows)
 | 
| -        m_namedFlows = NamedFlowCollection::create(this);
 | 
| -
 | 
| -    return m_namedFlows.get();
 | 
| -}
 | 
| -
 | 
|  PassRefPtr<Element> Document::createElementNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState& exceptionState)
 | 
|  {
 | 
|      AtomicString prefix, localName;
 | 
| 
 |