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

Side by Side Diff: html/HTMLHtmlElement.h

Issue 113554: For local review prior to sending to webkit (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/WebCore/
Patch Set: '' Created 11 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
« no previous file with comments | « dom/EventTarget.cpp ('k') | html/HTMLHtmlElement.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 * This file is part of the DOM implementation for KDE. 2 * This file is part of the DOM implementation for KDE.
3 * 3 *
4 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 4 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
5 * (C) 1999 Antti Koivisto (koivisto@kde.org) 5 * (C) 1999 Antti Koivisto (koivisto@kde.org)
6 * (C) 2000 Simon Hausmann <hausmann@kde.org> 6 * (C) 2000 Simon Hausmann <hausmann@kde.org>
7 * Copyright (C) 2004, 2006 Apple Computer, Inc. 7 * Copyright (C) 2004, 2006 Apple Computer, Inc.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 22 matching lines...) Expand all
33 class HTMLHtmlElement : public HTMLElement 33 class HTMLHtmlElement : public HTMLElement
34 { 34 {
35 public: 35 public:
36 HTMLHtmlElement(const QualifiedName&, Document*); 36 HTMLHtmlElement(const QualifiedName&, Document*);
37 ~HTMLHtmlElement(); 37 ~HTMLHtmlElement();
38 38
39 virtual HTMLTagStatus endTagRequirement() const { return TagStatusRequired; } 39 virtual HTMLTagStatus endTagRequirement() const { return TagStatusRequired; }
40 virtual int tagPriority() const { return 11; } 40 virtual int tagPriority() const { return 11; }
41 virtual bool checkDTD(const Node* newChild); 41 virtual bool checkDTD(const Node* newChild);
42 42
43 #if ENABLE(OFFLINE_WEB_APPLICATIONS) 43 #if ENABLE(OFFLINE_WEB_APPLICATIONS) || ENABLE(APPLICATION_CACHE)
44 virtual void insertedIntoDocument(); 44 virtual void insertedIntoDocument();
45 #endif 45 #endif
46 46
47 String version() const; 47 String version() const;
48 void setVersion(const String&); 48 void setVersion(const String&);
49 }; 49 };
50 50
51 } //namespace 51 } //namespace
52 52
53 #endif 53 #endif
OLDNEW
« no previous file with comments | « dom/EventTarget.cpp ('k') | html/HTMLHtmlElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698