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

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

Issue 16140024: Fix resource scheduling on documents with <frameset>. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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) 2010 Google, Inc. All Rights Reserved. 2 * Copyright (C) 2010 Google, Inc. All Rights Reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 void insertDoctype(AtomicHTMLToken*); 102 void insertDoctype(AtomicHTMLToken*);
103 void insertComment(AtomicHTMLToken*); 103 void insertComment(AtomicHTMLToken*);
104 void insertCommentOnDocument(AtomicHTMLToken*); 104 void insertCommentOnDocument(AtomicHTMLToken*);
105 void insertCommentOnHTMLHtmlElement(AtomicHTMLToken*); 105 void insertCommentOnHTMLHtmlElement(AtomicHTMLToken*);
106 void insertHTMLElement(AtomicHTMLToken*); 106 void insertHTMLElement(AtomicHTMLToken*);
107 void insertSelfClosingHTMLElement(AtomicHTMLToken*); 107 void insertSelfClosingHTMLElement(AtomicHTMLToken*);
108 void insertFormattingElement(AtomicHTMLToken*); 108 void insertFormattingElement(AtomicHTMLToken*);
109 void insertHTMLHeadElement(AtomicHTMLToken*); 109 void insertHTMLHeadElement(AtomicHTMLToken*);
110 void insertHTMLBodyElement(AtomicHTMLToken*); 110 void insertHTMLBodyElement(AtomicHTMLToken*);
111 void insertHTMLFormElement(AtomicHTMLToken*, bool isDemoted = false); 111 void insertHTMLFormElement(AtomicHTMLToken*, bool isDemoted = false);
112 void insertHTMLFramesetElement(AtomicHTMLToken*);
112 void insertScriptElement(AtomicHTMLToken*); 113 void insertScriptElement(AtomicHTMLToken*);
113 void insertTextNode(const String&, WhitespaceMode = WhitespaceUnknown); 114 void insertTextNode(const String&, WhitespaceMode = WhitespaceUnknown);
114 void insertForeignElement(AtomicHTMLToken*, const AtomicString& namespaceURI ); 115 void insertForeignElement(AtomicHTMLToken*, const AtomicString& namespaceURI );
115 116
116 void insertHTMLHtmlStartTagBeforeHTML(AtomicHTMLToken*); 117 void insertHTMLHtmlStartTagBeforeHTML(AtomicHTMLToken*);
117 void insertHTMLHtmlStartTagInBody(AtomicHTMLToken*); 118 void insertHTMLHtmlStartTagInBody(AtomicHTMLToken*);
118 void insertHTMLBodyStartTagInBody(AtomicHTMLToken*); 119 void insertHTMLBodyStartTagInBody(AtomicHTMLToken*);
119 120
120 void reparent(HTMLElementStack::ElementRecord* newParent, HTMLElementStack:: ElementRecord* child); 121 void reparent(HTMLElementStack::ElementRecord* newParent, HTMLElementStack:: ElementRecord* child);
121 void reparent(HTMLElementStack::ElementRecord* newParent, HTMLStackItem* chi ld); 122 void reparent(HTMLElementStack::ElementRecord* newParent, HTMLStackItem* chi ld);
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 // "whenever a node would be inserted into the current node, it must instead 219 // "whenever a node would be inserted into the current node, it must instead
219 // be foster parented." This flag tracks whether we're in that state. 220 // be foster parented." This flag tracks whether we're in that state.
220 bool m_redirectAttachToFosterParent; 221 bool m_redirectAttachToFosterParent;
221 222
222 bool m_inQuirksMode; 223 bool m_inQuirksMode;
223 }; 224 };
224 225
225 } // namespace WebCore 226 } // namespace WebCore
226 227
227 #endif 228 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698