Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Side by Side Diff: Source/core/inspector/DOMPatchSupport.cpp

Issue 144063004: Add support for DOM4's XMLDocument interface (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove FIXME about XMLDocument.load() Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/frame/Window.idl ('k') | Source/core/inspector/InspectorDOMAgent.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 21 matching lines...) Expand all
32 #include "core/inspector/DOMPatchSupport.h" 32 #include "core/inspector/DOMPatchSupport.h"
33 33
34 #include "HTMLNames.h" 34 #include "HTMLNames.h"
35 #include "bindings/v8/ExceptionState.h" 35 #include "bindings/v8/ExceptionState.h"
36 #include "bindings/v8/ExceptionStatePlaceholder.h" 36 #include "bindings/v8/ExceptionStatePlaceholder.h"
37 #include "core/dom/Attribute.h" 37 #include "core/dom/Attribute.h"
38 #include "core/dom/ContextFeatures.h" 38 #include "core/dom/ContextFeatures.h"
39 #include "core/dom/Document.h" 39 #include "core/dom/Document.h"
40 #include "core/dom/DocumentFragment.h" 40 #include "core/dom/DocumentFragment.h"
41 #include "core/dom/Node.h" 41 #include "core/dom/Node.h"
42 #include "core/dom/XMLDocument.h"
42 #include "core/html/HTMLDocument.h" 43 #include "core/html/HTMLDocument.h"
43 #include "core/html/parser/HTMLDocumentParser.h" 44 #include "core/html/parser/HTMLDocumentParser.h"
44 #include "core/inspector/DOMEditor.h" 45 #include "core/inspector/DOMEditor.h"
45 #include "core/inspector/InspectorHistory.h" 46 #include "core/inspector/InspectorHistory.h"
46 #include "core/xml/parser/XMLDocumentParser.h" 47 #include "core/xml/parser/XMLDocumentParser.h"
47 #include "wtf/Deque.h" 48 #include "wtf/Deque.h"
48 #include "wtf/HashTraits.h" 49 #include "wtf/HashTraits.h"
49 #include "wtf/RefPtr.h" 50 #include "wtf/RefPtr.h"
50 #include "wtf/SHA1.h" 51 #include "wtf/SHA1.h"
51 #include "wtf/text/Base64.h" 52 #include "wtf/text/Base64.h"
(...skipping 29 matching lines...) Expand all
81 , m_document(document) 82 , m_document(document)
82 { 83 {
83 } 84 }
84 85
85 void DOMPatchSupport::patchDocument(const String& markup) 86 void DOMPatchSupport::patchDocument(const String& markup)
86 { 87 {
87 RefPtr<Document> newDocument; 88 RefPtr<Document> newDocument;
88 if (m_document.isHTMLDocument()) 89 if (m_document.isHTMLDocument())
89 newDocument = HTMLDocument::create(); 90 newDocument = HTMLDocument::create();
90 else if (m_document.isXHTMLDocument()) 91 else if (m_document.isXHTMLDocument())
91 newDocument = HTMLDocument::createXHTML(); 92 newDocument = XMLDocument::createXHTML();
92 else if (m_document.isSVGDocument()) 93 else if (m_document.isXMLDocument())
93 newDocument = Document::create(); 94 newDocument = XMLDocument::create();
94 95
95 ASSERT(newDocument); 96 ASSERT(newDocument);
96 newDocument->setContextFeatures(m_document.contextFeatures()); 97 newDocument->setContextFeatures(m_document.contextFeatures());
97 RefPtr<DocumentParser> parser; 98 RefPtr<DocumentParser> parser;
98 if (m_document.isHTMLDocument()) 99 if (m_document.isHTMLDocument())
99 parser = HTMLDocumentParser::create(toHTMLDocument(newDocument.get()), f alse); 100 parser = HTMLDocumentParser::create(toHTMLDocument(newDocument.get()), f alse);
100 else 101 else
101 parser = XMLDocumentParser::create(newDocument.get(), 0); 102 parser = XMLDocumentParser::create(newDocument.get(), 0);
102 parser->insert(markup); // Use insert() so that the parser will not yield. 103 parser->insert(markup); // Use insert() so that the parser will not yield.
103 parser->finish(); 104 parser->finish();
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 void DOMPatchSupport::dumpMap(const ResultMap& map, const String& name) 508 void DOMPatchSupport::dumpMap(const ResultMap& map, const String& name)
508 { 509 {
509 fprintf(stderr, "\n\n"); 510 fprintf(stderr, "\n\n");
510 for (size_t i = 0; i < map.size(); ++i) 511 for (size_t i = 0; i < map.size(); ++i)
511 fprintf(stderr, "%s[%lu]: %s (%p) - [%lu]\n", name.utf8().data(), i, map [i].first ? nodeName(map[i].first->m_node).utf8().data() : "", map[i].first, map [i].second); 512 fprintf(stderr, "%s[%lu]: %s (%p) - [%lu]\n", name.utf8().data(), i, map [i].first ? nodeName(map[i].first->m_node).utf8().data() : "", map[i].first, map [i].second);
512 } 513 }
513 #endif 514 #endif
514 515
515 } // namespace WebCore 516 } // namespace WebCore
516 517
OLDNEW
« no previous file with comments | « Source/core/frame/Window.idl ('k') | Source/core/inspector/InspectorDOMAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698