| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) | 4 * (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) |
| 5 * (C) 2005, 2006 Samuel Weinig (sam.weinig@gmail.com) | 5 * (C) 2005, 2006 Samuel Weinig (sam.weinig@gmail.com) |
| 6 * Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 6 * Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
| 7 * Copyright (C) 2010 Google Inc. All rights reserved. | 7 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * | 23 * |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "core/layout/LayoutBoxModelObject.h" | 26 #include "core/layout/LayoutBoxModelObject.h" |
| 27 | 27 |
| 28 #include "core/dom/NodeComputedStyle.h" | 28 #include "core/dom/NodeComputedStyle.h" |
| 29 #include "core/frame/FrameView.h" | 29 #include "core/frame/FrameView.h" |
| 30 #include "core/html/HTMLBodyElement.h" | 30 #include "core/html/HTMLBodyElement.h" |
| 31 #include "core/layout/ImageQualityController.h" | 31 #include "core/layout/ImageQualityController.h" |
| 32 #include "core/layout/LayoutBlock.h" | 32 #include "core/layout/LayoutBlock.h" |
| 33 #include "core/layout/LayoutFlowThread.h" | |
| 34 #include "core/layout/LayoutGeometryMap.h" | 33 #include "core/layout/LayoutGeometryMap.h" |
| 35 #include "core/layout/LayoutInline.h" | 34 #include "core/layout/LayoutInline.h" |
| 36 #include "core/layout/LayoutObject.h" | 35 #include "core/layout/LayoutObject.h" |
| 37 #include "core/layout/LayoutTextFragment.h" | 36 #include "core/layout/LayoutTextFragment.h" |
| 38 #include "core/layout/LayoutView.h" | 37 #include "core/layout/LayoutView.h" |
| 39 #include "core/layout/compositing/CompositedLayerMapping.h" | 38 #include "core/layout/compositing/CompositedLayerMapping.h" |
| 40 #include "core/layout/compositing/PaintLayerCompositor.h" | 39 #include "core/layout/compositing/PaintLayerCompositor.h" |
| 41 #include "core/paint/PaintLayer.h" | 40 #include "core/paint/PaintLayer.h" |
| 42 #include "core/style/BorderEdge.h" | 41 #include "core/style/BorderEdge.h" |
| 43 #include "core/style/ShadowList.h" | 42 #include "core/style/ShadowList.h" |
| (...skipping 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1116 if (rootElementStyle->hasBackground()) | 1115 if (rootElementStyle->hasBackground()) |
| 1117 return false; | 1116 return false; |
| 1118 | 1117 |
| 1119 if (node() != document().firstBodyElement()) | 1118 if (node() != document().firstBodyElement()) |
| 1120 return false; | 1119 return false; |
| 1121 | 1120 |
| 1122 return true; | 1121 return true; |
| 1123 } | 1122 } |
| 1124 | 1123 |
| 1125 } // namespace blink | 1124 } // namespace blink |
| OLD | NEW |