OLD | NEW |
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 * * Neither the name of Google Inc. nor the names of its | 10 * * Neither the name of Google Inc. nor the names of its |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 PseudoElement::~PseudoElement() | 67 PseudoElement::~PseudoElement() |
68 { | 68 { |
69 InspectorInstrumentation::pseudoElementDestroyed(document()->page(), this); | 69 InspectorInstrumentation::pseudoElementDestroyed(document()->page(), this); |
70 } | 70 } |
71 | 71 |
72 PassRefPtr<RenderStyle> PseudoElement::customStyleForRenderer() | 72 PassRefPtr<RenderStyle> PseudoElement::customStyleForRenderer() |
73 { | 73 { |
74 return parentOrShadowHostElement()->renderer()->getCachedPseudoStyle(m_pseud
oId); | 74 return parentOrShadowHostElement()->renderer()->getCachedPseudoStyle(m_pseud
oId); |
75 } | 75 } |
76 | 76 |
77 void PseudoElement::attach() | 77 void PseudoElement::attach(const AttachContext& context) |
78 { | 78 { |
79 ASSERT(!renderer()); | 79 ASSERT(!renderer()); |
80 | 80 |
81 Element::attach(); | 81 Element::attach(context); |
82 | 82 |
83 RenderObject* renderer = this->renderer(); | 83 RenderObject* renderer = this->renderer(); |
84 if (!renderer || !renderer->style()->regionThread().isEmpty()) | 84 if (!renderer || !renderer->style()->regionThread().isEmpty()) |
85 return; | 85 return; |
86 | 86 |
87 RenderStyle* style = renderer->style(); | 87 RenderStyle* style = renderer->style(); |
88 ASSERT(style->contentData()); | 88 ASSERT(style->contentData()); |
89 | 89 |
90 for (const ContentData* content = style->contentData(); content; content = c
ontent->next()) { | 90 for (const ContentData* content = style->contentData(); content; content = c
ontent->next()) { |
91 RenderObject* child = content->createRenderer(document(), style); | 91 RenderObject* child = content->createRenderer(document(), style); |
(...skipping 26 matching lines...) Expand all Loading... |
118 | 118 |
119 // The style for the RenderTextFragment for first letter is managed by a
n enclosing block, not by us. | 119 // The style for the RenderTextFragment for first letter is managed by a
n enclosing block, not by us. |
120 if (child->style()->styleType() == FIRST_LETTER) | 120 if (child->style()->styleType() == FIRST_LETTER) |
121 continue; | 121 continue; |
122 | 122 |
123 child->setPseudoStyle(renderer->style()); | 123 child->setPseudoStyle(renderer->style()); |
124 } | 124 } |
125 } | 125 } |
126 | 126 |
127 } // namespace | 127 } // namespace |
OLD | NEW |