| 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 12 matching lines...) Expand all Loading... |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "core/layout/LayoutIFrame.h" | 26 #include "core/layout/LayoutIFrame.h" |
| 27 | 27 |
| 28 #include "core/HTMLNames.h" | 28 #include "core/HTMLNames.h" |
| 29 #include "core/frame/FrameView.h" | 29 #include "core/frame/FrameView.h" |
| 30 #include "core/frame/LocalFrame.h" | 30 #include "core/frame/LocalFrame.h" |
| 31 #include "core/html/HTMLIFrameElement.h" | 31 #include "core/html/HTMLIFrameElement.h" |
| 32 #include "core/layout/LayoutAnalyzer.h" | 32 #include "core/layout/LayoutAnalyzer.h" |
| 33 #include "core/layout/LayoutView.h" | |
| 34 | 33 |
| 35 namespace blink { | 34 namespace blink { |
| 36 | 35 |
| 37 using namespace HTMLNames; | 36 using namespace HTMLNames; |
| 38 | 37 |
| 39 LayoutIFrame::LayoutIFrame(Element* element) | 38 LayoutIFrame::LayoutIFrame(Element* element) |
| 40 : LayoutPart(element) | 39 : LayoutPart(element) |
| 41 { | 40 { |
| 42 } | 41 } |
| 43 | 42 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 68 updateLogicalHeight(); | 67 updateLogicalHeight(); |
| 69 | 68 |
| 70 m_overflow.clear(); | 69 m_overflow.clear(); |
| 71 addVisualEffectOverflow(); | 70 addVisualEffectOverflow(); |
| 72 updateLayerTransformAfterLayout(); | 71 updateLayerTransformAfterLayout(); |
| 73 | 72 |
| 74 clearNeedsLayout(); | 73 clearNeedsLayout(); |
| 75 } | 74 } |
| 76 | 75 |
| 77 } // namespace blink | 76 } // namespace blink |
| OLD | NEW |