HomeSort by relevance Sort by last modified time
    Searched refs:inScript (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/html/
HTMLTokenizer.cpp 339 ASSERT(state.inXmp() + state.inTextArea() + state.inTitle() + state.inStyle() + state.inScript() + state.inIFrame() == 1);
340 if (state.inScript() && !m_currentScriptTagStartLineNumber)
364 if (state.inScript())
650 bool handleBrokenComments = m_brokenComments && !(state.inScript() || state.inStyle());
662 if (!(state.inTitle() || state.inScript() || state.inXmp() || state.inTextArea() || state.inStyle() || state.inIFrame())) {
    [all...]
HTMLTokenizer.h 263 bool inScript() const { return testBit(InScript); }
264 void setInScript(bool v) { setBit(InScript, v); }
300 bool inAnyNonHTMLText() const { return m_bits & (InScript | InStyle | InXmp | InTextArea | InTitle | InIFrame); }
304 bool needsSpecialWriteHandling() const { return m_bits & (InScript | InStyle | InXmp | InTextArea | InTitle | InIFrame | TagMask | EntityMask | InPlainText | InComment | InDoctype | InServer | InProcessingInstruction | StartTag); }
311 InScript = 1 << 7,

Completed in 33 milliseconds