| 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/text/AtomicString.h" | 35 #include "platform/wtf/text/AtomicString.h" |
| 36 | 36 |
| 37 namespace blink { | 37 namespace blink { |
| 38 | 38 |
| 39 class ContainerNode; | 39 class ContainerNode; |
| 40 | 40 |
| 41 class HTMLStackItem : public GarbageCollectedFinalized<HTMLStackItem> { | 41 class HTMLStackItem : public GarbageCollectedFinalized<HTMLStackItem> { |
| 42 public: | 42 public: |
| 43 enum ItemType { kItemForContextElement, kItemForDocumentFragmentNode }; | 43 enum ItemType { kItemForContextElement, kItemForDocumentFragmentNode }; |
| 44 | 44 |
| 45 // Used by document fragment node and context element. | 45 // Used by document fragment node and context element. |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 | 212 |
| 213 AtomicString token_local_name_; | 213 AtomicString token_local_name_; |
| 214 Vector<Attribute> token_attributes_; | 214 Vector<Attribute> token_attributes_; |
| 215 AtomicString namespace_uri_; | 215 AtomicString namespace_uri_; |
| 216 bool is_document_fragment_node_; | 216 bool is_document_fragment_node_; |
| 217 }; | 217 }; |
| 218 | 218 |
| 219 } // namespace blink | 219 } // namespace blink |
| 220 | 220 |
| 221 #endif // HTMLStackItem_h | 221 #endif // HTMLStackItem_h |
| OLD | NEW |