1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525
|
/*
* Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "third_party/blink/renderer/core/editing/visible_units.h"
#include "base/trace_event/trace_event.h"
#include "third_party/blink/renderer/core/display_lock/display_lock_utilities.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/dom/element.h"
#include "third_party/blink/renderer/core/dom/first_letter_pseudo_element.h"
#include "third_party/blink/renderer/core/dom/node_traversal.h"
#include "third_party/blink/renderer/core/dom/shadow_root.h"
#include "third_party/blink/renderer/core/dom/text.h"
#include "third_party/blink/renderer/core/editing/editing_utilities.h"
#include "third_party/blink/renderer/core/editing/ephemeral_range.h"
#include "third_party/blink/renderer/core/editing/frame_selection.h"
#include "third_party/blink/renderer/core/editing/iterators/character_iterator.h"
#include "third_party/blink/renderer/core/editing/local_caret_rect.h"
#include "third_party/blink/renderer/core/editing/position.h"
#include "third_party/blink/renderer/core/editing/position_iterator.h"
#include "third_party/blink/renderer/core/editing/position_with_affinity.h"
#include "third_party/blink/renderer/core/editing/selection_adjuster.h"
#include "third_party/blink/renderer/core/editing/selection_template.h"
#include "third_party/blink/renderer/core/editing/text_affinity.h"
#include "third_party/blink/renderer/core/editing/visible_position.h"
#include "third_party/blink/renderer/core/editing/visible_selection.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/frame/settings.h"
#include "third_party/blink/renderer/core/html/forms/text_control_element.h"
#include "third_party/blink/renderer/core/html/html_body_element.h"
#include "third_party/blink/renderer/core/html/html_br_element.h"
#include "third_party/blink/renderer/core/html/html_marquee_element.h"
#include "third_party/blink/renderer/core/html/html_table_element.h"
#include "third_party/blink/renderer/core/html_names.h"
#include "third_party/blink/renderer/core/layout/hit_test_location.h"
#include "third_party/blink/renderer/core/layout/hit_test_request.h"
#include "third_party/blink/renderer/core/layout/hit_test_result.h"
#include "third_party/blink/renderer/core/layout/inline/inline_node_data.h"
#include "third_party/blink/renderer/core/layout/layout_inline.h"
#include "third_party/blink/renderer/core/layout/layout_text_fragment.h"
#include "third_party/blink/renderer/core/layout/layout_view.h"
#include "third_party/blink/renderer/core/svg/svg_foreign_object_element.h"
#include "third_party/blink/renderer/core/svg/svg_text_element.h"
#include "third_party/blink/renderer/core/svg_element_type_helpers.h"
#include "third_party/blink/renderer/platform/text/text_boundaries.h"
#include "ui/gfx/geometry/rect_conversions.h"
namespace blink {
namespace {
bool IsEmptyInline(const LayoutInline& inline_object) {
for (const LayoutObject* curr = inline_object.FirstChild(); curr;
curr = curr->NextSibling()) {
if (curr->IsFloatingOrOutOfFlowPositioned()) {
continue;
}
if (const auto* inline_child = DynamicTo<LayoutInline>(curr)) {
if (IsEmptyInline(*inline_child)) {
continue;
}
}
if (const auto* text_child = DynamicTo<LayoutText>(curr)) {
if (text_child->IsAllCollapsibleWhitespace()) {
continue;
}
}
return false;
}
return true;
}
} // anonymous namespace
template <typename PositionType>
static PositionType CanonicalizeCandidate(const PositionType& candidate) {
if (candidate.IsNull())
return PositionType();
DCHECK(IsVisuallyEquivalentCandidate(candidate));
PositionType upstream = MostBackwardCaretPosition(candidate);
if (IsVisuallyEquivalentCandidate(upstream))
return upstream;
return candidate;
}
static bool InSameBlock(const Node* original_node,
const Node* new_position_node) {
DCHECK(new_position_node);
if (!original_node) {
return false;
}
// If |new_position_node| is child node of |original_node|, they must be in
// the same block flow element.
if (new_position_node->IsDescendantOf(original_node)) {
return true;
}
Element* const original_block = EnclosingBlockFlowElement(*original_node);
// If both nodes are in editable elements, whether they are in the same block
// flow element depends on DOM hierarchy.
// Note: tests [1][2] require this.
// [1] editing/execCommand/indent-pre-list.html
// [2] editing/execCommand/indent-pre.html
if ((IsEditable(*original_node) && IsEditable(*new_position_node))) {
return new_position_node->IsDescendantOf(original_block) ||
new_position_node == original_block;
}
return original_block == EnclosingBlockFlowElement(*new_position_node);
}
template <typename PositionType>
static PositionType CanonicalPosition(const PositionType& position) {
// Sometimes updating selection positions can be extremely expensive and
// occur frequently. Often calling preventDefault on mousedown events can
// avoid doing unnecessary text selection work. http://crbug.com/472258.
TRACE_EVENT0("input", "VisibleUnits::canonicalPosition");
// FIXME (9535): Canonicalizing to the leftmost candidate means that if
// we're at a line wrap, we will ask layoutObjects to paint downstream
// carets for other layoutObjects. To fix this, we need to either a) add
// code to all paintCarets to pass the responsibility off to the appropriate
// layoutObject for VisiblePosition's like these, or b) canonicalize to the
// rightmost candidate unless the affinity is upstream.
if (position.IsNull())
return PositionType();
DCHECK(position.GetDocument());
DCHECK(!position.GetDocument()->NeedsLayoutTreeUpdate());
const PositionType& backward_candidate = MostBackwardCaretPosition(position);
if (IsVisuallyEquivalentCandidate(backward_candidate))
return backward_candidate;
const PositionType& forward_candidate = MostForwardCaretPosition(position);
if (IsVisuallyEquivalentCandidate(forward_candidate))
return forward_candidate;
// When neither upstream or downstream gets us to a candidate
// (upstream/downstream won't leave blocks or enter new ones), we search
// forward and backward until we find one.
const PositionType& next = CanonicalizeCandidate(NextCandidate(position));
const PositionType& prev = CanonicalizeCandidate(PreviousCandidate(position));
// The new position must be in the same editable element. Enforce that
// first. Unless the descent is from a non-editable html element to an
// editable body.
Node* const node = position.ComputeContainerNode();
if (node && node->GetDocument().documentElement() == node &&
!IsEditable(*node) && node->GetDocument().body() &&
IsEditable(*node->GetDocument().body()))
return next.IsNotNull() ? next : prev;
Element* const editing_root = RootEditableElementOf(position);
// If the html element is editable, descending into its body will look like
// a descent from non-editable to editable content since
// |rootEditableElementOf()| always stops at the body.
if ((editing_root &&
editing_root->GetDocument().documentElement() == editing_root) ||
position.AnchorNode()->IsDocumentNode())
return next.IsNotNull() ? next : prev;
Node* const next_node = next.AnchorNode();
Node* next_editing_root = RootEditableElementOf(next);
Node* const prev_node = prev.AnchorNode();
Node* prev_editing_root = RootEditableElementOf(prev);
const bool prev_is_in_same_editable_element =
prev_node && prev_editing_root == editing_root;
const bool next_is_in_same_editable_element =
next_node && next_editing_root == editing_root;
if (prev_is_in_same_editable_element && !next_is_in_same_editable_element)
return prev;
if (next_is_in_same_editable_element && !prev_is_in_same_editable_element)
return next;
if (!next_is_in_same_editable_element && !prev_is_in_same_editable_element) {
// `prev/next_editing_root` is a child node of `editing_root`.
if (editing_root) {
if (editing_root->contains(next_editing_root)) {
return next;
} else if (editing_root->contains(prev_editing_root)) {
return prev;
}
}
return PositionType();
}
// The new position should be in the same block flow element. Favor that.
const bool next_is_same_original_block = InSameBlock(node, next_node);
const bool prev_is_same_original_block = InSameBlock(node, prev_node);
if (prev_is_same_original_block && !next_is_same_original_block)
return prev;
return next;
}
Position CanonicalPositionOf(const Position& position) {
return CanonicalPosition(position);
}
PositionInFlatTree CanonicalPositionOf(const PositionInFlatTree& position) {
return CanonicalPosition(position);
}
template <typename Strategy>
static PositionWithAffinityTemplate<Strategy>
AdjustBackwardPositionToAvoidCrossingEditingBoundariesTemplate(
const PositionWithAffinityTemplate<Strategy>& pos,
const PositionTemplate<Strategy>& anchor) {
if (pos.IsNull())
return pos;
ContainerNode* highest_root = HighestEditableRoot(anchor);
// Return empty position if |pos| is not somewhere inside the editable
// region containing this position
if (highest_root && !highest_root->contains(pos.AnchorNode())) {
return PositionWithAffinityTemplate<Strategy>();
}
// Return |pos| itself if the two are from the very same editable region, or
// both are non-editable
// TODO(yosin) In the non-editable case, just because the new position is
// non-editable doesn't mean movement to it is allowed.
// |VisibleSelection::adjustForEditableContent()| has this problem too.
if (HighestEditableRoot(pos.GetPosition()) == highest_root)
return pos;
// Return empty position if this position is non-editable, but |pos| is
// editable.
// TODO(yosin) Move to the previous non-editable region.
if (!highest_root)
return PositionWithAffinityTemplate<Strategy>();
// Return the last position before |pos| that is in the same editable region
// as this position
return PositionWithAffinityTemplate<Strategy>(
LastEditablePositionBeforePositionInRoot(pos.GetPosition(),
*highest_root));
}
PositionWithAffinity AdjustBackwardPositionToAvoidCrossingEditingBoundaries(
const PositionWithAffinity& pos,
const Position& anchor) {
return AdjustBackwardPositionToAvoidCrossingEditingBoundariesTemplate(pos,
anchor);
}
PositionInFlatTreeWithAffinity
AdjustBackwardPositionToAvoidCrossingEditingBoundaries(
const PositionInFlatTreeWithAffinity& pos,
const PositionInFlatTree& anchor) {
return AdjustBackwardPositionToAvoidCrossingEditingBoundariesTemplate(pos,
anchor);
}
template <typename Strategy>
static PositionWithAffinityTemplate<Strategy>
AdjustForwardPositionToAvoidCrossingEditingBoundariesTemplate(
const PositionWithAffinityTemplate<Strategy>& pos,
const PositionTemplate<Strategy>& anchor) {
if (pos.IsNull())
return pos;
ContainerNode* highest_root = HighestEditableRoot(anchor);
if (highest_root && !pos.AnchorNode()->IsDescendantOf(highest_root)) {
// Return last position in node if |pos| is not somewhere inside the
// editable region containing this position
const Node* last_editable = anchor.ComputeContainerNode();
if (last_editable->IsTextNode()) {
PositionTemplate<Strategy> last_position =
PositionTemplate<Strategy>::LastPositionInNode(*last_editable);
if (anchor != last_position) {
return PositionWithAffinityTemplate<Strategy>(last_position);
}
}
return PositionWithAffinityTemplate<Strategy>();
}
// Return |pos| itself if the two are from the very same editable region, or
// both are non-editable
// TODO(yosin) In the non-editable case, just because the new position is
// non-editable doesn't mean movement to it is allowed.
// |VisibleSelection::adjustForEditableContent()| has this problem too.
if (HighestEditableRoot(pos.GetPosition()) == highest_root)
return pos;
// Returns the last position in the highest non-editable ancestor of |anchor|.
if (!highest_root) {
const Node* last_non_editable = anchor.ComputeContainerNode();
for (const Node& ancestor : Strategy::AncestorsOf(*last_non_editable)) {
if (IsEditable(ancestor)) {
return PositionWithAffinityTemplate<Strategy>(
PositionTemplate<Strategy>::LastPositionInNode(*last_non_editable));
}
last_non_editable = &ancestor;
}
return PositionWithAffinityTemplate<Strategy>();
}
// Return the next position after |pos| that is in the same editable region
// as this position
return PositionWithAffinityTemplate<Strategy>(
FirstEditablePositionAfterPositionInRoot(pos.GetPosition(),
*highest_root));
}
PositionWithAffinity AdjustForwardPositionToAvoidCrossingEditingBoundaries(
const PositionWithAffinity& pos,
const Position& anchor) {
return AdjustForwardPositionToAvoidCrossingEditingBoundariesTemplate(pos,
anchor);
}
PositionInFlatTreeWithAffinity
AdjustForwardPositionToAvoidCrossingEditingBoundaries(
const PositionInFlatTreeWithAffinity& pos,
const PositionInFlatTree& anchor) {
return AdjustForwardPositionToAvoidCrossingEditingBoundariesTemplate(
PositionInFlatTreeWithAffinity(pos), anchor);
}
template <typename Strategy>
static ContainerNode* NonShadowBoundaryParentNode(Node* node) {
ContainerNode* parent = Strategy::Parent(*node);
return parent && !parent->IsShadowRoot() ? parent : nullptr;
}
template <typename Strategy>
static Node* ParentEditingBoundary(const PositionTemplate<Strategy>& position) {
Node* const anchor_node = position.AnchorNode();
if (!anchor_node)
return nullptr;
Node* document_element = anchor_node->GetDocument().documentElement();
if (!document_element)
return nullptr;
Node* boundary = position.ComputeContainerNode();
while (boundary != document_element &&
NonShadowBoundaryParentNode<Strategy>(boundary) &&
IsEditable(*anchor_node) == IsEditable(*Strategy::Parent(*boundary)))
boundary = NonShadowBoundaryParentNode<Strategy>(boundary);
return boundary;
}
// ---------
template <typename Strategy>
static PositionTemplate<Strategy> StartOfDocumentAlgorithm(
const PositionTemplate<Strategy>& position) {
const Node* const node = position.AnchorNode();
if (!node || !node->GetDocument().documentElement())
return PositionTemplate<Strategy>();
return PositionTemplate<Strategy>::FirstPositionInNode(
*node->GetDocument().documentElement());
}
Position StartOfDocument(const Position& c) {
return StartOfDocumentAlgorithm<EditingStrategy>(c);
}
PositionInFlatTree StartOfDocument(const PositionInFlatTree& c) {
return StartOfDocumentAlgorithm<EditingInFlatTreeStrategy>(c);
}
template <typename Strategy>
static VisiblePositionTemplate<Strategy> EndOfDocumentAlgorithm(
const VisiblePositionTemplate<Strategy>& visible_position) {
DCHECK(visible_position.IsValid()) << visible_position;
Node* node = visible_position.DeepEquivalent().AnchorNode();
if (!node || !node->GetDocument().documentElement())
return VisiblePositionTemplate<Strategy>();
Element* doc = node->GetDocument().documentElement();
return CreateVisiblePosition(
PositionTemplate<Strategy>::LastPositionInNode(*doc));
}
VisiblePosition EndOfDocument(const VisiblePosition& c) {
return EndOfDocumentAlgorithm<EditingStrategy>(c);
}
VisiblePositionInFlatTree EndOfDocument(const VisiblePositionInFlatTree& c) {
return EndOfDocumentAlgorithm<EditingInFlatTreeStrategy>(c);
}
bool IsStartOfDocument(const VisiblePosition& p) {
DCHECK(p.IsValid()) << p;
return p.IsNotNull() &&
PreviousPositionOf(p, kCanCrossEditingBoundary).IsNull();
}
bool IsEndOfDocument(const VisiblePosition& p) {
DCHECK(p.IsValid()) << p;
return p.IsNotNull() && NextPositionOf(p, kCanCrossEditingBoundary).IsNull();
}
// ---------
PositionInFlatTree StartOfEditableContent(const PositionInFlatTree& position) {
ContainerNode* highest_root = HighestEditableRoot(position);
if (!highest_root)
return PositionInFlatTree();
return PositionInFlatTree::FirstPositionInNode(*highest_root);
}
PositionInFlatTree EndOfEditableContent(const PositionInFlatTree& position) {
ContainerNode* highest_root = HighestEditableRoot(position);
if (!highest_root)
return PositionInFlatTree();
return PositionInFlatTree::LastPositionInNode(*highest_root);
}
bool IsEndOfEditableOrNonEditableContent(const VisiblePosition& position) {
DCHECK(position.IsValid()) << position;
return position.IsNotNull() && NextPositionOf(position).IsNull();
}
// TODO(yosin) We should rename |isEndOfEditableOrNonEditableContent()| what
// this function does, e.g. |isLastVisiblePositionOrEndOfInnerEditor()|.
bool IsEndOfEditableOrNonEditableContent(
const VisiblePositionInFlatTree& position) {
DCHECK(position.IsValid()) << position;
if (position.IsNull())
return false;
const VisiblePositionInFlatTree next_position = NextPositionOf(position);
if (next_position.IsNull())
return true;
// In DOM version, following condition, the last position of inner editor
// of INPUT/TEXTAREA element, by |nextPosition().isNull()|, because of
// an inner editor is an only leaf node.
if (!next_position.DeepEquivalent().IsAfterAnchor())
return false;
return IsTextControl(next_position.DeepEquivalent().AnchorNode());
}
// TODO(editing-dev): The semantics seems wrong when we're in a one-letter block
// with first-letter style, e.g., <div>F</div>, where the letter is laid-out in
// an anonymous first-letter LayoutTextFragment instead of the LayoutObject of
// the text node. It seems weird to return false in this case.
bool HasRenderedNonAnonymousDescendantsWithHeight(
const LayoutObject* layout_object) {
// If we're not painting the element then we conceptually don't have children
// with height. We should treat this as if we didn't have layout objects (i.e.
// we were display: none).
if (DisplayLockUtilities::LockedInclusiveAncestorPreventingPaint(
*layout_object))
return false;
if (auto* block_flow = DynamicTo<LayoutBlockFlow>(layout_object)) {
// Returns false for empty content editable, e.g.
// - <div contenteditable></div>
// - <div contenteditable><span></span></div>
// Note: tests[1][2] require this.
// [1] editing/style/underline.html
// [2] editing/inserting/return-with-object-element.html
if (const InlineNodeData* inline_data = block_flow->GetInlineNodeData()) {
if (inline_data->ItemsData(false).text_content.empty() &&
block_flow->HasLineIfEmpty()) {
return false;
}
}
}
const LayoutObject* stop = layout_object->NextInPreOrderAfterChildren();
// TODO(editing-dev): Avoid single-character parameter names.
for (LayoutObject* o = layout_object->SlowFirstChild(); o && o != stop;
o = o->ChildPaintBlockedByDisplayLock()
? o->NextInPreOrderAfterChildren()
: o->NextInPreOrder()) {
if (o->ChildPaintBlockedByDisplayLock() || !o->NonPseudoNode()) {
continue;
}
if (const auto* text = DynamicTo<LayoutText>(o);
text && text->HasNonCollapsedText()) {
return true;
} else if (const auto* box = DynamicTo<LayoutBox>(o);
box && box->LogicalHeight()) {
return true;
} else if (const auto* inline_object = DynamicTo<LayoutInline>(o);
inline_object && IsEmptyInline(*inline_object) &&
!inline_object->PhysicalLinesBoundingBox().IsEmpty()) {
return true;
}
}
return false;
}
PositionWithAffinity PositionForContentsPointRespectingEditingBoundary(
const gfx::Point& contents_point,
LocalFrame* frame) {
HitTestRequest request = HitTestRequest::kMove | HitTestRequest::kReadOnly |
HitTestRequest::kActive |
HitTestRequest::kIgnoreClipping;
HitTestLocation location(contents_point);
HitTestResult result(request, location);
frame->GetDocument()->GetLayoutView()->HitTest(location, result);
if (result.InnerNode()) {
return PositionRespectingEditingBoundary(
frame->Selection().ComputeVisibleSelectionInDOMTree().Start(), result);
}
return PositionWithAffinity();
}
// TODO(yosin): We should use |AssociatedLayoutObjectOf()| in "visible_units.cc"
// where it takes |LayoutObject| from |Position|.
int CaretMinOffset(const Node* node) {
const LayoutObject* layout_object = AssociatedLayoutObjectOf(*node, 0);
if (const LayoutText* layout_text = DynamicTo<LayoutText>(layout_object))
return layout_text->CaretMinOffset();
return 0;
}
int CaretMaxOffset(const Node* n) {
return EditingStrategy::CaretMaxOffset(*n);
}
template <typename Strategy>
static bool InRenderedText(const PositionTemplate<Strategy>& position) {
Node* const anchor_node = position.AnchorNode();
if (!anchor_node || !anchor_node->IsTextNode())
return false;
const int offset_in_node = position.ComputeEditingOffset();
const LayoutObject* layout_object =
AssociatedLayoutObjectOf(*anchor_node, offset_in_node);
if (!layout_object)
return false;
const auto* text_layout_object = To<LayoutText>(layout_object);
const int text_offset =
offset_in_node - text_layout_object->TextStartOffset();
if (!text_layout_object->ContainsCaretOffset(text_offset))
return false;
// Return false for offsets inside composed characters.
// TODO(editing-dev): Previous/NextGraphemeBoundaryOf() work on DOM offsets,
// So they should use |offset_in_node| instead of |text_offset|.
return text_offset == text_layout_object->CaretMinOffset() ||
text_offset == NextGraphemeBoundaryOf(*anchor_node,
PreviousGraphemeBoundaryOf(
*anchor_node, text_offset));
}
bool RendersInDifferentPosition(const Position& position1,
const Position& position2) {
if (position1.IsNull() || position2.IsNull())
return false;
const LocalCaretRect& caret_rect1 =
LocalCaretRectOfPosition(PositionWithAffinity(position1));
const LocalCaretRect& caret_rect2 =
LocalCaretRectOfPosition(PositionWithAffinity(position2));
if (!caret_rect1.layout_object || !caret_rect2.layout_object)
return caret_rect1.layout_object != caret_rect2.layout_object;
return LocalToAbsoluteQuadOf(caret_rect1) !=
LocalToAbsoluteQuadOf(caret_rect2);
}
// TODO(editing-dev): Share code with IsVisuallyEquivalentCandidate if possible.
bool EndsOfNodeAreVisuallyDistinctPositions(const Node* node) {
if (!node)
return false;
LayoutObject* layout_object = node->GetLayoutObject();
if (!layout_object)
return false;
if (!layout_object->IsInline())
return true;
// Don't include inline tables.
if (IsA<HTMLTableElement>(*node))
return false;
// A Marquee elements are moving so we should assume their ends are always
// visibily distinct.
if (IsA<HTMLMarqueeElement>(*node))
return true;
// There is a VisiblePosition inside an empty inline-block container.
return layout_object->IsAtomicInlineLevel() &&
CanHaveChildrenForEditing(node) &&
!To<LayoutBox>(layout_object)->Size().IsEmpty() &&
!HasRenderedNonAnonymousDescendantsWithHeight(layout_object);
}
template <typename Strategy>
static Node* EnclosingVisualBoundary(Node* node) {
while (node && !EndsOfNodeAreVisuallyDistinctPositions(node))
node = Strategy::Parent(*node);
return node;
}
// upstream() and downstream() want to return positions that are either in a
// text node or at just before a non-text node. This method checks for that.
template <typename Strategy>
static bool IsStreamer(const PositionIteratorAlgorithm<Strategy>& pos) {
if (!pos.GetNode())
return true;
if (IsAtomicNode(pos.GetNode()))
return true;
return pos.AtStartOfNode();
}
template <typename F>
static Position MostBackwardOrForwardCaretPosition(
const Position& position,
EditingBoundaryCrossingRule rule,
SnapToClient client,
F AlgorithmInFlatTree) {
Node* position_anchor = position.AnchorNode();
if (!position_anchor)
return Position();
DCHECK(position.IsValidFor(*position.GetDocument())) << position;
// Find the most backward or forward caret position in the flat tree.
const Position& candidate = ToPositionInDOMTree(
AlgorithmInFlatTree(ToPositionInFlatTree(position), rule, client));
Node* candidate_anchor = candidate.AnchorNode();
if (!candidate_anchor)
return position;
// Fast path for common cases when there is no shadow involved.
if (!position_anchor->IsInShadowTree() && !IsShadowHost(position_anchor) &&
!candidate_anchor->IsInShadowTree() && !IsShadowHost(candidate_anchor)) {
return candidate;
}
// Adjust the candidate to avoid crossing shadow boundaries.
const SelectionInDOMTree& selection =
SelectionInDOMTree::Builder()
.SetBaseAndExtent(position, candidate)
.Build();
if (selection.IsCaret())
return candidate;
const SelectionInDOMTree& shadow_adjusted_selection =
SelectionAdjuster::AdjustSelectionToAvoidCrossingShadowBoundaries(
selection);
const Position& adjusted_candidate = shadow_adjusted_selection.Focus();
// The adjusted candidate should be between the candidate and the original
// position. Otherwise, return the original position.
if (position.CompareTo(candidate) == candidate.CompareTo(adjusted_candidate))
return position;
// If we have to adjust the position, the editability may change, so avoid
// crossing editing boundaries if it's not allowed.
if (rule == kCannotCrossEditingBoundary &&
selection != shadow_adjusted_selection) {
const SelectionInDOMTree& editing_adjusted_selection =
SelectionAdjuster::AdjustSelectionToAvoidCrossingEditingBoundaries(
shadow_adjusted_selection);
return editing_adjusted_selection.Focus();
}
return adjusted_candidate;
}
template <typename Strategy>
static PositionTemplate<Strategy> AdjustPositionForBackwardIteration(
const PositionTemplate<Strategy>& position) {
DCHECK(!position.IsNull());
if (!position.IsAfterAnchor())
return position;
if (IsUserSelectContain(*position.AnchorNode()))
return position.ToOffsetInAnchor();
return PositionTemplate<Strategy>::EditingPositionOf(
position.AnchorNode(), Strategy::CaretMaxOffset(*position.AnchorNode()));
}
static bool CanHaveCaretPosition(const Node& node) {
if (!node.IsSVGElement())
return true;
if (IsA<SVGTextElement>(node))
return true; // See http://crbug.com/891908
if (IsA<SVGForeignObjectElement>(node))
return true; // See http://crbug.com/1348816
// There is no caret position in non-text svg elements.
return false;
}
// TODO(yosin): We should make |Most{Back,For}kwardCaretPosition()| to work for
// positions other than |kOffsetInAnchor|. When we convert |position| to
// |kOffsetInAnchor|, following tests are failed:
// * editing/execCommand/delete-non-editable-range-crash.html
// * editing/execCommand/keep_typing_style.html
// * editing/selection/skip-over-contenteditable.html
// See also |AdjustForEditingBoundary()|. It has workaround for before/after
// positions.
template <typename Strategy>
static PositionTemplate<Strategy> MostBackwardCaretPosition(
const PositionTemplate<Strategy>& position,
EditingBoundaryCrossingRule rule,
SnapToClient client) {
DCHECK(!NeedsLayoutTreeUpdate(position)) << position;
TRACE_EVENT0("input", "VisibleUnits::mostBackwardCaretPosition");
Node* const start_node = position.AnchorNode();
if (!start_node)
return PositionTemplate<Strategy>();
// iterate backward from there, looking for a qualified position
Node* const boundary = EnclosingVisualBoundary<Strategy>(start_node);
// FIXME: PositionIterator should respect Before and After positions.
const PositionTemplate<Strategy>& adjusted_position =
AdjustPositionForBackwardIteration<Strategy>(position);
#if DCHECK_IS_ON()
// Debug what causes bug 1248744
if (adjusted_position.IsNull())
position.ShowTreeForThis();
DCHECK(adjusted_position.IsNotNull()) << position;
#endif
PositionIteratorAlgorithm<Strategy> last_visible(adjusted_position);
Node* last_node;
// If we're snapping the caret to the edges of an inline element rather than
// crossing an editing boundary, we want to detect that editable boundary even
// if it happens between the position's container and anchor nodes.
if (rule == kCannotCrossEditingBoundary &&
client == SnapToClient::kLocalCaretRect) {
last_node = position.ComputeContainerNode();
} else {
last_node = start_node;
}
const bool start_editable = IsEditable(*last_node);
bool boundary_crossed = false;
std::optional<WritingMode> writing_mode;
for (PositionIteratorAlgorithm<Strategy> current_pos = last_visible;
!current_pos.AtStart(); current_pos.Decrement()) {
Node* current_node = current_pos.GetNode();
DCHECK(current_node);
// Don't check for an editability change if we haven't moved to a different
// node, to avoid the expense of computing IsEditable().
if (current_node != last_node) {
// Don't change editability.
const bool current_editable = IsEditable(*current_node);
if (start_editable != current_editable) {
if (rule == kCannotCrossEditingBoundary &&
client != SnapToClient::kLocalCaretRect)
break;
boundary_crossed = true;
}
last_node = current_node;
}
if (!CanHaveCaretPosition(*current_node)) {
if (boundary_crossed && rule == kCannotCrossEditingBoundary)
break;
continue;
}
// If we've moved to a position that is visually distinct, return the last
// saved position. There is code below that terminates early if we're
// *about* to move to a visually distinct position.
if (EndsOfNodeAreVisuallyDistinctPositions(current_node) &&
current_node != boundary)
return last_visible.DeprecatedComputePosition();
// skip position in non-laid out or invisible node
const LayoutObject* const layout_object = AssociatedLayoutObjectOf(
*current_node,
IsA<Text>(current_node) ? current_pos.OffsetInTextNode() : 0,
LayoutObjectSide::kFirstLetterIfOnBoundary);
if (!layout_object ||
layout_object->Style()->Visibility() != EVisibility::kVisible) {
if (boundary_crossed && rule == kCannotCrossEditingBoundary)
break;
continue;
}
if (DisplayLockUtilities::LockedAncestorPreventingPaint(*layout_object)) {
if (boundary_crossed && rule == kCannotCrossEditingBoundary)
break;
continue;
}
if (!writing_mode.has_value()) {
writing_mode.emplace(layout_object->Style()->GetWritingMode());
} else if (*writing_mode != layout_object->Style()->GetWritingMode()) {
return last_visible.ComputePosition();
}
if (boundary_crossed) {
if (rule == kCannotCrossEditingBoundary) {
if (current_node == start_node) {
DCHECK(position.IsBeforeAnchor() || position.IsAfterAnchor());
return position;
}
return PositionTemplate<Strategy>::AfterNode(*current_node);
}
if (rule == kCanCrossEditingBoundary) {
last_visible = current_pos;
break;
}
}
// track last visible streamer position
if (IsStreamer<Strategy>(current_pos))
last_visible = current_pos;
// Don't move past a position that is visually distinct. We could rely on
// code above to terminate and return lastVisible on the next iteration, but
// we terminate early to avoid doing a nodeIndex() call.
if (EndsOfNodeAreVisuallyDistinctPositions(current_node) &&
current_pos.AtStartOfNode())
return last_visible.DeprecatedComputePosition();
// Return position after tables and nodes which have content that can be
// ignored.
if (EditingIgnoresContent(*current_node) ||
IsDisplayInsideTable(current_node)) {
if (current_pos.AtEndOfNode())
return PositionTemplate<Strategy>::AfterNode(*current_node);
continue;
}
// return current position if it is in laid out text
if (!layout_object->IsText())
continue;
const auto* const text_layout_object = To<LayoutText>(layout_object);
if (!text_layout_object->HasNonCollapsedText())
continue;
const unsigned text_start_offset = text_layout_object->TextStartOffset();
if (current_node != start_node) {
// This assertion fires in web tests in the case-transform.html test
// because of a mix-up between offsets in the text in the DOM tree with
// text in the layout tree which can have a different length due to case
// transformation.
// Until we resolve that, disable this so we can run the web tests!
// DCHECK_GE(currentOffset, layoutObject->caretMaxOffset());
return PositionTemplate<Strategy>(
current_node,
text_layout_object->CaretMaxOffset() + text_start_offset);
}
DCHECK_GE(current_pos.OffsetInTextNode(),
static_cast<int>(text_layout_object->TextStartOffset()));
if (text_layout_object->IsAfterNonCollapsedCharacter(
current_pos.OffsetInTextNode() -
text_layout_object->TextStartOffset()))
return current_pos.ComputePosition();
}
return last_visible.DeprecatedComputePosition();
}
Position MostBackwardCaretPosition(const Position& position,
EditingBoundaryCrossingRule rule,
SnapToClient client) {
return MostBackwardOrForwardCaretPosition(
position, rule, client,
MostBackwardCaretPosition<EditingInFlatTreeStrategy>);
}
PositionInFlatTree MostBackwardCaretPosition(const PositionInFlatTree& position,
EditingBoundaryCrossingRule rule,
SnapToClient client) {
return MostBackwardCaretPosition<EditingInFlatTreeStrategy>(position, rule,
client);
}
namespace {
bool HasInvisibleFirstLetter(const Node* node) {
if (!node || !node->IsTextNode())
return false;
const auto* remaining_text =
DynamicTo<LayoutTextFragment>(node->GetLayoutObject());
if (!remaining_text || !remaining_text->IsRemainingTextLayoutObject())
return false;
const auto* first_letter =
DynamicTo<LayoutTextFragment>(AssociatedLayoutObjectOf(*node, 0));
if (!first_letter || first_letter == remaining_text)
return false;
return first_letter->StyleRef().Visibility() != EVisibility::kVisible ||
DisplayLockUtilities::LockedAncestorPreventingPaint(*first_letter);
}
} // namespace
template <typename Strategy>
PositionTemplate<Strategy> MostForwardCaretPosition(
const PositionTemplate<Strategy>& position,
EditingBoundaryCrossingRule rule,
SnapToClient client) {
DCHECK(!NeedsLayoutTreeUpdate(position)) << position;
TRACE_EVENT0("input", "VisibleUnits::mostForwardCaretPosition");
Node* const start_node = position.AnchorNode();
if (!start_node)
return PositionTemplate<Strategy>();
// iterate forward from there, looking for a qualified position
Node* const boundary = EnclosingVisualBoundary<Strategy>(start_node);
// FIXME: PositionIterator should respect Before and After positions.
PositionIteratorAlgorithm<Strategy> last_visible(
position.IsAfterAnchor()
? PositionTemplate<Strategy>::EditingPositionOf(
position.AnchorNode(),
Strategy::CaretMaxOffset(*position.AnchorNode()))
: position);
Node* last_node;
// If we're snapping the caret to the edges of an inline element rather than
// crossing an editing boundary, we want to detect that editable boundary even
// if it happens between the position's container and anchor nodes.
if (rule == kCannotCrossEditingBoundary &&
client == SnapToClient::kLocalCaretRect) {
last_node = position.ComputeContainerNode();
} else {
last_node = start_node;
}
const bool start_editable = IsEditable(*last_node);
bool boundary_crossed = false;
std::optional<WritingMode> writing_mode;
for (PositionIteratorAlgorithm<Strategy> current_pos = last_visible;
!current_pos.AtEnd(); current_pos.Increment()) {
Node* current_node = current_pos.GetNode();
DCHECK(current_node);
// Don't check for an editability change if we haven't moved to a different
// node, to avoid the expense of computing IsEditable().
if (current_node != last_node) {
// Don't change editability.
const bool current_editable = IsEditable(*current_node);
if (start_editable != current_editable) {
if (rule == kCannotCrossEditingBoundary &&
client != SnapToClient::kLocalCaretRect)
break;
boundary_crossed = true;
}
last_node = current_node;
}
// stop before going above the body, up into the head
// return the last visible streamer position
if (IsA<HTMLBodyElement>(*current_node) && current_pos.AtEndOfNode())
break;
if (!CanHaveCaretPosition(*current_node)) {
if (boundary_crossed && rule == kCannotCrossEditingBoundary)
break;
continue;
}
// Do not move to a visually distinct position.
if (EndsOfNodeAreVisuallyDistinctPositions(current_node) &&
current_node != boundary)
return last_visible.DeprecatedComputePosition();
// Do not move past a visually disinct position.
// Note: The first position after the last in a node whose ends are visually
// distinct positions will be [boundary->parentNode(),
// originalBlock->nodeIndex() + 1].
if (boundary && Strategy::Parent(*boundary) == current_node)
return last_visible.DeprecatedComputePosition();
// skip position in non-laid out or invisible node
const LayoutObject* const layout_object = AssociatedLayoutObjectOf(
*current_node,
IsA<Text>(current_node) ? current_pos.OffsetInTextNode() : 0);
if (!layout_object ||
layout_object->Style()->Visibility() != EVisibility::kVisible) {
if (boundary_crossed && rule == kCannotCrossEditingBoundary)
break;
continue;
}
if (DisplayLockUtilities::LockedAncestorPreventingPaint(*layout_object)) {
if (boundary_crossed && rule == kCannotCrossEditingBoundary)
break;
continue;
}
if (!writing_mode.has_value()) {
writing_mode.emplace(layout_object->Style()->GetWritingMode());
} else if (*writing_mode != layout_object->Style()->GetWritingMode()) {
return last_visible.ComputePosition();
}
if (boundary_crossed) {
if (rule == kCannotCrossEditingBoundary) {
if (current_node == start_node) {
DCHECK(position.IsBeforeAnchor() || position.IsAfterAnchor());
return position;
}
return PositionTemplate<Strategy>::BeforeNode(*current_node);
}
if (rule == kCanCrossEditingBoundary)
return current_pos.DeprecatedComputePosition();
}
// track last visible streamer position
if (IsStreamer<Strategy>(current_pos))
last_visible = current_pos;
// Return position before tables and nodes which have content that can be
// ignored.
if (EditingIgnoresContent(*current_node) ||
IsDisplayInsideTable(current_node)) {
if (current_pos.AtStartOfNode())
return PositionTemplate<Strategy>::EditingPositionOf(current_node, 0);
continue;
}
// return current position if it is in laid out text
if (!layout_object->IsText())
continue;
const auto* const text_layout_object = To<LayoutText>(layout_object);
if (!text_layout_object->HasNonCollapsedText())
continue;
const unsigned text_start_offset = text_layout_object->TextStartOffset();
if (current_node != start_node) {
DCHECK(current_pos.AtStartOfNode() ||
HasInvisibleFirstLetter(current_node));
return PositionTemplate<Strategy>(
current_node,
text_layout_object->CaretMinOffset() + text_start_offset);
}
DCHECK_GE(current_pos.OffsetInTextNode(),
static_cast<int>(text_layout_object->TextStartOffset()));
if (text_layout_object->IsBeforeNonCollapsedCharacter(
current_pos.OffsetInTextNode() -
text_layout_object->TextStartOffset()))
return current_pos.ComputePosition();
}
return last_visible.DeprecatedComputePosition();
}
Position MostForwardCaretPosition(const Position& position,
EditingBoundaryCrossingRule rule,
SnapToClient client) {
return MostBackwardOrForwardCaretPosition(
position, rule, client,
MostForwardCaretPosition<EditingInFlatTreeStrategy>);
}
PositionInFlatTree MostForwardCaretPosition(const PositionInFlatTree& position,
EditingBoundaryCrossingRule rule,
SnapToClient client) {
return MostForwardCaretPosition<EditingInFlatTreeStrategy>(position, rule,
client);
}
// Returns true if the visually equivalent positions around have different
// editability. A position is considered at editing boundary if one of the
// following is true:
// 1. It is the first position in the node and the next visually equivalent
// position is non editable.
// 2. It is the last position in the node and the previous visually equivalent
// position is non editable.
// 3. It is an editable position and both the next and previous visually
// equivalent positions are both non editable.
template <typename Strategy>
static bool AtEditingBoundary(const PositionTemplate<Strategy> positions) {
PositionTemplate<Strategy> next_position =
MostForwardCaretPosition(positions, kCanCrossEditingBoundary);
if (positions.AtFirstEditingPositionForNode() && next_position.IsNotNull() &&
!IsEditable(*next_position.AnchorNode()))
return true;
PositionTemplate<Strategy> prev_position =
MostBackwardCaretPosition(positions, kCanCrossEditingBoundary);
if (positions.AtLastEditingPositionForNode() && prev_position.IsNotNull() &&
!IsEditable(*prev_position.AnchorNode()))
return true;
return next_position.IsNotNull() &&
!IsEditable(*next_position.AnchorNode()) &&
prev_position.IsNotNull() && !IsEditable(*prev_position.AnchorNode());
}
template <typename Strategy>
static bool IsVisuallyEquivalentCandidateAlgorithm(
const PositionTemplate<Strategy>& position) {
Node* const anchor_node = position.AnchorNode();
if (!anchor_node)
return false;
LayoutObject* layout_object = anchor_node->GetLayoutObject();
if (!layout_object)
return false;
if (layout_object->Style()->Visibility() != EVisibility::kVisible) {
return false;
}
if (DisplayLockUtilities::LockedAncestorPreventingPaint(*layout_object))
return false;
if (layout_object->IsBR()) {
// TODO(leviw) The condition should be
// anchor_type_ == PositionAnchorType::kBeforeAnchor, but for now we
// still need to support legacy positions.
if (position.IsAfterAnchor())
return false;
if (position.ComputeEditingOffset())
return false;
const Node* parent = Strategy::Parent(*anchor_node);
return parent->GetLayoutObject() &&
parent->GetLayoutObject()->IsSelectable();
}
if (layout_object->IsText())
return layout_object->IsSelectable() && InRenderedText(position);
if (layout_object->IsSVG()) {
// We don't consider SVG elements are contenteditable except for
// associated |layoutObject| returns |isText()| true,
// e.g. |LayoutSVGInlineText|.
return false;
}
if (IsDisplayInsideTable(anchor_node) ||
EditingIgnoresContent(*anchor_node)) {
if (!position.AtFirstEditingPositionForNode() &&
!position.AtLastEditingPositionForNode())
return false;
const Node* parent = Strategy::Parent(*anchor_node);
return parent->GetLayoutObject() &&
parent->GetLayoutObject()->IsSelectable();
}
if (anchor_node->GetDocument().documentElement() == anchor_node ||
anchor_node->IsDocumentNode())
return false;
if (!layout_object->IsSelectable())
return false;
if (layout_object->IsLayoutBlockFlow() || layout_object->IsFlexibleBox() ||
layout_object->IsLayoutGrid()) {
if (To<LayoutBlock>(layout_object)->LogicalHeight() ||
anchor_node->GetDocument().body() == anchor_node) {
if (!HasRenderedNonAnonymousDescendantsWithHeight(layout_object))
return position.AtFirstEditingPositionForNode();
return IsEditable(*anchor_node) && AtEditingBoundary(position);
}
} else {
return IsEditable(*anchor_node) && AtEditingBoundary(position);
}
return false;
}
bool IsVisuallyEquivalentCandidate(const Position& position) {
return IsVisuallyEquivalentCandidateAlgorithm<EditingStrategy>(position);
}
bool IsVisuallyEquivalentCandidate(const PositionInFlatTree& position) {
return IsVisuallyEquivalentCandidateAlgorithm<EditingInFlatTreeStrategy>(
position);
}
template <typename Strategy>
static PositionTemplate<Strategy> SkipToEndOfEditingBoundary(
const PositionTemplate<Strategy>& pos,
const PositionTemplate<Strategy>& anchor) {
if (pos.IsNull())
return pos;
ContainerNode* highest_root = HighestEditableRoot(anchor);
ContainerNode* highest_root_of_pos = HighestEditableRoot(pos);
// Return |pos| itself if the two are from the very same editable region,
// or both are non-editable.
if (highest_root_of_pos == highest_root)
return pos;
// If this is not editable but |pos| has an editable root, skip to the end
if (!highest_root && highest_root_of_pos) {
return PositionTemplate<Strategy>(highest_root_of_pos,
PositionAnchorType::kAfterAnchor)
.ParentAnchoredEquivalent();
}
// That must mean that |pos| is not editable. Return the next position after
// |pos| that is in the same editable region as this position
DCHECK(highest_root);
return FirstEditablePositionAfterPositionInRoot(pos, *highest_root);
}
template <typename Strategy>
static UChar32 CharacterAfterAlgorithm(
const VisiblePositionTemplate<Strategy>& visible_position) {
DCHECK(visible_position.IsValid()) << visible_position;
// We canonicalize to the first of two equivalent candidates, but the second
// of the two candidates is the one that will be inside the text node
// containing the character after this visible position.
const PositionTemplate<Strategy> pos =
MostForwardCaretPosition(visible_position.DeepEquivalent());
if (!pos.IsOffsetInAnchor())
return 0;
auto* text_node = DynamicTo<Text>(pos.ComputeContainerNode());
if (!text_node)
return 0;
unsigned offset = static_cast<unsigned>(pos.OffsetInContainerNode());
unsigned length = text_node->length();
if (offset >= length)
return 0;
return text_node->data().CharacterStartingAt(offset);
}
UChar32 CharacterAfter(const VisiblePosition& visible_position) {
return CharacterAfterAlgorithm<EditingStrategy>(visible_position);
}
UChar32 CharacterAfter(const VisiblePositionInFlatTree& visible_position) {
return CharacterAfterAlgorithm<EditingInFlatTreeStrategy>(visible_position);
}
template <typename Strategy>
static UChar32 CharacterBeforeAlgorithm(
const VisiblePositionTemplate<Strategy>& visible_position) {
DCHECK(visible_position.IsValid()) << visible_position;
return CharacterAfter(PreviousPositionOf(visible_position));
}
UChar32 CharacterBefore(const VisiblePosition& visible_position) {
return CharacterBeforeAlgorithm<EditingStrategy>(visible_position);
}
UChar32 CharacterBefore(const VisiblePositionInFlatTree& visible_position) {
return CharacterBeforeAlgorithm<EditingInFlatTreeStrategy>(visible_position);
}
template <typename Strategy>
static VisiblePositionTemplate<Strategy> NextPositionOfAlgorithm(
const PositionWithAffinityTemplate<Strategy>& position,
EditingBoundaryCrossingRule rule) {
const VisiblePositionTemplate<Strategy> next = CreateVisiblePosition(
NextVisuallyDistinctCandidate(position.GetPosition()),
position.Affinity());
switch (rule) {
case kCanCrossEditingBoundary:
return next;
case kCannotCrossEditingBoundary:
return CreateVisiblePosition(
AdjustForwardPositionToAvoidCrossingEditingBoundaries(
next.ToPositionWithAffinity(), position.GetPosition()));
case kCanSkipOverEditingBoundary:
return CreateVisiblePosition(SkipToEndOfEditingBoundary(
next.DeepEquivalent(), position.GetPosition()));
}
NOTREACHED();
}
VisiblePosition NextPositionOf(const Position& position,
EditingBoundaryCrossingRule rule) {
DCHECK(position.IsValidFor(*position.GetDocument())) << position;
return NextPositionOfAlgorithm<EditingStrategy>(
PositionWithAffinityTemplate<EditingStrategy>(position), rule);
}
VisiblePosition NextPositionOf(const VisiblePosition& visible_position,
EditingBoundaryCrossingRule rule) {
DCHECK(visible_position.IsValid()) << visible_position;
return NextPositionOfAlgorithm<EditingStrategy>(
visible_position.ToPositionWithAffinity(), rule);
}
VisiblePositionInFlatTree NextPositionOf(
const VisiblePositionInFlatTree& visible_position,
EditingBoundaryCrossingRule rule) {
DCHECK(visible_position.IsValid()) << visible_position;
return NextPositionOfAlgorithm<EditingInFlatTreeStrategy>(
visible_position.ToPositionWithAffinity(), rule);
}
template <typename Strategy>
static PositionTemplate<Strategy> SkipToStartOfEditingBoundary(
const PositionTemplate<Strategy>& pos,
const PositionTemplate<Strategy>& anchor) {
if (pos.IsNull())
return pos;
ContainerNode* highest_root = HighestEditableRoot(anchor);
ContainerNode* highest_root_of_pos = HighestEditableRoot(pos);
// Return |pos| itself if the two are from the very same editable region, or
// both are non-editable.
if (highest_root_of_pos == highest_root)
return pos;
// If this is not editable but |pos| has an editable root, skip to the start
if (!highest_root && highest_root_of_pos) {
return PreviousVisuallyDistinctCandidate(
PositionTemplate<Strategy>(highest_root_of_pos,
PositionAnchorType::kBeforeAnchor)
.ParentAnchoredEquivalent());
}
// That must mean that |pos| is not editable. Return the last position
// before |pos| that is in the same editable region as this position
DCHECK(highest_root);
return LastEditablePositionBeforePositionInRoot(pos, *highest_root);
}
template <typename Strategy>
static VisiblePositionTemplate<Strategy> PreviousPositionOfAlgorithm(
const PositionTemplate<Strategy>& position,
EditingBoundaryCrossingRule rule) {
const PositionTemplate<Strategy> prev_position =
PreviousVisuallyDistinctCandidate(position);
// return null visible position if there is no previous visible position
if (prev_position.AtStartOfTree())
return VisiblePositionTemplate<Strategy>();
// we should always be able to make the affinity |TextAffinity::Downstream|,
// because going previous from an |TextAffinity::Upstream| position can
// never yield another |TextAffinity::Upstream position| (unless line wrap
// length is 0!).
const VisiblePositionTemplate<Strategy> prev =
CreateVisiblePosition(prev_position);
if (prev.DeepEquivalent() == position)
return VisiblePositionTemplate<Strategy>();
switch (rule) {
case kCanCrossEditingBoundary:
return prev;
case kCannotCrossEditingBoundary:
return CreateVisiblePosition(
AdjustBackwardPositionToAvoidCrossingEditingBoundaries(
prev.ToPositionWithAffinity(), position));
case kCanSkipOverEditingBoundary:
return CreateVisiblePosition(
SkipToStartOfEditingBoundary(prev.DeepEquivalent(), position));
}
NOTREACHED();
}
VisiblePosition PreviousPositionOf(const VisiblePosition& visible_position,
EditingBoundaryCrossingRule rule) {
DCHECK(visible_position.IsValid()) << visible_position;
return PreviousPositionOfAlgorithm<EditingStrategy>(
visible_position.DeepEquivalent(), rule);
}
VisiblePositionInFlatTree PreviousPositionOf(
const VisiblePositionInFlatTree& visible_position,
EditingBoundaryCrossingRule rule) {
DCHECK(visible_position.IsValid()) << visible_position;
return PreviousPositionOfAlgorithm<EditingInFlatTreeStrategy>(
visible_position.DeepEquivalent(), rule);
}
template <typename Strategy>
static EphemeralRangeTemplate<Strategy> MakeSearchRange(
const PositionTemplate<Strategy>& pos) {
Node* node = pos.ComputeContainerNode();
if (!node)
return EphemeralRangeTemplate<Strategy>();
Document& document = node->GetDocument();
if (!document.documentElement())
return EphemeralRangeTemplate<Strategy>();
Element* boundary = EnclosingBlockFlowElement(*node);
if (!boundary)
return EphemeralRangeTemplate<Strategy>();
return EphemeralRangeTemplate<Strategy>(
pos, PositionTemplate<Strategy>::LastPositionInNode(*boundary));
}
template <typename Strategy>
static PositionTemplate<Strategy> SkipWhitespaceAlgorithm(
const PositionTemplate<Strategy>& position) {
const EphemeralRangeTemplate<Strategy>& search_range =
MakeSearchRange(position);
if (search_range.IsNull())
return position;
CharacterIteratorAlgorithm<Strategy> char_it(
search_range.StartPosition(), search_range.EndPosition(),
TextIteratorBehavior::Builder()
.SetEmitsCharactersBetweenAllVisiblePositions(true)
.Build());
PositionTemplate<Strategy> runner = position;
// TODO(editing-dev): We should consider U+20E3, COMBINING ENCLOSING KEYCAP.
// When whitespace character followed by U+20E3, we should not consider
// it as trailing white space.
for (; char_it.length(); char_it.Advance(1)) {
UChar c = char_it.CharacterAt(0);
if ((!IsSpaceOrNewline(c) && c != kNoBreakSpaceCharacter) || c == '\n')
return runner;
runner = char_it.EndPosition();
}
return runner;
}
Position SkipWhitespace(const Position& position) {
return SkipWhitespaceAlgorithm(position);
}
PositionInFlatTree SkipWhitespace(const PositionInFlatTree& position) {
return SkipWhitespaceAlgorithm(position);
}
template <typename Strategy>
static Vector<gfx::QuadF> ComputeTextBounds(
const EphemeralRangeTemplate<Strategy>& range) {
const PositionTemplate<Strategy>& start_position = range.StartPosition();
const PositionTemplate<Strategy>& end_position = range.EndPosition();
Node* const start_container = start_position.ComputeContainerNode();
DCHECK(start_container);
Node* const end_container = end_position.ComputeContainerNode();
DCHECK(end_container);
DCHECK(!start_container->GetDocument().NeedsLayoutTreeUpdate());
Vector<gfx::QuadF> result;
for (const Node& node : range.Nodes()) {
LayoutObject* const layout_object = node.GetLayoutObject();
if (!layout_object || !layout_object->IsText())
continue;
const auto* layout_text = To<LayoutText>(layout_object);
unsigned start_offset =
node == start_container ? start_position.OffsetInContainerNode() : 0;
unsigned end_offset = node == end_container
? end_position.OffsetInContainerNode()
: std::numeric_limits<unsigned>::max();
layout_text->AbsoluteQuadsForRange(result, start_offset, end_offset);
}
return result;
}
template <typename Strategy>
static gfx::RectF ComputeTextRectTemplate(
const EphemeralRangeTemplate<Strategy>& range) {
gfx::RectF result;
for (auto rect : ComputeTextBounds<Strategy>(range))
result.Union(rect.BoundingBox());
return result;
}
gfx::Rect ComputeTextRect(const EphemeralRange& range) {
return gfx::ToEnclosingRect(ComputeTextRectTemplate(range));
}
gfx::Rect ComputeTextRect(const EphemeralRangeInFlatTree& range) {
return gfx::ToEnclosingRect(ComputeTextRectTemplate(range));
}
gfx::RectF ComputeTextRectF(const EphemeralRange& range) {
return ComputeTextRectTemplate(range);
}
gfx::Rect FirstRectForRange(const EphemeralRange& range) {
DCHECK(!range.GetDocument().NeedsLayoutTreeUpdate());
DocumentLifecycle::DisallowTransitionScope disallow_transition(
range.GetDocument().Lifecycle());
DCHECK(range.IsNotNull());
const PositionWithAffinity start_position(
CreateVisiblePosition(range.StartPosition()).DeepEquivalent(),
TextAffinity::kDownstream);
gfx::Rect start_caret_rect = AbsoluteCaretBoundsOf(start_position);
if (start_caret_rect.IsEmpty())
return gfx::Rect();
const PositionWithAffinity end_position(
CreateVisiblePosition(range.EndPosition()).DeepEquivalent(),
TextAffinity::kUpstream);
const PositionWithAffinity end_position_in_same_line =
InSameLine(start_position, end_position) ? end_position
: EndOfLine(start_position);
gfx::Rect end_caret_rect = AbsoluteCaretBoundsOf(end_position_in_same_line);
if (end_caret_rect.IsEmpty()) {
return gfx::Rect();
}
// Some tests expect the resultant rectangles don't include caret widths.
// e.g.
// - RenderViewImplTest.GetCompositionCharacterBoundsTest
// - LocalFrameTest.CharacterIndexAtPointWithPinchZoom
if (GetComputedStyleForElementOrLayoutObject(*start_position.AnchorNode())
->IsHorizontalWritingMode()) {
end_caret_rect.set_width(0);
start_caret_rect.set_width(0);
} else {
end_caret_rect.set_height(0);
start_caret_rect.set_height(0);
}
const gfx::Point left_top = {
std::min(start_caret_rect.x(), end_caret_rect.x()),
std::min(start_caret_rect.y(), end_caret_rect.y())};
const int right = std::max(start_caret_rect.right(), end_caret_rect.right());
const int bottom =
std::max(start_caret_rect.bottom(), end_caret_rect.bottom());
return gfx::Rect(left_top, {right - left_top.x(), bottom - left_top.y()});
}
} // namespace blink
|