| 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 22 matching lines...) Expand all Loading... |
| 33 #include "core/editing/FrameSelection.h" | 33 #include "core/editing/FrameSelection.h" |
| 34 #include "core/frame/FrameView.h" | 34 #include "core/frame/FrameView.h" |
| 35 #include "core/frame/LocalFrame.h" | 35 #include "core/frame/LocalFrame.h" |
| 36 #include "core/html/HTMLElement.h" | 36 #include "core/html/HTMLElement.h" |
| 37 #include "core/page/PrintContext.h" | 37 #include "core/page/PrintContext.h" |
| 38 #include "core/rendering/FlowThreadController.h" | 38 #include "core/rendering/FlowThreadController.h" |
| 39 #include "core/rendering/InlineTextBox.h" | 39 #include "core/rendering/InlineTextBox.h" |
| 40 #include "core/rendering/RenderBR.h" | 40 #include "core/rendering/RenderBR.h" |
| 41 #include "core/rendering/RenderDetailsMarker.h" | 41 #include "core/rendering/RenderDetailsMarker.h" |
| 42 #include "core/rendering/RenderFileUploadControl.h" | 42 #include "core/rendering/RenderFileUploadControl.h" |
| 43 #include "core/rendering/RenderFlowThread.h" | |
| 44 #include "core/rendering/RenderInline.h" | 43 #include "core/rendering/RenderInline.h" |
| 45 #include "core/rendering/RenderLayer.h" | 44 #include "core/rendering/RenderLayer.h" |
| 46 #include "core/rendering/RenderListItem.h" | 45 #include "core/rendering/RenderListItem.h" |
| 47 #include "core/rendering/RenderListMarker.h" | 46 #include "core/rendering/RenderListMarker.h" |
| 48 #include "core/rendering/RenderPart.h" | 47 #include "core/rendering/RenderPart.h" |
| 49 #include "core/rendering/RenderTableCell.h" | 48 #include "core/rendering/RenderTableCell.h" |
| 50 #include "core/rendering/RenderView.h" | 49 #include "core/rendering/RenderView.h" |
| 51 #include "core/rendering/compositing/CompositedLayerMapping.h" | 50 #include "core/rendering/compositing/CompositedLayerMapping.h" |
| 52 #include "core/rendering/svg/RenderSVGContainer.h" | 51 #include "core/rendering/svg/RenderSVGContainer.h" |
| 53 #include "core/rendering/svg/RenderSVGGradientStop.h" | 52 #include "core/rendering/svg/RenderSVGGradientStop.h" |
| (...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 768 element->document().updateLayout(); | 767 element->document().updateLayout(); |
| 769 | 768 |
| 770 RenderObject* renderer = element->renderer(); | 769 RenderObject* renderer = element->renderer(); |
| 771 if (!renderer || !renderer->isListItem()) | 770 if (!renderer || !renderer->isListItem()) |
| 772 return String(); | 771 return String(); |
| 773 | 772 |
| 774 return toRenderListItem(renderer)->markerText(); | 773 return toRenderListItem(renderer)->markerText(); |
| 775 } | 774 } |
| 776 | 775 |
| 777 } // namespace blink | 776 } // namespace blink |
| OLD | NEW |