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

  /external/webkit/Source/WebCore/html/parser/
HTMLScriptRunner.cpp 41 #include "ScriptElement.h"
137 if (ScriptElement* scriptElement = toScriptElement(element.get())) {
144 scriptElement->executeScript(sourceCode);
167 bool HTMLScriptRunner::execute(PassRefPtr<Element> scriptElement, const TextPosition1& scriptStartPosition)
169 ASSERT(scriptElement);
175 runScript(scriptElement.get(), scriptStartPosition);
291 ScriptElement* scriptElement = toScriptElement(script);
292 ASSERT(scriptElement);
    [all...]
HTMLDocumentParser.cpp 201 RefPtr<Element> scriptElement = m_treeBuilder->takeScriptToProcess(scriptStartPosition);
205 return m_scriptRunner->execute(scriptElement.release(), scriptStartPosition);
  /external/webkit/Source/WebCore/dom/
ScriptRunner.cpp 33 #include "ScriptElement.h"
52 void ScriptRunner::queueScriptForExecution(ScriptElement* scriptElement, CachedResourceHandle<CachedScript> cachedScript, ExecutionType executionType)
54 ASSERT(scriptElement);
56 Element* element = scriptElement->element();
XMLDocumentParserQt.cpp 51 #include "ScriptElement.h"
536 ScriptElement* scriptElement = toScriptElement(newElement.get());
537 if (scriptElement)
584 ScriptElement* scriptElement = toScriptElement(element);
585 if (!scriptElement) {
594 bool successfullyPrepared = scriptElement->prepareScript(m_scriptStartPosition, ScriptElement::AllowLegacyTypeInTypeAttribute);
597 if (!scriptElement->isScriptTypeSupported(ScriptElement::AllowLegacyTypeInTypeAttribute)
    [all...]
XMLDocumentParser.cpp 49 #include "ScriptElement.h"
353 ScriptElement* scriptElement = toScriptElement(e.get());
354 ASSERT(scriptElement);
360 scriptElement->dispatchErrorEvent();
362 scriptElement->executeScript(sourceCode);
363 scriptElement->dispatchLoadEvent();
XMLDocumentParserLibxml2.cpp 50 #include "ScriptElement.h"
821 ScriptElement* scriptElement = toScriptElement(newElement.get());
822 if (scriptElement)
880 ScriptElement* scriptElement = toScriptElement(element);
881 if (!scriptElement) {
890 bool successfullyPrepared = scriptElement->prepareScript(m_scriptStartPosition, ScriptElement::AllowLegacyTypeInTypeAttribute);
893 if (!scriptElement->isScriptTypeSupported(ScriptElement::AllowLegacyTypeInTypeAttribute)
    [all...]
xml_expat_tokenizer.cpp 500 Element* scriptElement = static_cast<Element*>(n);
504 scriptHref = scriptElement->getAttribute(srcAttr);
508 const AtomicString& charset = scriptElement->getAttribute(charsetAttr);
510 m_scriptElement = scriptElement;
521 for (Node* child = scriptElement->firstChild(); child; child = child->nextSibling()) {

Completed in 103 milliseconds