Index: Source/core/dom/NodeList.cpp |
diff --git a/Source/core/dom/NodeList.cpp b/Source/core/dom/NodeList.cpp |
index e86640a810c23f69c30ced276e410ec93810ea76..689b06fe47c33422dd66b4136855b0d03f62d114 100644 |
--- a/Source/core/dom/NodeList.cpp |
+++ b/Source/core/dom/NodeList.cpp |
@@ -37,24 +37,6 @@ |
namespace WebCore { |
-void NodeList::anonymousNamedGetter(const AtomicString& name, bool& returnValue0Enabled, RefPtr<Node>& returnValue0, bool& returnValue1Enabled, unsigned& returnValue1) |
-{ |
- // Length property cannot be overridden. |
- DEFINE_STATIC_LOCAL(const AtomicString, length, ("length", AtomicString::ConstructFromLiteral)); |
- if (name == length) { |
- returnValue1Enabled = true; |
- returnValue1 = this->length(); |
- return; |
- } |
- |
- Node* result = namedItem(name); |
- if (!result) |
- return; |
- |
- returnValue0Enabled = true; |
- returnValue0 = result; |
-} |
- |
Node* NodeList::ownerNode() const |
{ |
if (isLiveNodeList()) |