OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2006, 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2004, 2006, 2007 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 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
573 if (l.renderBox() && l.renderBox()->pixelSnappedClientHeight() != l.scro
llHeight()) | 573 if (l.renderBox() && l.renderBox()->pixelSnappedClientHeight() != l.scro
llHeight()) |
574 ts << " scrollHeight " << l.scrollHeight(); | 574 ts << " scrollHeight " << l.scrollHeight(); |
575 } | 575 } |
576 | 576 |
577 if (paintPhase == LayerPaintPhaseBackground) | 577 if (paintPhase == LayerPaintPhaseBackground) |
578 ts << " layerType: background only"; | 578 ts << " layerType: background only"; |
579 else if (paintPhase == LayerPaintPhaseForeground) | 579 else if (paintPhase == LayerPaintPhaseForeground) |
580 ts << " layerType: foreground only"; | 580 ts << " layerType: foreground only"; |
581 | 581 |
582 if (behavior & RenderAsTextShowCompositedLayers) { | 582 if (behavior & RenderAsTextShowCompositedLayers) { |
583 if (l.isComposited()) | 583 if (l.backing()) |
584 ts << " (composited, bounds=" << l.backing()->compositedBounds() <<
", drawsContent=" << l.backing()->graphicsLayer()->drawsContent() << ", paints i
nto ancestor=" << l.backing()->paintsIntoCompositedAncestor() << ")"; | 584 ts << " (composited, bounds=" << l.backing()->compositedBounds() <<
", drawsContent=" << l.backing()->graphicsLayer()->drawsContent() << ", paints i
nto ancestor=" << l.backing()->paintsIntoCompositedAncestor() << ")"; |
585 } | 585 } |
586 | 586 |
587 ts << "\n"; | 587 ts << "\n"; |
588 | 588 |
589 if (paintPhase != LayerPaintPhaseBackground) | 589 if (paintPhase != LayerPaintPhaseBackground) |
590 write(ts, *l.renderer(), indent + 1, behavior); | 590 write(ts, *l.renderer(), indent + 1, behavior); |
591 } | 591 } |
592 | 592 |
593 static void writeRenderRegionList(const RenderRegionList& flowThreadRegionList,
TextStream& ts, int indent) | 593 static void writeRenderRegionList(const RenderRegionList& flowThreadRegionList,
TextStream& ts, int indent) |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
849 element->document().updateLayout(); | 849 element->document().updateLayout(); |
850 | 850 |
851 RenderObject* renderer = element->renderer(); | 851 RenderObject* renderer = element->renderer(); |
852 if (!renderer || !renderer->isListItem()) | 852 if (!renderer || !renderer->isListItem()) |
853 return String(); | 853 return String(); |
854 | 854 |
855 return toRenderListItem(renderer)->markerText(); | 855 return toRenderListItem(renderer)->markerText(); |
856 } | 856 } |
857 | 857 |
858 } // namespace WebCore | 858 } // namespace WebCore |
OLD | NEW |