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

Side by Side Diff: WebCore/html/parser/HTMLTreeBuilder.h

Issue 3403012: Merge 67357 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/517/
Patch Set: Created 10 years, 3 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
« no previous file with comments | « WebCore/dom/ContainerNode.cpp ('k') | WebCore/html/parser/HTMLTreeBuilder.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google, Inc. All Rights Reserved. 2 * Copyright (C) 2010 Google, 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 void defaultForInHead(); 161 void defaultForInHead();
162 void defaultForInHeadNoscript(); 162 void defaultForInHeadNoscript();
163 void defaultForAfterHead(); 163 void defaultForAfterHead();
164 void defaultForInTableText(); 164 void defaultForInTableText();
165 165
166 void processUsingSecondaryInsertionModeAndAdjustInsertionMode(AtomicHTMLToke n&); 166 void processUsingSecondaryInsertionModeAndAdjustInsertionMode(AtomicHTMLToke n&);
167 167
168 PassRefPtr<NamedNodeMap> attributesForIsindexInput(AtomicHTMLToken&); 168 PassRefPtr<NamedNodeMap> attributesForIsindexInput(AtomicHTMLToken&);
169 169
170 HTMLElementStack::ElementRecord* furthestBlockForFormattingElement(Element*) ; 170 HTMLElementStack::ElementRecord* furthestBlockForFormattingElement(Element*) ;
171 void reparentChildren(Element* oldParent, Element* newParent);
172 void callTheAdoptionAgency(AtomicHTMLToken&); 171 void callTheAdoptionAgency(AtomicHTMLToken&);
173 172
174 void closeTheCell(); 173 void closeTheCell();
175 174
176 template <bool shouldClose(const Element*)> 175 template <bool shouldClose(const Element*)>
177 void processCloseWhenNestedTag(AtomicHTMLToken&); 176 void processCloseWhenNestedTag(AtomicHTMLToken&);
178 177
179 bool m_framesetOk; 178 bool m_framesetOk;
180 179
181 // FIXME: Implement error reporting. 180 // FIXME: Implement error reporting.
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 // empty string input. 262 // empty string input.
264 // The double* parameter may be 0. 263 // The double* parameter may be 0.
265 bool parseToDoubleForNumberType(const String&, double*); 264 bool parseToDoubleForNumberType(const String&, double*);
266 // Converts the specified number to a string. This is an implementation of 265 // Converts the specified number to a string. This is an implementation of
267 // HTML5's "algorithm to convert a number to a string" for NUMBER/RANGE types. 266 // HTML5's "algorithm to convert a number to a string" for NUMBER/RANGE types.
268 String serializeForNumberType(double); 267 String serializeForNumberType(double);
269 268
270 } 269 }
271 270
272 #endif 271 #endif
OLDNEW
« no previous file with comments | « WebCore/dom/ContainerNode.cpp ('k') | WebCore/html/parser/HTMLTreeBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698