OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r
ights reserved. |
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. |
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. |
(...skipping 1217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1228 } | 1228 } |
1229 | 1229 |
1230 KURL Document::baseURI() const | 1230 KURL Document::baseURI() const |
1231 { | 1231 { |
1232 return m_baseURL; | 1232 return m_baseURL; |
1233 } | 1233 } |
1234 | 1234 |
1235 void Document::setContent(const String& content) | 1235 void Document::setContent(const String& content) |
1236 { | 1236 { |
1237 open(); | 1237 open(); |
1238 m_parser->append(content.impl()); | 1238 m_parser->append(content); |
1239 close(); | 1239 close(); |
1240 } | 1240 } |
1241 | 1241 |
1242 String Document::suggestedMIMEType() const | 1242 String Document::suggestedMIMEType() const |
1243 { | 1243 { |
1244 if (isXMLDocument()) { | 1244 if (isXMLDocument()) { |
1245 if (isXHTMLDocument()) | 1245 if (isXHTMLDocument()) |
1246 return "application/xhtml+xml"; | 1246 return "application/xhtml+xml"; |
1247 if (isSVGDocument()) | 1247 if (isSVGDocument()) |
1248 return "image/svg+xml"; | 1248 return "image/svg+xml"; |
(...skipping 4592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5841 #ifndef NDEBUG | 5841 #ifndef NDEBUG |
5842 using namespace blink; | 5842 using namespace blink; |
5843 void showLiveDocumentInstances() | 5843 void showLiveDocumentInstances() |
5844 { | 5844 { |
5845 WeakDocumentSet& set = liveDocumentSet(); | 5845 WeakDocumentSet& set = liveDocumentSet(); |
5846 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 5846 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
5847 for (Document* document : set) | 5847 for (Document* document : set) |
5848 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); | 5848 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); |
5849 } | 5849 } |
5850 #endif | 5850 #endif |
OLD | NEW |