Home | History | Annotate | Download | only in web

Lines Matching refs:meta

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