| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2008, 2009 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 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 Result<Element> addSpanWithClassName(const AtomicString&); | 59 Result<Element> addSpanWithClassName(const AtomicString&); |
| 60 void addLine(const AtomicString& className); | 60 void addLine(const AtomicString& className); |
| 61 void finishLine(); | 61 void finishLine(); |
| 62 void addText(const String& text, const AtomicString& className); | 62 void addText(const String& text, const AtomicString& className); |
| 63 int addRange(const String& source, int start, int end, const String& classNa
me, bool isLink = false, bool isAnchor = false, const String& link = String()); | 63 int addRange(const String& source, int start, int end, const String& classNa
me, bool isLink = false, bool isAnchor = false, const String& link = String()); |
| 64 Result<Element> addLink(const AtomicString& url, bool isAnchor); | 64 Result<Element> addLink(const AtomicString& url, bool isAnchor); |
| 65 Result<Element> addBase(const AtomicString& href); | 65 Result<Element> addBase(const AtomicString& href); |
| 66 | 66 |
| 67 String m_type; | 67 String m_type; |
| 68 Member<Element> m_current; | 68 Member<Element> m_current; |
| 69 Persistent<HTMLTableSectionElement> m_tbody; | 69 Member<HTMLTableSectionElement> m_tbody; |
| 70 Persistent<HTMLTableCellElement> m_td; | 70 Member<HTMLTableCellElement> m_td; |
| 71 }; | 71 }; |
| 72 | 72 |
| 73 } | 73 } |
| 74 | 74 |
| 75 #endif // HTMLViewSourceDocument_h | 75 #endif // HTMLViewSourceDocument_h |
| OLD | NEW |