| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2004, 2005, 2006, 2009 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 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 #include <stdio.h> | 29 #include <stdio.h> |
| 30 #include "HTMLNames.h" | 30 #include "HTMLNames.h" |
| 31 #include "core/css/CSSComputedStyleDeclaration.h" | 31 #include "core/css/CSSComputedStyleDeclaration.h" |
| 32 #include "core/dom/PositionIterator.h" | 32 #include "core/dom/PositionIterator.h" |
| 33 #include "core/dom/Text.h" | 33 #include "core/dom/Text.h" |
| 34 #include "core/editing/TextIterator.h" | 34 #include "core/editing/TextIterator.h" |
| 35 #include "core/editing/VisiblePosition.h" | 35 #include "core/editing/VisiblePosition.h" |
| 36 #include "core/editing/VisibleUnits.h" | 36 #include "core/editing/VisibleUnits.h" |
| 37 #include "core/editing/htmlediting.h" | 37 #include "core/editing/htmlediting.h" |
| 38 #include "RuntimeEnabledFeatures.h" | |
| 39 #include "core/platform/Logging.h" | |
| 40 #include "core/rendering/InlineIterator.h" | 38 #include "core/rendering/InlineIterator.h" |
| 41 #include "core/rendering/InlineTextBox.h" | 39 #include "core/rendering/InlineTextBox.h" |
| 42 #include "core/rendering/RenderBlock.h" | 40 #include "core/rendering/RenderBlock.h" |
| 43 #include "core/rendering/RenderInline.h" | 41 #include "core/rendering/RenderInline.h" |
| 44 #include "core/rendering/RenderText.h" | 42 #include "core/rendering/RenderText.h" |
| 45 #include <wtf/text/CString.h> | 43 #include <wtf/text/CString.h> |
| 46 #include <wtf/unicode/CharacterNames.h> | 44 #include <wtf/unicode/CharacterNames.h> |
| 47 | 45 |
| 48 namespace WebCore { | 46 namespace WebCore { |
| 49 | 47 |
| (...skipping 1341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1391 pos.showTreeForThis(); | 1389 pos.showTreeForThis(); |
| 1392 } | 1390 } |
| 1393 | 1391 |
| 1394 void showTree(const WebCore::Position* pos) | 1392 void showTree(const WebCore::Position* pos) |
| 1395 { | 1393 { |
| 1396 if (pos) | 1394 if (pos) |
| 1397 pos->showTreeForThis(); | 1395 pos->showTreeForThis(); |
| 1398 } | 1396 } |
| 1399 | 1397 |
| 1400 #endif | 1398 #endif |
| OLD | NEW |