| 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 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 #ifndef HTMLStackItem_h | 26 #ifndef HTMLStackItem_h |
| 27 #define HTMLStackItem_h | 27 #define HTMLStackItem_h |
| 28 | 28 |
| 29 #include "core/HTMLNames.h" | 29 #include "core/HTMLNames.h" |
| 30 #include "core/MathMLNames.h" | 30 #include "core/MathMLNames.h" |
| 31 #include "core/SVGNames.h" | 31 #include "core/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 #include "platform/RuntimeEnabledFeatures.h" | 34 #include "platform/RuntimeEnabledFeatures.h" |
| 35 #include "wtf/RefCounted.h" | |
| 36 #include "wtf/RefPtr.h" | |
| 37 #include "wtf/text/AtomicString.h" | 35 #include "wtf/text/AtomicString.h" |
| 38 | 36 |
| 39 namespace blink { | 37 namespace blink { |
| 40 | 38 |
| 41 class ContainerNode; | 39 class ContainerNode; |
| 42 | 40 |
| 43 class HTMLStackItem : public GarbageCollectedFinalized<HTMLStackItem> { | 41 class HTMLStackItem : public GarbageCollectedFinalized<HTMLStackItem> { |
| 44 public: | 42 public: |
| 45 enum ItemType { | 43 enum ItemType { |
| 46 ItemForContextElement, | 44 ItemForContextElement, |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 | 238 |
| 241 AtomicString m_tokenLocalName; | 239 AtomicString m_tokenLocalName; |
| 242 Vector<Attribute> m_tokenAttributes; | 240 Vector<Attribute> m_tokenAttributes; |
| 243 AtomicString m_namespaceURI; | 241 AtomicString m_namespaceURI; |
| 244 bool m_isDocumentFragmentNode; | 242 bool m_isDocumentFragmentNode; |
| 245 }; | 243 }; |
| 246 | 244 |
| 247 } // namespace blink | 245 } // namespace blink |
| 248 | 246 |
| 249 #endif // HTMLStackItem_h | 247 #endif // HTMLStackItem_h |
| OLD | NEW |