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

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

Issue 1602663003: Framelet Prototype 2016 using Mojo IPC Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Disabled oilpan Created 4 years, 10 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
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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 || tagName == HTMLNames::divTag 156 || tagName == HTMLNames::divTag
157 || tagName == HTMLNames::dlTag 157 || tagName == HTMLNames::dlTag
158 || tagName == HTMLNames::dtTag 158 || tagName == HTMLNames::dtTag
159 || tagName == HTMLNames::embedTag 159 || tagName == HTMLNames::embedTag
160 || tagName == HTMLNames::fieldsetTag 160 || tagName == HTMLNames::fieldsetTag
161 || tagName == HTMLNames::figcaptionTag 161 || tagName == HTMLNames::figcaptionTag
162 || tagName == HTMLNames::figureTag 162 || tagName == HTMLNames::figureTag
163 || tagName == HTMLNames::footerTag 163 || tagName == HTMLNames::footerTag
164 || tagName == HTMLNames::formTag 164 || tagName == HTMLNames::formTag
165 || tagName == HTMLNames::frameTag 165 || tagName == HTMLNames::frameTag
166 || tagName == HTMLNames::frameletTag
166 || tagName == HTMLNames::framesetTag 167 || tagName == HTMLNames::framesetTag
167 || isNumberedHeaderElement() 168 || isNumberedHeaderElement()
168 || tagName == HTMLNames::headTag 169 || tagName == HTMLNames::headTag
169 || tagName == HTMLNames::headerTag 170 || tagName == HTMLNames::headerTag
170 || tagName == HTMLNames::hgroupTag 171 || tagName == HTMLNames::hgroupTag
171 || tagName == HTMLNames::hrTag 172 || tagName == HTMLNames::hrTag
172 || tagName == HTMLNames::htmlTag 173 || tagName == HTMLNames::htmlTag
173 || tagName == HTMLNames::iframeTag 174 || tagName == HTMLNames::iframeTag
174 || tagName == HTMLNames::imgTag 175 || tagName == HTMLNames::imgTag
175 || tagName == HTMLNames::inputTag 176 || tagName == HTMLNames::inputTag
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 241
241 AtomicString m_tokenLocalName; 242 AtomicString m_tokenLocalName;
242 Vector<Attribute> m_tokenAttributes; 243 Vector<Attribute> m_tokenAttributes;
243 AtomicString m_namespaceURI; 244 AtomicString m_namespaceURI;
244 bool m_isDocumentFragmentNode; 245 bool m_isDocumentFragmentNode;
245 }; 246 };
246 247
247 } // namespace blink 248 } // namespace blink
248 249
249 #endif // HTMLStackItem_h 250 #endif // HTMLStackItem_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698