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

Side by Side Diff: WebCore/html/HTMLElement.h

Issue 28077: WebKit side of merge from r41149 to r41181. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/WebKit/
Patch Set: Created 11 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 | Annotate | Revision Log
« no previous file with comments | « WebCore/dom/WorkerRunLoop.cpp ('k') | WebCore/html/HTMLElement.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 * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 27 matching lines...) Expand all
38 HTMLElement(const QualifiedName& tagName, Document*); 38 HTMLElement(const QualifiedName& tagName, Document*);
39 virtual ~HTMLElement(); 39 virtual ~HTMLElement();
40 40
41 virtual bool isHTMLElement() const { return true; } 41 virtual bool isHTMLElement() const { return true; }
42 42
43 virtual String nodeName() const; 43 virtual String nodeName() const;
44 44
45 virtual bool mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const; 45 virtual bool mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const;
46 virtual void parseMappedAttribute(MappedAttribute*); 46 virtual void parseMappedAttribute(MappedAttribute*);
47 47
48 virtual PassRefPtr<Node> cloneNode(bool deep);
49
50 PassRefPtr<HTMLCollection> children(); 48 PassRefPtr<HTMLCollection> children();
51 49
52 String id() const; 50 String id() const;
53 void setId(const String&); 51 void setId(const String&);
54 virtual String title() const; 52 virtual String title() const;
55 void setTitle(const String&); 53 void setTitle(const String&);
56 String lang() const; 54 String lang() const;
57 void setLang(const String&); 55 void setLang(const String&);
58 String dir() const; 56 String dir() const;
59 void setDir(const String&); 57 void setDir(const String&);
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 void addHTMLAlignment(MappedAttribute*); 106 void addHTMLAlignment(MappedAttribute*);
109 107
110 private: 108 private:
111 virtual HTMLFormElement* virtualForm() const; 109 virtual HTMLFormElement* virtualForm() const;
112 Node* insertAdjacent(const String& where, Node* newChild, ExceptionCode&); 110 Node* insertAdjacent(const String& where, Node* newChild, ExceptionCode&);
113 }; 111 };
114 112
115 } // namespace WebCore 113 } // namespace WebCore
116 114
117 #endif // HTMLElement_h 115 #endif // HTMLElement_h
OLDNEW
« no previous file with comments | « WebCore/dom/WorkerRunLoop.cpp ('k') | WebCore/html/HTMLElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698