| 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 Apple Inc. All rights
reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
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 * | 9 * |
| 10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
| (...skipping 1232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1243 | 1243 |
| 1244 unsigned short m_listenerTypes; | 1244 unsigned short m_listenerTypes; |
| 1245 | 1245 |
| 1246 RefPtr<StyleSheetList> m_styleSheets; // All of the stylesheets that are cur
rently in effect for our media type and stylesheet set. | 1246 RefPtr<StyleSheetList> m_styleSheets; // All of the stylesheets that are cur
rently in effect for our media type and stylesheet set. |
| 1247 | 1247 |
| 1248 typedef ListHashSet<Node*, 32> StyleSheetCandidateListHashSet; | 1248 typedef ListHashSet<Node*, 32> StyleSheetCandidateListHashSet; |
| 1249 StyleSheetCandidateListHashSet m_styleSheetCandidateNodes; // All of the nod
es that could potentially provide stylesheets to the document (<link>, <style>,
<?xml-stylesheet>) | 1249 StyleSheetCandidateListHashSet m_styleSheetCandidateNodes; // All of the nod
es that could potentially provide stylesheets to the document (<link>, <style>,
<?xml-stylesheet>) |
| 1250 | 1250 |
| 1251 typedef ListHashSet<Element*, 64> FormElementListHashSet; | 1251 typedef ListHashSet<Element*, 64> FormElementListHashSet; |
| 1252 FormElementListHashSet m_formElementsWithState; | 1252 FormElementListHashSet m_formElementsWithState; |
| 1253 typedef ListHashSet<FormAssociatedElement*, 32> FormAssociatedElementListHas
hSet; | 1253 typedef ListHashSet<RefPtr<FormAssociatedElement>, 32> FormAssociatedElement
ListHashSet; |
| 1254 FormAssociatedElementListHashSet m_formElementsWithFormAttribute; | 1254 FormAssociatedElementListHashSet m_formElementsWithFormAttribute; |
| 1255 | 1255 |
| 1256 typedef HashMap<FormElementKey, Vector<String>, FormElementKeyHash, FormElem
entKeyHashTraits> FormElementStateMap; | 1256 typedef HashMap<FormElementKey, Vector<String>, FormElementKeyHash, FormElem
entKeyHashTraits> FormElementStateMap; |
| 1257 FormElementStateMap m_stateForNewFormElements; | 1257 FormElementStateMap m_stateForNewFormElements; |
| 1258 | 1258 |
| 1259 Color m_linkColor; | 1259 Color m_linkColor; |
| 1260 Color m_visitedLinkColor; | 1260 Color m_visitedLinkColor; |
| 1261 Color m_activeLinkColor; | 1261 Color m_activeLinkColor; |
| 1262 | 1262 |
| 1263 String m_preferredStylesheetSet; | 1263 String m_preferredStylesheetSet; |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1438 if (m_document) | 1438 if (m_document) |
| 1439 m_document->guardRef(); | 1439 m_document->guardRef(); |
| 1440 #if !defined(NDEBUG) || (defined(DUMP_NODE_STATISTICS) && DUMP_NODE_STATISTICS) | 1440 #if !defined(NDEBUG) || (defined(DUMP_NODE_STATISTICS) && DUMP_NODE_STATISTICS) |
| 1441 trackForDebugging(); | 1441 trackForDebugging(); |
| 1442 #endif | 1442 #endif |
| 1443 } | 1443 } |
| 1444 | 1444 |
| 1445 } // namespace WebCore | 1445 } // namespace WebCore |
| 1446 | 1446 |
| 1447 #endif // Document_h | 1447 #endif // Document_h |
| OLD | NEW |