| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2008, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2008, 2009, 2010 Apple 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| 11 * documentation and/or other materials provided with the distribution. | 11 * documentation and/or other materials provided with the distribution. |
| 12 * | 12 * |
| 13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY | 13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY |
| 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR | 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR |
| 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 19 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 19 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 20 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 20 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 22 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 22 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #include "config.h" | 25 #include "config.h" |
| 26 #include "core/html/HTMLViewSourceDocument.h" | 26 #include "core/html/HTMLViewSourceDocument.h" |
| 27 | 27 |
| 28 #include "HTMLNames.h" | 28 #include "HTMLNames.h" |
| 29 #include "core/dom/Attribute.h" | |
| 30 #include "core/dom/DocumentStyleSheetCollection.h" | 29 #include "core/dom/DocumentStyleSheetCollection.h" |
| 31 #include "core/dom/Text.h" | 30 #include "core/dom/Text.h" |
| 32 #include "core/html/HTMLAnchorElement.h" | 31 #include "core/html/HTMLAnchorElement.h" |
| 33 #include "core/html/HTMLBRElement.h" | 32 #include "core/html/HTMLBRElement.h" |
| 34 #include "core/html/HTMLBaseElement.h" | 33 #include "core/html/HTMLBaseElement.h" |
| 35 #include "core/html/HTMLBodyElement.h" | 34 #include "core/html/HTMLBodyElement.h" |
| 36 #include "core/html/HTMLDivElement.h" | 35 #include "core/html/HTMLDivElement.h" |
| 37 #include "core/html/HTMLHtmlElement.h" | 36 #include "core/html/HTMLHtmlElement.h" |
| 38 #include "core/html/HTMLTableCellElement.h" | 37 #include "core/html/HTMLTableCellElement.h" |
| 39 #include "core/html/HTMLTableElement.h" | 38 #include "core/html/HTMLTableElement.h" |
| 40 #include "core/html/HTMLTableRowElement.h" | 39 #include "core/html/HTMLTableRowElement.h" |
| 41 #include "core/html/HTMLTableSectionElement.h" | 40 #include "core/html/HTMLTableSectionElement.h" |
| 42 #include "core/html/parser/HTMLToken.h" | 41 #include "core/html/parser/HTMLToken.h" |
| 43 #include "core/html/parser/HTMLViewSourceParser.h" | 42 #include "core/html/parser/HTMLViewSourceParser.h" |
| 44 #include "core/platform/text/SegmentedString.h" | |
| 45 | 43 |
| 46 namespace WebCore { | 44 namespace WebCore { |
| 47 | 45 |
| 48 using namespace HTMLNames; | 46 using namespace HTMLNames; |
| 49 | 47 |
| 50 HTMLViewSourceDocument::HTMLViewSourceDocument(Frame* frame, const KURL& url, co
nst String& mimeType) | 48 HTMLViewSourceDocument::HTMLViewSourceDocument(Frame* frame, const KURL& url, co
nst String& mimeType) |
| 51 : HTMLDocument(frame, url) | 49 : HTMLDocument(frame, url) |
| 52 , m_type(mimeType) | 50 , m_type(mimeType) |
| 53 { | 51 { |
| 54 styleSheetCollection()->setUsesBeforeAfterRulesOverride(true); | 52 styleSheetCollection()->setUsesBeforeAfterRulesOverride(true); |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 classValue = "webkit-html-attribute-value webkit-html-resource-link"; | 297 classValue = "webkit-html-attribute-value webkit-html-resource-link"; |
| 300 anchor->setAttribute(classAttr, classValue); | 298 anchor->setAttribute(classAttr, classValue); |
| 301 anchor->setAttribute(targetAttr, "_blank"); | 299 anchor->setAttribute(targetAttr, "_blank"); |
| 302 anchor->setAttribute(hrefAttr, url); | 300 anchor->setAttribute(hrefAttr, url); |
| 303 m_current->parserAppendChild(anchor); | 301 m_current->parserAppendChild(anchor); |
| 304 anchor->lazyAttach(); | 302 anchor->lazyAttach(); |
| 305 return anchor.release(); | 303 return anchor.release(); |
| 306 } | 304 } |
| 307 | 305 |
| 308 } | 306 } |
| OLD | NEW |