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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 PassRefPtr<ProcessingInstruction> createProcessingInstruction(const String&
target, const String& data, ExceptionCode&); | 302 PassRefPtr<ProcessingInstruction> createProcessingInstruction(const String&
target, const String& data, ExceptionCode&); |
303 PassRefPtr<Attr> createAttribute(const String& name, ExceptionCode&); | 303 PassRefPtr<Attr> createAttribute(const String& name, ExceptionCode&); |
304 PassRefPtr<Attr> createAttributeNS(const String& namespaceURI, const String&
qualifiedName, ExceptionCode&, bool shouldIgnoreNamespaceChecks = false); | 304 PassRefPtr<Attr> createAttributeNS(const String& namespaceURI, const String&
qualifiedName, ExceptionCode&, bool shouldIgnoreNamespaceChecks = false); |
305 PassRefPtr<EntityReference> createEntityReference(const String& name, Except
ionCode&); | 305 PassRefPtr<EntityReference> createEntityReference(const String& name, Except
ionCode&); |
306 PassRefPtr<Node> importNode(Node* importedNode, ExceptionCode& ec) { return
importNode(importedNode, true, ec); } | 306 PassRefPtr<Node> importNode(Node* importedNode, ExceptionCode& ec) { return
importNode(importedNode, true, ec); } |
307 PassRefPtr<Node> importNode(Node* importedNode, bool deep, ExceptionCode&); | 307 PassRefPtr<Node> importNode(Node* importedNode, bool deep, ExceptionCode&); |
308 virtual PassRefPtr<Element> createElementNS(const String& namespaceURI, cons
t String& qualifiedName, ExceptionCode&); | 308 virtual PassRefPtr<Element> createElementNS(const String& namespaceURI, cons
t String& qualifiedName, ExceptionCode&); |
309 PassRefPtr<Element> createElement(const QualifiedName&, bool createdByParser
); | 309 PassRefPtr<Element> createElement(const QualifiedName&, bool createdByParser
); |
310 | 310 |
311 bool cssStickyPositionEnabled() const; | 311 bool cssStickyPositionEnabled() const; |
312 bool cssRegionsEnabled() const; | |
313 bool cssCompositingEnabled() const; | 312 bool cssCompositingEnabled() const; |
314 #if ENABLE(CSS_REGIONS) | |
315 PassRefPtr<DOMNamedFlowCollection> webkitGetNamedFlows(); | 313 PassRefPtr<DOMNamedFlowCollection> webkitGetNamedFlows(); |
316 #endif | |
317 | 314 |
318 NamedFlowCollection* namedFlows(); | 315 NamedFlowCollection* namedFlows(); |
319 | 316 |
320 bool regionBasedColumnsEnabled() const; | 317 bool regionBasedColumnsEnabled() const; |
321 | 318 |
322 bool cssGridLayoutEnabled() const; | 319 bool cssGridLayoutEnabled() const; |
323 | 320 |
324 /** | 321 /** |
325 * Retrieve all nodes that intersect a rect in the window's document, until
it is fully enclosed by | 322 * Retrieve all nodes that intersect a rect in the window's document, until
it is fully enclosed by |
326 * the boundaries of a node. | 323 * the boundaries of a node. |
(...skipping 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1509 trackForDebugging(); | 1506 trackForDebugging(); |
1510 #endif | 1507 #endif |
1511 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); | 1508 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); |
1512 } | 1509 } |
1513 | 1510 |
1514 Node* eventTargetNodeForDocument(Document*); | 1511 Node* eventTargetNodeForDocument(Document*); |
1515 | 1512 |
1516 } // namespace WebCore | 1513 } // namespace WebCore |
1517 | 1514 |
1518 #endif // Document_h | 1515 #endif // Document_h |
OLD | NEW |