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 22 matching lines...) Expand all Loading... |
33 #include "core/rendering/RenderObject.h" | 33 #include "core/rendering/RenderObject.h" |
34 | 34 |
35 namespace WebCore { | 35 namespace WebCore { |
36 | 36 |
37 namespace NodeRenderingTraversal { | 37 namespace NodeRenderingTraversal { |
38 | 38 |
39 static bool isRendererReparented(const RenderObject* renderer) | 39 static bool isRendererReparented(const RenderObject* renderer) |
40 { | 40 { |
41 if (!renderer->node()->isElementNode()) | 41 if (!renderer->node()->isElementNode()) |
42 return false; | 42 return false; |
43 if (renderer->style() && !renderer->style()->flowThread().isEmpty()) | |
44 return true; | |
45 if (toElement(renderer->node())->isInTopLayer()) | 43 if (toElement(renderer->node())->isInTopLayer()) |
46 return true; | 44 return true; |
47 return false; | 45 return false; |
48 } | 46 } |
49 | 47 |
50 void ParentDetails::didTraverseInsertionPoint(const InsertionPoint* insertionPoi
nt) | 48 void ParentDetails::didTraverseInsertionPoint(const InsertionPoint* insertionPoi
nt) |
51 { | 49 { |
52 if (!m_insertionPoint) { | 50 if (!m_insertionPoint) { |
53 m_insertionPoint = insertionPoint; | 51 m_insertionPoint = insertionPoint; |
54 m_resetStyleInheritance = m_resetStyleInheritance || insertionPoint->re
setStyleInheritance(); | 52 m_resetStyleInheritance = m_resetStyleInheritance || insertionPoint->re
setStyleInheritance(); |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 for (size_t i = position + 1; i < topLayerElements.size(); ++i) { | 148 for (size_t i = position + 1; i < topLayerElements.size(); ++i) { |
151 if (RenderObject* renderer = topLayerElements[i]->renderer()) | 149 if (RenderObject* renderer = topLayerElements[i]->renderer()) |
152 return renderer; | 150 return renderer; |
153 } | 151 } |
154 return 0; | 152 return 0; |
155 } | 153 } |
156 | 154 |
157 } | 155 } |
158 | 156 |
159 } // namespace | 157 } // namespace |
OLD | NEW |