Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(516)

Side by Side Diff: Source/core/dom/Document.cpp

Issue 1195583002: Measure the impact of a propsed change to createAttribute() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: check attr's document Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/dom/Element.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved.
(...skipping 4462 matching lines...) Expand 10 before | Expand all | Expand 10 after
4473 return this; 4473 return this;
4474 #else 4474 #else
4475 return m_weakFactory.createWeakPtr(); 4475 return m_weakFactory.createWeakPtr();
4476 #endif 4476 #endif
4477 } 4477 }
4478 return WeakPtrWillBeRawPtr<Document>(nullptr); 4478 return WeakPtrWillBeRawPtr<Document>(nullptr);
4479 } 4479 }
4480 4480
4481 PassRefPtrWillBeRawPtr<Attr> Document::createAttribute(const AtomicString& name, ExceptionState& exceptionState) 4481 PassRefPtrWillBeRawPtr<Attr> Document::createAttribute(const AtomicString& name, ExceptionState& exceptionState)
4482 { 4482 {
4483 if (isHTMLDocument() && name != name.lower())
4484 UseCounter::count(*this, UseCounter::HTMLDocumentCreateAttributeNameNotL owercase);
4483 return createAttributeNS(nullAtom, name, exceptionState, true); 4485 return createAttributeNS(nullAtom, name, exceptionState, true);
4484 } 4486 }
4485 4487
4486 PassRefPtrWillBeRawPtr<Attr> Document::createAttributeNS(const AtomicString& nam espaceURI, const AtomicString& qualifiedName, ExceptionState& exceptionState, bo ol shouldIgnoreNamespaceChecks) 4488 PassRefPtrWillBeRawPtr<Attr> Document::createAttributeNS(const AtomicString& nam espaceURI, const AtomicString& qualifiedName, ExceptionState& exceptionState, bo ol shouldIgnoreNamespaceChecks)
4487 { 4489 {
4488 AtomicString prefix, localName; 4490 AtomicString prefix, localName;
4489 if (!parseQualifiedName(qualifiedName, prefix, localName, exceptionState)) 4491 if (!parseQualifiedName(qualifiedName, prefix, localName, exceptionState))
4490 return nullptr; 4492 return nullptr;
4491 4493
4492 QualifiedName qName(prefix, localName, namespaceURI); 4494 QualifiedName qName(prefix, localName, namespaceURI);
(...skipping 1274 matching lines...) Expand 10 before | Expand all | Expand 10 after
5767 #ifndef NDEBUG 5769 #ifndef NDEBUG
5768 using namespace blink; 5770 using namespace blink;
5769 void showLiveDocumentInstances() 5771 void showLiveDocumentInstances()
5770 { 5772 {
5771 WeakDocumentSet& set = liveDocumentSet(); 5773 WeakDocumentSet& set = liveDocumentSet();
5772 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 5774 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
5773 for (Document* document : set) 5775 for (Document* document : set)
5774 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data()); 5776 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data());
5775 } 5777 }
5776 #endif 5778 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698