Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: Source/core/dom/PseudoElement.cpp

Issue 17654008: Implement the ::backdrop pseudo-element for modal <dialog>. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix failing tests Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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)
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698