Chromium Code Reviews| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 74 return parentOrShadowHostElement()->renderer()->getCachedPseudoStyle(m_pseud oId); | 74 return parentOrShadowHostElement()->renderer()->getCachedPseudoStyle(m_pseud oId); |
| 75 } | 75 } |
| 76 | 76 |
| 77 void PseudoElement::attach(const AttachContext& context) | 77 void PseudoElement::attach(const AttachContext& context) |
| 78 { | 78 { |
| 79 ASSERT(!renderer()); | 79 ASSERT(!renderer()); |
| 80 | 80 |
| 81 Element::attach(context); | 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() || renderer->s tyle()->styleType() == BACKDROP) |
|
esprehn
2013/07/03 23:44:29
Lets remove this and just add an early return belo
falken
2013/07/04 08:20:12
Done. Good idea. But we need the !style->regionThr
| |
| 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); |
| 92 if (renderer->isChildAllowed(child, style)) { | 92 if (renderer->isChildAllowed(child, style)) { |
| 93 renderer->addChild(child); | 93 renderer->addChild(child); |
| 94 if (child->isQuote()) | 94 if (child->isQuote()) |
| (...skipping 23 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 |