OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2010 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 19 matching lines...) Expand all Loading... |
30 #include "core/frame/FrameView.h" | 30 #include "core/frame/FrameView.h" |
31 #include "core/frame/LocalFrame.h" | 31 #include "core/frame/LocalFrame.h" |
32 #include "core/html/HTMLIFrameElement.h" | 32 #include "core/html/HTMLIFrameElement.h" |
33 #include "core/rendering/RenderView.h" | 33 #include "core/rendering/RenderView.h" |
34 | 34 |
35 namespace blink { | 35 namespace blink { |
36 | 36 |
37 using namespace HTMLNames; | 37 using namespace HTMLNames; |
38 | 38 |
39 RenderIFrame::RenderIFrame(Element* element) | 39 RenderIFrame::RenderIFrame(Element* element) |
40 : RenderPart(element) | 40 : LayoutPart(element) |
41 { | 41 { |
42 } | 42 } |
43 | 43 |
44 bool RenderIFrame::shouldComputeSizeAsReplaced() const | 44 bool RenderIFrame::shouldComputeSizeAsReplaced() const |
45 { | 45 { |
46 return true; | 46 return true; |
47 } | 47 } |
48 | 48 |
49 bool RenderIFrame::isInlineBlockOrInlineTable() const | 49 bool RenderIFrame::isInlineBlockOrInlineTable() const |
50 { | 50 { |
51 return isInline(); | 51 return isInline(); |
52 } | 52 } |
53 | 53 |
54 LayerType RenderIFrame::layerTypeRequired() const | 54 LayerType RenderIFrame::layerTypeRequired() const |
55 { | 55 { |
56 if (style()->resize() != RESIZE_NONE) | 56 if (style()->resize() != RESIZE_NONE) |
57 return NormalLayer; | 57 return NormalLayer; |
58 return RenderPart::layerTypeRequired(); | 58 return LayoutPart::layerTypeRequired(); |
59 } | 59 } |
60 | 60 |
61 void RenderIFrame::layout() | 61 void RenderIFrame::layout() |
62 { | 62 { |
63 ASSERT(needsLayout()); | 63 ASSERT(needsLayout()); |
64 | 64 |
65 updateLogicalWidth(); | 65 updateLogicalWidth(); |
66 // No kids to layout as a replaced element. | 66 // No kids to layout as a replaced element. |
67 updateLogicalHeight(); | 67 updateLogicalHeight(); |
68 | 68 |
69 m_overflow.clear(); | 69 m_overflow.clear(); |
70 addVisualEffectOverflow(); | 70 addVisualEffectOverflow(); |
71 updateLayerTransformAfterLayout(); | 71 updateLayerTransformAfterLayout(); |
72 | 72 |
73 clearNeedsLayout(); | 73 clearNeedsLayout(); |
74 } | 74 } |
75 | 75 |
76 } | 76 } |
OLD | NEW |