Chromium Code Reviews| Index: third_party/WebKit/Source/core/editing/Editor.cpp |
| diff --git a/third_party/WebKit/Source/core/editing/Editor.cpp b/third_party/WebKit/Source/core/editing/Editor.cpp |
| index 6ac01cdf4159227f26899b2694297968b60a8101..d090fb18ce08bf29fb5183272edf712f343c3c32 100644 |
| --- a/third_party/WebKit/Source/core/editing/Editor.cpp |
| +++ b/third_party/WebKit/Source/core/editing/Editor.cpp |
| @@ -38,6 +38,7 @@ |
| #include "core/css/StylePropertySet.h" |
| #include "core/dom/AXObjectCache.h" |
| #include "core/dom/DocumentFragment.h" |
| +#include "core/dom/ElementTraversal.h" |
| #include "core/dom/NodeTraversal.h" |
| #include "core/dom/ParserContentPolicy.h" |
| #include "core/dom/Text.h" |
| @@ -68,12 +69,15 @@ |
| #include "core/frame/LocalFrame.h" |
| #include "core/frame/Settings.h" |
| #include "core/frame/UseCounter.h" |
| +#include "core/html/HTMLBodyElement.h" |
| #include "core/html/HTMLCanvasElement.h" |
| +#include "core/html/HTMLHtmlElement.h" |
| #include "core/html/HTMLImageElement.h" |
| #include "core/html/HTMLInputElement.h" |
| #include "core/html/HTMLTextAreaElement.h" |
| #include "core/html/parser/HTMLParserIdioms.h" |
| #include "core/input/EventHandler.h" |
| +#include "core/inspector/ConsoleMessage.h" |
| #include "core/layout/HitTestResult.h" |
| #include "core/layout/LayoutImage.h" |
| #include "core/loader/EmptyClients.h" |
| @@ -1303,6 +1307,49 @@ void Editor::toggleOverwriteModeEnabled() |
| frame().selection().setShouldShowBlockCursor(m_overwriteModeEnabled); |
| } |
| +void Editor::tidyUpHTMLStructure(Document& document) |
| +{ |
| + // hasEditableStyle() needs up-to-date ComputedStyle. |
| + document.updateLayoutTreeIfNeeded(); |
| + bool needsValidStructure = document.hasEditableStyle() || (document.documentElement() && document.documentElement()->hasEditableStyle()); |
| + if (!needsValidStructure) |
| + return; |
| + RefPtrWillBeRawPtr<Element> existingHead = nullptr; |
| + RefPtrWillBeRawPtr<Element> existingBody = nullptr; |
| + Element* currentRoot = document.documentElement(); |
| + if (currentRoot) { |
| + if (isHTMLHtmlElement(currentRoot)) |
| + return; |
| + if (isHTMLHeadElement(currentRoot)) |
| + existingHead = currentRoot; |
| + else if (isHTMLBodyElement(currentRoot)) |
| + existingBody = currentRoot; |
| + else if (isHTMLFrameSetElement(currentRoot)) |
| + existingBody = currentRoot; |
| + } |
| + // We ensure only "the root is <html>." |
| + // documentElement as rootEditableElement is problematic. So we move |
| + // non-<html> root elements under <body>, and the <body> works as |
| + // rootEditableElement. |
| + document.addConsoleMessage(ConsoleMessage::create(JSMessageSource, WarningMessageLevel, "document.execCommand() doesn't work with an invalid HTML structure. It is corrected automatically.")); |
| + |
| + RefPtrWillBeRawPtr<Element> root = HTMLHtmlElement::create(document); |
| + if (existingHead) |
| + root->appendChild(existingHead.release()); |
| + RefPtrWillBeRawPtr<Element> body = nullptr; |
| + if (existingBody) |
| + body = existingBody.release(); |
| + else |
| + body = HTMLBodyElement::create(document); |
| + if (document.documentElement()) |
| + body->appendChild(document.documentElement()); |
| + root->appendChild(body.release()); |
| + ASSERT(!document.documentElement()); |
| + document.appendChild(root.release()); |
| + |
| + // TODO(tkent): Should we check and move Text node children of <html>? |
| +} |
|
yosin_UTC9
2016/01/27 08:38:04
Since whitespace text node is allowed as children
tkent
2016/01/27 08:48:37
Document can't have Text children. <html> can.
So
|
| + |
| DEFINE_TRACE(Editor) |
| { |
| visitor->trace(m_frame); |