| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #if 0 |
| 6 |
| 5 #include "core/paint/PaintControllerPaintTest.h" | 7 #include "core/paint/PaintControllerPaintTest.h" |
| 6 | 8 |
| 7 #include "core/layout/LayoutText.h" | 9 #include "core/layout/LayoutText.h" |
| 8 #include "core/layout/line/InlineTextBox.h" | 10 #include "core/layout/line/InlineTextBox.h" |
| 9 #include "core/page/FocusController.h" | 11 #include "core/page/FocusController.h" |
| 10 #include "core/paint/LayoutObjectDrawingRecorder.h" | 12 #include "core/paint/LayoutObjectDrawingRecorder.h" |
| 11 #include "core/paint/ObjectPaintProperties.h" | 13 #include "core/paint/ObjectPaintProperties.h" |
| 12 #include "core/paint/PaintLayerPainter.h" | 14 #include "core/paint/PaintLayerPainter.h" |
| 13 #include "platform/graphics/GraphicsContext.h" | 15 #include "platform/graphics/GraphicsContext.h" |
| 14 #include "platform/graphics/paint/DrawingDisplayItem.h" | 16 #include "platform/graphics/paint/DrawingDisplayItem.h" |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 EXPECT_DISPLAY_LIST(rootPaintController().getDisplayItemList(), 4, | 113 EXPECT_DISPLAY_LIST(rootPaintController().getDisplayItemList(), 4, |
| 112 TestDisplayItem(layoutView(), documentBackgroundType), | 114 TestDisplayItem(layoutView(), documentBackgroundType), |
| 113 TestDisplayItem(htmlLayer, DisplayItem::Subsequence), | 115 TestDisplayItem(htmlLayer, DisplayItem::Subsequence), |
| 114 // The begin and end compositing display items have been folded into thi
s one. | 116 // The begin and end compositing display items have been folded into thi
s one. |
| 115 TestDisplayItem(subDiv, backgroundType), | 117 TestDisplayItem(subDiv, backgroundType), |
| 116 TestDisplayItem(htmlLayer, DisplayItem::EndSubsequence)); | 118 TestDisplayItem(htmlLayer, DisplayItem::EndSubsequence)); |
| 117 } | 119 } |
| 118 | 120 |
| 119 | 121 |
| 120 } // namespace blink | 122 } // namespace blink |
| 123 #endif |
| OLD | NEW |