| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Company 100, Inc. All rights reserved. | 2 * Copyright (C) 2012 Company 100, Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef HTMLStackItem_h | 26 #ifndef HTMLStackItem_h |
| 27 #define HTMLStackItem_h | 27 #define HTMLStackItem_h |
| 28 | 28 |
| 29 #include "HTMLNames.h" | 29 #include "HTMLNames.h" |
| 30 #include "MathMLNames.h" | 30 #include "MathMLNames.h" |
| 31 #include "SVGNames.h" | 31 #include "SVGNames.h" |
| 32 #include "core/dom/Element.h" | 32 #include "core/dom/Element.h" |
| 33 #include "core/html/parser/AtomicHTMLToken.h" | 33 #include "core/html/parser/AtomicHTMLToken.h" |
| 34 | 34 #include "wtf/RefCounted.h" |
| 35 #include <wtf/RefCounted.h> | 35 #include "wtf/RefPtr.h" |
| 36 #include <wtf/RefPtr.h> | 36 #include "wtf/text/AtomicString.h" |
| 37 #include <wtf/text/AtomicString.h> | |
| 38 | 37 |
| 39 namespace WebCore { | 38 namespace WebCore { |
| 40 | 39 |
| 41 class ContainerNode; | 40 class ContainerNode; |
| 42 | 41 |
| 43 class HTMLStackItem : public RefCounted<HTMLStackItem> { | 42 class HTMLStackItem : public RefCounted<HTMLStackItem> { |
| 44 public: | 43 public: |
| 45 enum ItemType { | 44 enum ItemType { |
| 46 ItemForContextElement, | 45 ItemForContextElement, |
| 47 ItemForDocumentFragmentNode | 46 ItemForDocumentFragmentNode |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 | 237 |
| 239 AtomicString m_tokenLocalName; | 238 AtomicString m_tokenLocalName; |
| 240 Vector<Attribute> m_tokenAttributes; | 239 Vector<Attribute> m_tokenAttributes; |
| 241 AtomicString m_namespaceURI; | 240 AtomicString m_namespaceURI; |
| 242 bool m_isDocumentFragmentNode; | 241 bool m_isDocumentFragmentNode; |
| 243 }; | 242 }; |
| 244 | 243 |
| 245 } // namespace WebCore | 244 } // namespace WebCore |
| 246 | 245 |
| 247 #endif // HTMLStackItem_h | 246 #endif // HTMLStackItem_h |
| OLD | NEW |