Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(209)

Side by Side Diff: Source/core/html/parser/HTMLStackItem.h

Issue 419213002: [Not for review] Implement a <blink> tag in Blink-in-JS Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/html/parser/HTMLElementStack.cpp ('k') | Source/core/html/parser/HTMLTreeBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698