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

Side by Side Diff: Source/core/dom/Element.h

Issue 147593008: Remove Element.nodeNamePreservingCase (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add static helper Created 6 years, 10 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
« 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 Peter Kelly (pmk@post.com) 4 * (C) 2001 Peter Kelly (pmk@post.com)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013 Appl e Inc. All rights reserved. 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013 Appl e Inc. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 virtual KURL baseURI() const OVERRIDE FINAL; 238 virtual KURL baseURI() const OVERRIDE FINAL;
239 239
240 virtual String nodeName() const OVERRIDE; 240 virtual String nodeName() const OVERRIDE;
241 241
242 PassRefPtr<Element> cloneElementWithChildren(); 242 PassRefPtr<Element> cloneElementWithChildren();
243 PassRefPtr<Element> cloneElementWithoutChildren(); 243 PassRefPtr<Element> cloneElementWithoutChildren();
244 244
245 void scheduleLayerUpdate(); 245 void scheduleLayerUpdate();
246 246
247 void normalizeAttributes(); 247 void normalizeAttributes();
248 String nodeNamePreservingCase() const;
249 248
250 void setBooleanAttribute(const QualifiedName& name, bool); 249 void setBooleanAttribute(const QualifiedName& name, bool);
251 250
252 virtual const StylePropertySet* additionalPresentationAttributeStyle() { ret urn 0; } 251 virtual const StylePropertySet* additionalPresentationAttributeStyle() { ret urn 0; }
253 void invalidateStyleAttribute(); 252 void invalidateStyleAttribute();
254 253
255 const StylePropertySet* inlineStyle() const { return elementData() ? element Data()->m_inlineStyle.get() : 0; } 254 const StylePropertySet* inlineStyle() const { return elementData() ? element Data()->m_inlineStyle.get() : 0; }
256 255
257 bool setInlineStyleProperty(CSSPropertyID, CSSValueID identifier, bool impor tant = false); 256 bool setInlineStyleProperty(CSSPropertyID, CSSValueID identifier, bool impor tant = false);
258 bool setInlineStyleProperty(CSSPropertyID, CSSPropertyID identifier, bool im portant = false); 257 bool setInlineStyleProperty(CSSPropertyID, CSSPropertyID identifier, bool im portant = false);
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after
883 } 882 }
884 883
885 inline bool isShadowHost(const Element* element) 884 inline bool isShadowHost(const Element* element)
886 { 885 {
887 return element && element->shadow(); 886 return element && element->shadow();
888 } 887 }
889 888
890 } // namespace 889 } // namespace
891 890
892 #endif 891 #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