| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Peter Kelly (pmk@post.com) | 2 * Copyright (C) 2000 Peter Kelly (pmk@post.com) |
| 3 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved. |
| 4 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 4 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 5 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) | 5 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) |
| 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 7 * Copyright (C) 2008 Holger Hans Peter Freyther | 7 * Copyright (C) 2008 Holger Hans Peter Freyther |
| 8 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 8 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 9 * | 9 * |
| 10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
| (...skipping 990 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1001 const ContainerNode* currentNode = m_currentNode; | 1001 const ContainerNode* currentNode = m_currentNode; |
| 1002 if (newElement->hasTagName(HTMLNames::templateTag)) | 1002 if (newElement->hasTagName(HTMLNames::templateTag)) |
| 1003 pushCurrentNode(toHTMLTemplateElement(newElement.get())->content()); | 1003 pushCurrentNode(toHTMLTemplateElement(newElement.get())->content()); |
| 1004 else | 1004 else |
| 1005 pushCurrentNode(newElement.get()); | 1005 pushCurrentNode(newElement.get()); |
| 1006 | 1006 |
| 1007 if (isHTMLHtmlElement(newElement.get())) | 1007 if (isHTMLHtmlElement(newElement.get())) |
| 1008 toHTMLHtmlElement(newElement)->insertedByParser(); | 1008 toHTMLHtmlElement(newElement)->insertedByParser(); |
| 1009 | 1009 |
| 1010 if (!m_parsingFragment && isFirstElement && document()->frame()) | 1010 if (!m_parsingFragment && isFirstElement && document()->frame()) |
| 1011 document()->frame()->loader()->dispatchDocumentElementAvailable(); | 1011 document()->frame()->loader().dispatchDocumentElementAvailable(); |
| 1012 } | 1012 } |
| 1013 | 1013 |
| 1014 void XMLDocumentParser::endElementNs() | 1014 void XMLDocumentParser::endElementNs() |
| 1015 { | 1015 { |
| 1016 if (isStopped()) | 1016 if (isStopped()) |
| 1017 return; | 1017 return; |
| 1018 | 1018 |
| 1019 if (m_parserPaused) { | 1019 if (m_parserPaused) { |
| 1020 m_pendingCallbacks.append(adoptPtr(new PendingEndElementNSCallback())); | 1020 m_pendingCallbacks.append(adoptPtr(new PendingEndElementNSCallback())); |
| 1021 return; | 1021 return; |
| (...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1635 sax.initialized = XML_SAX2_MAGIC; | 1635 sax.initialized = XML_SAX2_MAGIC; |
| 1636 RefPtr<XMLParserContext> parser = XMLParserContext::createStringParser(&sax,
&state); | 1636 RefPtr<XMLParserContext> parser = XMLParserContext::createStringParser(&sax,
&state); |
| 1637 String parseString = "<?xml version=\"1.0\"?><attrs " + string + " />"; | 1637 String parseString = "<?xml version=\"1.0\"?><attrs " + string + " />"; |
| 1638 parseChunk(parser->context(), parseString); | 1638 parseChunk(parser->context(), parseString); |
| 1639 finishParsing(parser->context()); | 1639 finishParsing(parser->context()); |
| 1640 attrsOK = state.gotAttributes; | 1640 attrsOK = state.gotAttributes; |
| 1641 return state.attributes; | 1641 return state.attributes; |
| 1642 } | 1642 } |
| 1643 | 1643 |
| 1644 } // namespace WebCore | 1644 } // namespace WebCore |
| OLD | NEW |