| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 return false; | 133 return false; |
| 134 const AtomicString& tagName = localName(); | 134 const AtomicString& tagName = localName(); |
| 135 return tagName == HTMLNames::addressTag | 135 return tagName == HTMLNames::addressTag |
| 136 || tagName == HTMLNames::appletTag | 136 || tagName == HTMLNames::appletTag |
| 137 || tagName == HTMLNames::areaTag | 137 || tagName == HTMLNames::areaTag |
| 138 || tagName == HTMLNames::articleTag | 138 || tagName == HTMLNames::articleTag |
| 139 || tagName == HTMLNames::asideTag | 139 || tagName == HTMLNames::asideTag |
| 140 || tagName == HTMLNames::baseTag | 140 || tagName == HTMLNames::baseTag |
| 141 || tagName == HTMLNames::basefontTag | 141 || tagName == HTMLNames::basefontTag |
| 142 || tagName == HTMLNames::bgsoundTag | 142 || tagName == HTMLNames::bgsoundTag |
| 143 || tagName == HTMLNames::blinkTag |
| 143 || tagName == HTMLNames::blockquoteTag | 144 || tagName == HTMLNames::blockquoteTag |
| 144 || tagName == HTMLNames::bodyTag | 145 || tagName == HTMLNames::bodyTag |
| 145 || tagName == HTMLNames::brTag | 146 || tagName == HTMLNames::brTag |
| 146 || tagName == HTMLNames::buttonTag | 147 || tagName == HTMLNames::buttonTag |
| 147 || tagName == HTMLNames::captionTag | 148 || tagName == HTMLNames::captionTag |
| 148 || tagName == HTMLNames::centerTag | 149 || tagName == HTMLNames::centerTag |
| 149 || tagName == HTMLNames::colTag | 150 || tagName == HTMLNames::colTag |
| 150 || tagName == HTMLNames::colgroupTag | 151 || tagName == HTMLNames::colgroupTag |
| 151 || tagName == HTMLNames::commandTag | 152 || tagName == HTMLNames::commandTag |
| 152 || tagName == HTMLNames::ddTag | 153 || tagName == HTMLNames::ddTag |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 | 239 |
| 239 AtomicString m_tokenLocalName; | 240 AtomicString m_tokenLocalName; |
| 240 Vector<Attribute> m_tokenAttributes; | 241 Vector<Attribute> m_tokenAttributes; |
| 241 AtomicString m_namespaceURI; | 242 AtomicString m_namespaceURI; |
| 242 bool m_isDocumentFragmentNode; | 243 bool m_isDocumentFragmentNode; |
| 243 }; | 244 }; |
| 244 | 245 |
| 245 } // namespace blink | 246 } // namespace blink |
| 246 | 247 |
| 247 #endif // HTMLStackItem_h | 248 #endif // HTMLStackItem_h |
| OLD | NEW |