OLD | NEW |
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, 2010, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 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) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
9 * Copyright (C) 2011 Google Inc. All rights reserved. | 9 * Copyright (C) 2011 Google Inc. All rights reserved. |
10 * | 10 * |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 class Database; | 83 class Database; |
84 class DatabaseThread; | 84 class DatabaseThread; |
85 class DocumentFragment; | 85 class DocumentFragment; |
86 class DocumentLoader; | 86 class DocumentLoader; |
87 class DocumentMarkerController; | 87 class DocumentMarkerController; |
88 class DocumentParser; | 88 class DocumentParser; |
89 class DocumentSharedObjectPool; | 89 class DocumentSharedObjectPool; |
90 class DocumentStyleSheetCollection; | 90 class DocumentStyleSheetCollection; |
91 class DocumentType; | 91 class DocumentType; |
92 class Element; | 92 class Element; |
93 class EntityReference; | |
94 class Event; | 93 class Event; |
95 class EventListener; | 94 class EventListener; |
96 class FloatRect; | 95 class FloatRect; |
97 class FloatQuad; | 96 class FloatQuad; |
98 class FormController; | 97 class FormController; |
99 class Frame; | 98 class Frame; |
100 class FrameView; | 99 class FrameView; |
101 class HTMLCanvasElement; | 100 class HTMLCanvasElement; |
102 class HTMLCollection; | 101 class HTMLCollection; |
103 class HTMLAllCollection; | 102 class HTMLAllCollection; |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 bool hasManifest() const; | 305 bool hasManifest() const; |
307 | 306 |
308 PassRefPtr<Element> createElement(const AtomicString& name, ExceptionCode&); | 307 PassRefPtr<Element> createElement(const AtomicString& name, ExceptionCode&); |
309 PassRefPtr<DocumentFragment> createDocumentFragment(); | 308 PassRefPtr<DocumentFragment> createDocumentFragment(); |
310 PassRefPtr<Text> createTextNode(const String& data); | 309 PassRefPtr<Text> createTextNode(const String& data); |
311 PassRefPtr<Comment> createComment(const String& data); | 310 PassRefPtr<Comment> createComment(const String& data); |
312 PassRefPtr<CDATASection> createCDATASection(const String& data, ExceptionCod
e&); | 311 PassRefPtr<CDATASection> createCDATASection(const String& data, ExceptionCod
e&); |
313 PassRefPtr<ProcessingInstruction> createProcessingInstruction(const String&
target, const String& data, ExceptionCode&); | 312 PassRefPtr<ProcessingInstruction> createProcessingInstruction(const String&
target, const String& data, ExceptionCode&); |
314 PassRefPtr<Attr> createAttribute(const String& name, ExceptionCode&); | 313 PassRefPtr<Attr> createAttribute(const String& name, ExceptionCode&); |
315 PassRefPtr<Attr> createAttributeNS(const String& namespaceURI, const String&
qualifiedName, ExceptionCode&, bool shouldIgnoreNamespaceChecks = false); | 314 PassRefPtr<Attr> createAttributeNS(const String& namespaceURI, const String&
qualifiedName, ExceptionCode&, bool shouldIgnoreNamespaceChecks = false); |
316 PassRefPtr<EntityReference> createEntityReference(const String& name, Except
ionCode&); | |
317 PassRefPtr<Node> importNode(Node* importedNode, ExceptionCode& ec) { return
importNode(importedNode, true, ec); } | 315 PassRefPtr<Node> importNode(Node* importedNode, ExceptionCode& ec) { return
importNode(importedNode, true, ec); } |
318 PassRefPtr<Node> importNode(Node* importedNode, bool deep, ExceptionCode&); | 316 PassRefPtr<Node> importNode(Node* importedNode, bool deep, ExceptionCode&); |
319 virtual PassRefPtr<Element> createElementNS(const String& namespaceURI, cons
t String& qualifiedName, ExceptionCode&); | 317 virtual PassRefPtr<Element> createElementNS(const String& namespaceURI, cons
t String& qualifiedName, ExceptionCode&); |
320 PassRefPtr<Element> createElement(const QualifiedName&, bool createdByParser
); | 318 PassRefPtr<Element> createElement(const QualifiedName&, bool createdByParser
); |
321 | 319 |
322 bool cssStickyPositionEnabled() const; | 320 bool cssStickyPositionEnabled() const; |
323 bool cssCompositingEnabled() const; | 321 bool cssCompositingEnabled() const; |
324 PassRefPtr<DOMNamedFlowCollection> webkitGetNamedFlows(); | 322 PassRefPtr<DOMNamedFlowCollection> webkitGetNamedFlows(); |
325 | 323 |
326 NamedFlowCollection* namedFlows(); | 324 NamedFlowCollection* namedFlows(); |
(...skipping 1193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1520 trackForDebugging(); | 1518 trackForDebugging(); |
1521 #endif | 1519 #endif |
1522 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); | 1520 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); |
1523 } | 1521 } |
1524 | 1522 |
1525 Node* eventTargetNodeForDocument(Document*); | 1523 Node* eventTargetNodeForDocument(Document*); |
1526 | 1524 |
1527 } // namespace WebCore | 1525 } // namespace WebCore |
1528 | 1526 |
1529 #endif // Document_h | 1527 #endif // Document_h |
OLD | NEW |