OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2005, 2006, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2005, 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 28 matching lines...) Expand all Loading... |
39 #include "core/dom/Text.h" | 39 #include "core/dom/Text.h" |
40 #include "core/editing/EditingStyle.h" | 40 #include "core/editing/EditingStyle.h" |
41 #include "core/editing/HTMLInterchange.h" | 41 #include "core/editing/HTMLInterchange.h" |
42 #include "core/editing/PlainTextRange.h" | 42 #include "core/editing/PlainTextRange.h" |
43 #include "core/editing/VisibleUnits.h" | 43 #include "core/editing/VisibleUnits.h" |
44 #include "core/editing/htmlediting.h" | 44 #include "core/editing/htmlediting.h" |
45 #include "core/editing/iterators/TextIterator.h" | 45 #include "core/editing/iterators/TextIterator.h" |
46 #include "core/frame/UseCounter.h" | 46 #include "core/frame/UseCounter.h" |
47 #include "core/html/HTMLFontElement.h" | 47 #include "core/html/HTMLFontElement.h" |
48 #include "core/html/HTMLSpanElement.h" | 48 #include "core/html/HTMLSpanElement.h" |
49 #include "core/rendering/RenderObject.h" | 49 #include "core/layout/LayoutObject.h" |
50 #include "core/rendering/RenderText.h" | 50 #include "core/rendering/RenderText.h" |
51 #include "platform/heap/Handle.h" | 51 #include "platform/heap/Handle.h" |
52 #include "wtf/StdLibExtras.h" | 52 #include "wtf/StdLibExtras.h" |
53 #include "wtf/text/StringBuilder.h" | 53 #include "wtf/text/StringBuilder.h" |
54 | 54 |
55 namespace blink { | 55 namespace blink { |
56 | 56 |
57 using namespace HTMLNames; | 57 using namespace HTMLNames; |
58 | 58 |
59 static String& styleSpanClassString() | 59 static String& styleSpanClassString() |
(...skipping 1520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1580 void ApplyStyleCommand::trace(Visitor* visitor) | 1580 void ApplyStyleCommand::trace(Visitor* visitor) |
1581 { | 1581 { |
1582 visitor->trace(m_style); | 1582 visitor->trace(m_style); |
1583 visitor->trace(m_start); | 1583 visitor->trace(m_start); |
1584 visitor->trace(m_end); | 1584 visitor->trace(m_end); |
1585 visitor->trace(m_styledInlineElement); | 1585 visitor->trace(m_styledInlineElement); |
1586 CompositeEditCommand::trace(visitor); | 1586 CompositeEditCommand::trace(visitor); |
1587 } | 1587 } |
1588 | 1588 |
1589 } | 1589 } |
OLD | NEW |