| 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, 2014 Apple Inc. All rights reserved. | 3 * Copyright (C) 2005, 2006, 2008, 2014 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. | 8 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. |
| 9 * (http://www.torchmobile.com/) | 9 * (http://www.torchmobile.com/) |
| 10 * | 10 * |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 #include "core/dom/DocumentFragment.h" | 39 #include "core/dom/DocumentFragment.h" |
| 40 #include "core/dom/DocumentParserTiming.h" | 40 #include "core/dom/DocumentParserTiming.h" |
| 41 #include "core/dom/DocumentType.h" | 41 #include "core/dom/DocumentType.h" |
| 42 #include "core/dom/ProcessingInstruction.h" | 42 #include "core/dom/ProcessingInstruction.h" |
| 43 #include "core/dom/ScriptLoader.h" | 43 #include "core/dom/ScriptLoader.h" |
| 44 #include "core/dom/StyleEngine.h" | 44 #include "core/dom/StyleEngine.h" |
| 45 #include "core/dom/TransformSource.h" | 45 #include "core/dom/TransformSource.h" |
| 46 #include "core/fetch/FetchInitiatorTypeNames.h" | 46 #include "core/fetch/FetchInitiatorTypeNames.h" |
| 47 #include "core/fetch/RawResource.h" | 47 #include "core/fetch/RawResource.h" |
| 48 #include "core/fetch/ResourceFetcher.h" | 48 #include "core/fetch/ResourceFetcher.h" |
| 49 #include "core/fetch/ScriptResource.h" | |
| 50 #include "core/frame/LocalFrame.h" | 49 #include "core/frame/LocalFrame.h" |
| 51 #include "core/frame/UseCounter.h" | 50 #include "core/frame/UseCounter.h" |
| 52 #include "core/html/HTMLHtmlElement.h" | 51 #include "core/html/HTMLHtmlElement.h" |
| 53 #include "core/html/HTMLTemplateElement.h" | 52 #include "core/html/HTMLTemplateElement.h" |
| 54 #include "core/html/parser/HTMLEntityParser.h" | 53 #include "core/html/parser/HTMLEntityParser.h" |
| 55 #include "core/html/parser/TextResourceDecoder.h" | 54 #include "core/html/parser/TextResourceDecoder.h" |
| 56 #include "core/inspector/ConsoleMessage.h" | 55 #include "core/inspector/ConsoleMessage.h" |
| 57 #include "core/loader/FrameLoader.h" | 56 #include "core/loader/FrameLoader.h" |
| 58 #include "core/loader/ImageLoader.h" | 57 #include "core/loader/ImageLoader.h" |
| 59 #include "core/svg/graphics/SVGImage.h" | 58 #include "core/svg/graphics/SVGImage.h" |
| (...skipping 1647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1707 RefPtr<XMLParserContext> parser = | 1706 RefPtr<XMLParserContext> parser = |
| 1708 XMLParserContext::createStringParser(&sax, &state); | 1707 XMLParserContext::createStringParser(&sax, &state); |
| 1709 String parseString = "<?xml version=\"1.0\"?><attrs " + string + " />"; | 1708 String parseString = "<?xml version=\"1.0\"?><attrs " + string + " />"; |
| 1710 parseChunk(parser->context(), parseString); | 1709 parseChunk(parser->context(), parseString); |
| 1711 finishParsing(parser->context()); | 1710 finishParsing(parser->context()); |
| 1712 attrsOK = state.gotAttributes; | 1711 attrsOK = state.gotAttributes; |
| 1713 return state.attributes; | 1712 return state.attributes; |
| 1714 } | 1713 } |
| 1715 | 1714 |
| 1716 } // namespace blink | 1715 } // namespace blink |
| OLD | NEW |