Home | History | Annotate | Download | only in src

Lines Matching full:meta

135         // Skip the open tag of original META tag which declare charset since we
136 // have overrided the META which have correct charset declaration after
139 const HTMLMetaElement* meta = static_cast<const HTMLMetaElement*>(element);
140 // Check whether the META tag has declared charset or not.
141 String equiv = meta->httpEquiv();
143 String content = meta->content();
145 // Find META tag declared charset, we need to skip it when
205 // Check meta element. WebKit only pre-parse the first 512 bytes
206 // of the document. If the whole <HEAD> is larger and meta is the
209 // make sure the meta will in first child of head tag.
211 // First we generate new content for writing correct META element.
216 // Will search each META which has charset declaration, and skip them all
234 // Skip the end tag of original META tag which declare charset.
235 // Need not to check whether it's META tag since we guarantee
236 // skipMetaElement is definitely META tag if it's not 0.