From 0f5d4355d7a384679722338d55f65bbb92350cfc Mon Sep 17 00:00:00 2001 From: Naiem Shaik Date: Thu, 19 Jul 2012 10:45:56 -0700 Subject: DOM Optimizations DOM traversal optimizations DOM Core optimizations Prefetch optimization for DOM Tree Traversal Conflicts: Source/WebKit/android/jni/WebViewCore.cpp Change-Id: Icbb8a7229ee9cff1a5401b57c8181f18b9a6d6e0 --- Source/WebCore/html/HTMLElement.cpp | 45 ------------------------------------- 1 file changed, 45 deletions(-) (limited to 'Source/WebCore/html/HTMLElement.cpp') diff --git a/Source/WebCore/html/HTMLElement.cpp b/Source/WebCore/html/HTMLElement.cpp index 0aa9664..f8f2113 100644 --- a/Source/WebCore/html/HTMLElement.cpp +++ b/Source/WebCore/html/HTMLElement.cpp @@ -71,49 +71,6 @@ String HTMLElement::nodeName() const return Element::nodeName(); } -bool HTMLElement::ieForbidsInsertHTML() const -{ - // FIXME: Supposedly IE disallows settting innerHTML, outerHTML - // and createContextualFragment on these tags. We have no tests to - // verify this however, so this list could be totally wrong. - // This list was moved from the previous endTagRequirement() implementation. - // This is also called from editing and assumed to be the list of tags - // for which no end tag should be serialized. It's unclear if the list for - // IE compat and the list for serialization sanity are the same. - if (hasLocalName(areaTag) - || hasLocalName(baseTag) - || hasLocalName(basefontTag) - || hasLocalName(brTag) - || hasLocalName(colTag) -#if ENABLE(DATAGRID) - || hasLocalName(dcellTag) - || hasLocalName(dcolTag) -#endif - || hasLocalName(embedTag) - || hasLocalName(frameTag) - || hasLocalName(hrTag) - || hasLocalName(imageTag) - || hasLocalName(imgTag) - || hasLocalName(inputTag) - || hasLocalName(isindexTag) - || hasLocalName(linkTag) - || hasLocalName(metaTag) - || hasLocalName(paramTag) - || hasLocalName(sourceTag) - || hasLocalName(wbrTag)) - return true; - // FIXME: I'm not sure why dashboard mode would want to change the - // serialization of , that seems like a bad idea. -#if ENABLE(DASHBOARD_SUPPORT) - if (hasLocalName(canvasTag)) { - Settings* settings = document()->settings(); - if (settings && settings->usesDashboardBackwardCompatibilityMode()) - return true; - } -#endif - return false; -} - bool HTMLElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const { if (attrName == alignAttr @@ -786,8 +743,6 @@ bool HTMLElement::rendererIsNeeded(RenderStyle *style) RenderObject* HTMLElement::createRenderer(RenderArena* arena, RenderStyle* style) { - if (hasLocalName(wbrTag)) - return new (arena) RenderWordBreak(this); return RenderObject::createObject(this, style); } -- cgit v1.1