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 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438
|
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* (C) 2001 Dirk Mueller (mueller@kde.org)
* (C) 2006 Alexey Proskuryakov (ap@webkit.org)
* Copyright (C) 2004-2023 Apple Inc. All rights reserved.
* Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmobile.com/)
* Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
* Copyright (C) 2011 Google Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#pragma once
#include "CanvasObserver.h"
#include "Color.h"
#include "ContainerNode.h"
#include "DocumentEventTiming.h"
#include "FontSelectorClient.h"
#include "FrameDestructionObserver.h"
#include "FrameIdentifier.h"
#include "OrientationNotifier.h"
#include "PageIdentifier.h"
#include "PlaybackTargetClientContextIdentifier.h"
#include "RegistrableDomain.h"
#include "RenderPtr.h"
#include "ReportingClient.h"
#include "ScriptExecutionContext.h"
#include "StringWithDirection.h"
#include "Supplementable.h"
#include "Timer.h"
#include "TreeScope.h"
#include "URLKeepingBlobAlive.h"
#include "UserActionElementSet.h"
#include "ViewportArguments.h"
#include <wtf/Deque.h>
#include <wtf/FixedVector.h>
#include <wtf/Forward.h>
#include <wtf/HashCountedSet.h>
#include <wtf/HashSet.h>
#include <wtf/Logger.h>
#include <wtf/ObjectIdentifier.h>
#include <wtf/Observer.h>
#include <wtf/UniqueRef.h>
#include <wtf/WeakHashSet.h>
#include <wtf/WeakListHashSet.h>
#include <wtf/WeakPtr.h>
#include <wtf/text/AtomStringHash.h>
#if ENABLE(IOS_TOUCH_EVENTS)
#include <wtf/ThreadingPrimitives.h>
#endif
namespace JSC {
class CallFrame;
class InputCursor;
}
namespace WTF {
class TextStream;
}
namespace PAL {
class SessionID;
class TextEncoding;
}
namespace WebCore {
class AXObjectCache;
class AppHighlightStorage;
class Attr;
class CanvasBase;
class CDATASection;
class CSSCounterStyleRegistry;
class CSSFontSelector;
class CSSStyleDeclaration;
class CSSStyleSheet;
class CachedCSSStyleSheet;
class CachedFrameBase;
class CachedResourceLoader;
class CachedScript;
class CanvasRenderingContext2D;
class CharacterData;
class Comment;
class ConstantPropertyMap;
class ContentVisibilityDocumentState;
class DOMImplementation;
class DOMSelection;
class LocalDOMWindow;
class DOMWrapperWorld;
class Database;
class DatabaseThread;
class DeviceMotionClient;
class DeviceMotionController;
class DeviceOrientationAndMotionAccessController;
class DeviceOrientationClient;
class DeviceOrientationController;
class DocumentFontLoader;
class DocumentFragment;
class DocumentLoader;
class DocumentMarkerController;
class DocumentParser;
class DocumentSharedObjectPool;
class DocumentTimeline;
class DocumentTimelinesController;
class DocumentType;
class EditingBehavior;
class Editor;
class EventLoop;
class EventLoopTaskGroup;
class ExtensionStyleSheets;
class FloatQuad;
class FloatRect;
class FontFaceSet;
class FontLoadRequest;
class FormController;
class FrameSelection;
class FullscreenManager;
class GPUCanvasContext;
class HTMLAllCollection;
class HTMLAttachmentElement;
class HTMLBodyElement;
class HTMLCanvasElement;
class HTMLCollection;
class HTMLDialogElement;
class HTMLDocument;
class HTMLElement;
class HTMLFrameOwnerElement;
class HTMLHeadElement;
class HTMLIFrameElement;
class HTMLImageElement;
class HTMLMapElement;
class HTMLMediaElement;
class HTMLMetaElement;
class HTMLVideoElement;
class HighlightRangeData;
class HighlightRegister;
class HitTestLocation;
class HitTestRequest;
class HitTestResult;
class IdleCallbackController;
class IdleRequestCallback;
class ImageBitmapRenderingContext;
class IntPoint;
class IntersectionObserver;
class JSNode;
class LayoutPoint;
class LayoutRect;
class LazyLoadImageObserver;
class LiveNodeList;
class LocalFrame;
class LocalFrameView;
class Locale;
class Location;
class MediaCanStartListener;
class MediaPlaybackTarget;
class MediaPlaybackTargetClient;
class MediaProducer;
class MediaQueryList;
class MediaQueryMatcher;
class MessagePortChannelProvider;
class MouseEventWithHitTestResults;
class NodeFilter;
class NodeIterator;
class Page;
class PaintWorklet;
class PaintWorkletGlobalScope;
class PlatformMouseEvent;
class PointerEvent;
class ProcessingInstruction;
class QualifiedName;
class Quirks;
class RTCNetworkManager;
class Range;
class Region;
class RenderTreeBuilder;
class RenderView;
class ReportingScope;
class RequestAnimationFrameCallback;
class ResizeObserver;
class SVGDocumentExtensions;
class SVGElement;
class SVGSVGElement;
class SVGUseElement;
class SWClientConnection;
class ScriptModuleLoader;
class ScriptRunner;
class ScriptableDocumentParser;
class ScriptedAnimationController;
class SecurityOrigin;
class SegmentedString;
class SelectorQuery;
class SelectorQueryCache;
class SerializedScriptValue;
class Settings;
class SleepDisabler;
class SpeechRecognition;
class StorageConnection;
class StringCallback;
class StyleSheet;
class StyleSheetContents;
class StyleSheetList;
class Text;
class TextAutoSizing;
class TextManipulationController;
class TextResourceDecoder;
class TransformSource;
class TreeWalker;
class UndoManager;
class ValidationMessage;
class VisibilityChangeClient;
class VisitedLinkState;
class WakeLockManager;
class WebAnimation;
class WebGL2RenderingContext;
class WebGLRenderingContext;
class WindowEventLoop;
class WindowProxy;
class XPathEvaluator;
class XPathExpression;
class XPathNSResolver;
class XPathResult;
#if ENABLE(CONTENT_CHANGE_OBSERVER)
class ContentChangeObserver;
class DOMTimerHoldingTank;
#endif
#if ENABLE(THREADED_ANIMATION_RESOLUTION)
class AcceleratedTimeline;
#endif
struct ApplicationManifest;
struct BoundaryPoint;
struct ClientOrigin;
struct FocusOptions;
struct IntersectionObserverData;
struct SecurityPolicyViolationEventInit;
#if ENABLE(TOUCH_EVENTS)
struct EventTrackingRegions;
#endif
#if USE(SYSTEM_PREVIEW)
struct SystemPreviewInfo;
#endif
template<typename> class ExceptionOr;
enum class CollectionType : uint8_t;
enum CSSPropertyID : uint16_t;
enum class CompositeOperator : uint8_t;
enum class ContentRelevancyStatus : uint8_t;
enum class DOMAudioSessionType : uint8_t;
enum class DisabledAdaptations : uint8_t;
enum class FireEvents : bool;
enum class FocusDirection : uint8_t;
enum class FocusPreviousElement : bool;
enum class FocusTrigger : uint8_t;
enum class MediaProducerMediaState : uint32_t;
enum class MediaProducerMediaCaptureKind : uint8_t;
enum class MediaProducerMutedState : uint8_t;
enum class NoiseInjectionPolicy : bool;
enum class ParserContentPolicy : uint8_t;
enum class PlatformEventType : uint8_t;
enum class ReferrerPolicySource : uint8_t;
enum class RouteSharingPolicy : uint8_t;
enum class ShouldOpenExternalURLsPolicy : uint8_t;
enum class RenderingUpdateStep : uint32_t;
enum class StyleColorOptions : uint8_t;
enum class MutationObserverOptionType : uint8_t;
enum class ViolationReportType : uint8_t;
enum class VisibilityState : bool;
#if ENABLE(TOUCH_EVENTS)
enum class EventTrackingRegionsEventType : uint8_t;
#endif
using MediaProducerMediaStateFlags = OptionSet<MediaProducerMediaState>;
using MediaProducerMutedStateFlags = OptionSet<MediaProducerMutedState>;
using PlatformDisplayID = uint32_t;
namespace Style {
class CustomPropertyRegistry;
class Resolver;
class Scope;
class Update;
}
enum class PageshowEventPersistence : bool { NotPersisted, Persisted };
enum class NodeListInvalidationType : uint8_t {
DoNotInvalidateOnAttributeChanges,
InvalidateOnClassAttrChange,
InvalidateOnIdNameAttrChange,
InvalidateOnNameAttrChange,
InvalidateOnForTypeAttrChange,
InvalidateForFormControls,
InvalidateOnHRefAttrChange,
InvalidateOnAnyAttrChange,
};
const uint8_t numNodeListInvalidationTypes = static_cast<uint8_t>(NodeListInvalidationType::InvalidateOnAnyAttrChange) + 1;
enum class EventHandlerRemoval : bool { One, All };
using EventTargetSet = HashCountedSet<Node*>;
enum class DocumentCompatibilityMode : uint8_t {
NoQuirksMode = 1,
QuirksMode = 1 << 1,
LimitedQuirksMode = 1 << 2
};
enum class DimensionsCheck : uint8_t {
Width = 1 << 0,
Height = 1 << 1,
All = 1 << 2, // FIXME: This is probably meant to be Width | Height instead.
};
enum class HttpEquivPolicy {
Enabled,
DisabledBySettings,
DisabledByContentDispositionAttachmentSandbox
};
enum class CustomElementNameValidationStatus {
Valid,
FirstCharacterIsNotLowercaseASCIILetter,
ContainsNoHyphen,
ContainsUppercaseASCIILetter,
ContainsDisallowedCharacter,
ConflictsWithStandardElementName
};
using RenderingContext = std::variant<
#if ENABLE(WEBGL)
RefPtr<WebGLRenderingContext>,
RefPtr<WebGL2RenderingContext>,
#endif
RefPtr<GPUCanvasContext>,
RefPtr<ImageBitmapRenderingContext>,
RefPtr<CanvasRenderingContext2D>
>;
class DocumentParserYieldToken {
WTF_MAKE_FAST_ALLOCATED;
public:
WEBCORE_EXPORT DocumentParserYieldToken(Document&);
WEBCORE_EXPORT ~DocumentParserYieldToken();
private:
WeakPtr<Document, WeakPtrImplWithEventTargetData> m_document;
};
class Document
: public ContainerNode
, public TreeScope
, public ScriptExecutionContext
, public FontSelectorClient
, public FrameDestructionObserver
, public Supplementable<Document>
, public Logger::Observer
, public CanvasObserver
, public ReportingClient {
WTF_MAKE_ISO_ALLOCATED_EXPORT(Document, WEBCORE_EXPORT);
public:
using EventTarget::weakPtrFactory;
using EventTarget::WeakValueType;
using EventTarget::WeakPtrImplType;
inline static Ref<Document> create(const Settings&, const URL&);
static Ref<Document> createNonRenderedPlaceholder(LocalFrame&, const URL&);
static Ref<Document> create(Document&);
virtual ~Document();
// Nodes belonging to this document increase referencingNodeCount -
// these are enough to keep the document from being destroyed, but
// not enough to keep it from removing its children. This allows a
// node that outlives its document to still have a valid document
// pointer without introducing reference cycles.
void incrementReferencingNodeCount()
{
ASSERT(!m_deletionHasBegun);
++m_referencingNodeCount;
}
void decrementReferencingNodeCount()
{
ASSERT(!m_deletionHasBegun || !m_referencingNodeCount);
--m_referencingNodeCount;
if (!m_referencingNodeCount && !refCount()) {
#if ASSERT_ENABLED
m_deletionHasBegun = true;
#endif
m_refCountAndParentBit = s_refCountIncrement; // Avoid double destruction through use of Ref<T>/RefPtr<T>. (This is a security mitigation in case of programmer error. It will ASSERT in debug builds.)
delete this;
}
}
unsigned referencingNodeCount() const { return m_referencingNodeCount; }
void removedLastRef();
using DocumentsMap = HashMap<ScriptExecutionContextIdentifier, Document*>;
WEBCORE_EXPORT static DocumentsMap::ValuesIteratorRange allDocuments();
WEBCORE_EXPORT static DocumentsMap& allDocumentsMap();
MediaQueryMatcher& mediaQueryMatcher();
using ContainerNode::ref;
using ContainerNode::deref;
using TreeScope::rootNode;
bool canContainRangeEndPoint() const final { return true; }
Element* elementForAccessKey(const String& key);
void invalidateAccessKeyCache();
ExceptionOr<SelectorQuery&> selectorQueryForString(const String&);
void setViewportArguments(const ViewportArguments& viewportArguments) { m_viewportArguments = viewportArguments; }
WEBCORE_EXPORT ViewportArguments viewportArguments() const;
OptionSet<DisabledAdaptations> disabledAdaptations() const { return m_disabledAdaptations; }
#if ASSERT_ENABLED
bool didDispatchViewportPropertiesChanged() const { return m_didDispatchViewportPropertiesChanged; }
#endif
WEBCORE_EXPORT DocumentType* doctype() const;
WEBCORE_EXPORT DOMImplementation& implementation();
Element* documentElement() const { return m_documentElement.get(); }
static ptrdiff_t documentElementMemoryOffset() { return OBJECT_OFFSETOF(Document, m_documentElement); }
WEBCORE_EXPORT Element* activeElement();
WEBCORE_EXPORT bool hasFocus() const;
void whenVisible(Function<void()>&&);
bool hasManifest() const;
WEBCORE_EXPORT ExceptionOr<Ref<Element>> createElementForBindings(const AtomString& tagName);
WEBCORE_EXPORT Ref<DocumentFragment> createDocumentFragment();
WEBCORE_EXPORT Ref<Text> createTextNode(String&& data);
WEBCORE_EXPORT Ref<Comment> createComment(String&& data);
WEBCORE_EXPORT ExceptionOr<Ref<CDATASection>> createCDATASection(String&& data);
WEBCORE_EXPORT ExceptionOr<Ref<ProcessingInstruction>> createProcessingInstruction(String&& target, String&& data);
WEBCORE_EXPORT ExceptionOr<Ref<Attr>> createAttribute(const AtomString& name);
WEBCORE_EXPORT ExceptionOr<Ref<Attr>> createAttributeNS(const AtomString& namespaceURI, const AtomString& qualifiedName, bool shouldIgnoreNamespaceChecks = false);
WEBCORE_EXPORT ExceptionOr<Ref<Node>> importNode(Node& nodeToImport, bool deep);
WEBCORE_EXPORT ExceptionOr<Ref<Element>> createElementNS(const AtomString& namespaceURI, const AtomString& qualifiedName);
WEBCORE_EXPORT Ref<Element> createElement(const QualifiedName&, bool createdByParser);
static CustomElementNameValidationStatus validateCustomElementName(const AtomString&);
WEBCORE_EXPORT RefPtr<Range> caretRangeFromPoint(int x, int y);
std::optional<BoundaryPoint> caretPositionFromPoint(const LayoutPoint& clientPoint);
WEBCORE_EXPORT Element* scrollingElementForAPI();
WEBCORE_EXPORT Element* scrollingElement();
enum class ReadyState : uint8_t { Loading, Interactive, Complete };
ReadyState readyState() const { return m_readyState; }
WEBCORE_EXPORT String defaultCharsetForLegacyBindings() const;
inline String charset() const;
WEBCORE_EXPORT String characterSetWithUTF8Fallback() const;
inline PAL::TextEncoding textEncoding() const;
inline AtomString encoding() const;
WEBCORE_EXPORT void setCharset(const String&); // Used by ObjC / GOBject bindings only.
void setContent(const String&);
String suggestedMIMEType() const;
void overrideMIMEType(const String&);
WEBCORE_EXPORT String contentType() const;
const AtomString& contentLanguage() const { return m_contentLanguage; }
void setContentLanguage(const AtomString&);
const AtomString& effectiveDocumentElementLanguage() const;
void setDocumentElementLanguage(const AtomString&);
TextDirection documentElementTextDirection() const { return m_documentElementTextDirection; }
void setDocumentElementTextDirection(TextDirection textDirection) { m_documentElementTextDirection = textDirection; }
void addElementWithLangAttrMatchingDocumentElement(Element&);
void removeElementWithLangAttrMatchingDocumentElement(Element&);
String xmlEncoding() const { return m_xmlEncoding; }
String xmlVersion() const { return m_xmlVersion; }
enum class StandaloneStatus : uint8_t { Unspecified, Standalone, NotStandalone };
bool xmlStandalone() const { return m_xmlStandalone == StandaloneStatus::Standalone; }
StandaloneStatus xmlStandaloneStatus() const { return m_xmlStandalone; }
bool hasXMLDeclaration() const { return m_hasXMLDeclaration; }
bool shouldPreventEnteringBackForwardCacheForTesting() const { return m_shouldPreventEnteringBackForwardCacheForTesting; }
void preventEnteringBackForwardCacheForTesting() { m_shouldPreventEnteringBackForwardCacheForTesting = true; }
void setXMLEncoding(const String& encoding) { m_xmlEncoding = encoding; } // read-only property, only to be set from XMLDocumentParser
WEBCORE_EXPORT ExceptionOr<void> setXMLVersion(const String&);
WEBCORE_EXPORT void setXMLStandalone(bool);
void setHasXMLDeclaration(bool hasXMLDeclaration) { m_hasXMLDeclaration = hasXMLDeclaration; }
String documentURI() const { return m_documentURI; }
WEBCORE_EXPORT void setDocumentURI(const String&);
WEBCORE_EXPORT VisibilityState visibilityState() const;
void visibilityStateChanged();
WEBCORE_EXPORT bool hidden() const;
void setTimerThrottlingEnabled(bool);
bool isTimerThrottlingEnabled() const { return m_isTimerThrottlingEnabled; }
void setVisibilityHiddenDueToDismissal(bool);
WEBCORE_EXPORT ExceptionOr<Ref<Node>> adoptNode(Node& source);
WEBCORE_EXPORT Ref<HTMLCollection> images();
WEBCORE_EXPORT Ref<HTMLCollection> embeds();
WEBCORE_EXPORT Ref<HTMLCollection> plugins(); // an alias for embeds() required for the JS DOM bindings.
WEBCORE_EXPORT Ref<HTMLCollection> applets();
WEBCORE_EXPORT Ref<HTMLCollection> links();
WEBCORE_EXPORT Ref<HTMLCollection> forms();
WEBCORE_EXPORT Ref<HTMLCollection> anchors();
WEBCORE_EXPORT Ref<HTMLCollection> scripts();
Ref<HTMLCollection> all();
Ref<HTMLCollection> allFilteredByName(const AtomString&);
Ref<HTMLCollection> windowNamedItems(const AtomString&);
Ref<HTMLCollection> documentNamedItems(const AtomString&);
WakeLockManager& wakeLockManager();
// Other methods (not part of DOM)
bool isSynthesized() const { return m_isSynthesized; }
enum class DocumentClass : uint16_t {
HTML = 1,
XHTML = 1 << 1,
Image = 1 << 2,
Plugin = 1 << 3,
Media = 1 << 4,
SVG = 1 << 5,
Text = 1 << 6,
XML = 1 << 7,
#if ENABLE(MODEL_ELEMENT)
Model = 1 << 8,
#endif
PDF = 1 << 9,
};
using DocumentClasses = OptionSet<DocumentClass>;
bool isHTMLDocument() const { return m_documentClasses.contains(DocumentClass::HTML); }
bool isXHTMLDocument() const { return m_documentClasses.contains(DocumentClass::XHTML); }
bool isXMLDocument() const { return m_documentClasses.contains(DocumentClass::XML); }
bool isImageDocument() const { return m_documentClasses.contains(DocumentClass::Image); }
bool isSVGDocument() const { return m_documentClasses.contains(DocumentClass::SVG); }
bool isPluginDocument() const { return m_documentClasses.contains(DocumentClass::Plugin); }
bool isMediaDocument() const { return m_documentClasses.contains(DocumentClass::Media); }
bool isTextDocument() const { return m_documentClasses.contains(DocumentClass::Text); }
#if ENABLE(MODEL_ELEMENT)
bool isModelDocument() const { return m_documentClasses.contains(DocumentClass::Model); }
#endif
bool isPDFDocument() const { return m_documentClasses.contains(DocumentClass::PDF); }
bool hasSVGRootNode() const;
virtual bool isFrameSet() const { return false; }
static ptrdiff_t documentClassesMemoryOffset() { return OBJECT_OFFSETOF(Document, m_documentClasses); }
static uint32_t isHTMLDocumentClassFlag() { return static_cast<uint32_t>(DocumentClass::HTML); }
bool isSrcdocDocument() const { return m_isSrcdocDocument; }
bool sawElementsInKnownNamespaces() const { return m_sawElementsInKnownNamespaces; }
Style::Resolver& userAgentShadowTreeStyleResolver();
bool isDirAttributeDirty() const { return m_isDirAttributeDirty; }
void setIsDirAttributeDirty() { m_isDirAttributeDirty = true; }
CSSFontSelector& fontSelector() { return m_fontSelector; }
const CSSFontSelector& fontSelector() const { return m_fontSelector; }
WEBCORE_EXPORT bool haveStylesheetsLoaded() const;
bool isIgnoringPendingStylesheets() const { return m_ignorePendingStylesheets; }
WEBCORE_EXPORT StyleSheetList& styleSheets();
Style::Scope& styleScope() { return *m_styleScope; }
const Style::Scope& styleScope() const { return *m_styleScope; }
ExtensionStyleSheets& extensionStyleSheets() { return *m_extensionStyleSheets; }
const ExtensionStyleSheets& extensionStyleSheets() const { return *m_extensionStyleSheets; }
const Style::CustomPropertyRegistry& customPropertyRegistry() const;
const CSSCounterStyleRegistry& counterStyleRegistry() const;
CSSCounterStyleRegistry& counterStyleRegistry();
bool gotoAnchorNeededAfterStylesheetsLoad() { return m_gotoAnchorNeededAfterStylesheetsLoad; }
void setGotoAnchorNeededAfterStylesheetsLoad(bool b) { m_gotoAnchorNeededAfterStylesheetsLoad = b; }
void updateElementsAffectedByMediaQueries();
void evaluateMediaQueriesAndReportChanges();
WEBCORE_EXPORT FormController& formController();
Vector<AtomString> formElementsState() const;
void setStateForNewFormElements(const Vector<AtomString>&);
inline LocalFrameView* view() const; // Defined in LocalFrame.h.
inline Page* page() const; // Defined in Page.h
const Settings& settings() const { return m_settings.get(); }
EditingBehavior editingBehavior() const;
Quirks& quirks() { return m_quirks; }
const Quirks& quirks() const { return m_quirks; }
float deviceScaleFactor() const;
WEBCORE_EXPORT bool useSystemAppearance() const;
WEBCORE_EXPORT bool useElevatedUserInterfaceLevel() const;
WEBCORE_EXPORT bool useDarkAppearance(const RenderStyle*) const;
OptionSet<StyleColorOptions> styleColorOptions(const RenderStyle*) const;
CompositeOperator compositeOperatorForBackgroundColor(const Color&, const RenderObject&) const;
WEBCORE_EXPORT Ref<Range> createRange();
// The last bool parameter is for ObjC bindings.
WEBCORE_EXPORT Ref<NodeIterator> createNodeIterator(Node& root, unsigned long whatToShow = 0xFFFFFFFF, RefPtr<NodeFilter>&& = nullptr, bool = false);
// The last bool parameter is for ObjC bindings.
WEBCORE_EXPORT Ref<TreeWalker> createTreeWalker(Node& root, unsigned long whatToShow = 0xFFFFFFFF, RefPtr<NodeFilter>&& = nullptr, bool = false);
// Special support for editing
WEBCORE_EXPORT Ref<CSSStyleDeclaration> createCSSStyleDeclaration();
Ref<Text> createEditingTextNode(String&&);
enum class ResolveStyleType : bool { Normal, Rebuild };
WEBCORE_EXPORT void resolveStyle(ResolveStyleType = ResolveStyleType::Normal);
WEBCORE_EXPORT bool updateStyleIfNeeded();
bool needsStyleRecalc() const;
unsigned lastStyleUpdateSizeForTesting() const { return m_lastStyleUpdateSizeForTesting; }
WEBCORE_EXPORT void updateLayout();
// updateLayoutIgnorePendingStylesheets() forces layout even if we are waiting for pending stylesheet loads,
// so calling this may cause a flash of unstyled content (FOUC).
enum class RunPostLayoutTasks : bool { Asynchronously, Synchronously };
WEBCORE_EXPORT void updateLayoutIgnorePendingStylesheets(RunPostLayoutTasks = RunPostLayoutTasks::Asynchronously);
std::unique_ptr<RenderStyle> styleForElementIgnoringPendingStylesheets(Element&, const RenderStyle* parentStyle, PseudoId = PseudoId::None);
// Returns true if page box (margin boxes and page borders) is visible.
WEBCORE_EXPORT bool isPageBoxVisible(int pageIndex);
// Returns the preferred page size and margins in pixels, assuming 96
// pixels per inch. pageSize, marginTop, marginRight, marginBottom,
// marginLeft must be initialized to the default values that are used if
// auto is specified.
WEBCORE_EXPORT void pageSizeAndMarginsInPixels(int pageIndex, IntSize& pageSize, int& marginTop, int& marginRight, int& marginBottom, int& marginLeft);
CachedResourceLoader& cachedResourceLoader() { return m_cachedResourceLoader; }
void didBecomeCurrentDocumentInFrame();
void destroyRenderTree();
WEBCORE_EXPORT void willBeRemovedFromFrame();
// Override ScriptExecutionContext methods to do additional work
WEBCORE_EXPORT bool shouldBypassMainWorldContentSecurityPolicy() const final;
void suspendActiveDOMObjects(ReasonForSuspension) final;
void resumeActiveDOMObjects(ReasonForSuspension) final;
void stopActiveDOMObjects() final;
const Settings::Values& settingsValues() const final { return settings().values(); }
void suspendDeviceMotionAndOrientationUpdates();
void resumeDeviceMotionAndOrientationUpdates();
void suspendFontLoading();
RenderView* renderView() const { return m_renderView.get(); }
const RenderStyle* initialContainingBlockStyle() const { return m_initialContainingBlockStyle.get(); } // This may end up differing from renderView()->style() due to adjustments.
bool renderTreeBeingDestroyed() const { return m_renderTreeBeingDestroyed; }
bool hasLivingRenderTree() const { return renderView() && !renderTreeBeingDestroyed(); }
void updateRenderTree(std::unique_ptr<const Style::Update> styleUpdate);
bool updateLayoutIfDimensionsOutOfDate(Element&, OptionSet<DimensionsCheck> = { DimensionsCheck::All });
inline AXObjectCache* existingAXObjectCache() const;
WEBCORE_EXPORT AXObjectCache* axObjectCache() const;
void clearAXObjectCache();
WEBCORE_EXPORT std::optional<PageIdentifier> pageID() const;
std::optional<FrameIdentifier> frameID() const;
// to get visually ordered hebrew and arabic pages right
void setVisuallyOrdered();
bool visuallyOrdered() const { return m_visuallyOrdered; }
WEBCORE_EXPORT DocumentLoader* loader() const;
WEBCORE_EXPORT ExceptionOr<RefPtr<WindowProxy>> openForBindings(LocalDOMWindow& activeWindow, LocalDOMWindow& firstDOMWindow, const String& url, const AtomString& name, const String& features);
WEBCORE_EXPORT ExceptionOr<Document&> openForBindings(Document* entryDocument, const String&, const String&);
// FIXME: We should rename this at some point and give back the name 'open' to the HTML specified ones.
WEBCORE_EXPORT ExceptionOr<void> open(Document* entryDocument = nullptr);
void implicitOpen();
WEBCORE_EXPORT ExceptionOr<void> closeForBindings();
// FIXME: We should rename this at some point and give back the name 'close' to the HTML specified one.
WEBCORE_EXPORT void close();
// In some situations (see the code), we ignore document.close().
// explicitClose() bypass these checks and actually tries to close the
// input stream.
void explicitClose();
// implicitClose() actually does the work of closing the input stream.
void implicitClose();
void cancelParsing();
ExceptionOr<void> write(Document* entryDocument, SegmentedString&&);
WEBCORE_EXPORT ExceptionOr<void> write(Document* entryDocument, FixedVector<String>&&);
WEBCORE_EXPORT ExceptionOr<void> writeln(Document* entryDocument, FixedVector<String>&&);
bool wellFormed() const { return m_wellFormed; }
const URL& url() const final { return m_url; }
void setURL(const URL&);
WEBCORE_EXPORT const URL& urlForBindings() const;
URL adjustedURL() const;
const URL& creationURL() const { return m_creationURL; }
// To understand how these concepts relate to one another, please see the
// comments surrounding their declaration.
const URL& baseURL() const { return m_baseURL; }
void setBaseURLOverride(const URL&);
const URL& baseURLOverride() const { return m_baseURLOverride; }
const URL& baseElementURL() const { return m_baseElementURL; }
const AtomString& baseTarget() const { return m_baseTarget; }
void processBaseElement();
URL baseURLForComplete(const URL& baseURLOverride) const;
WEBCORE_EXPORT URL completeURL(const String&, ForceUTF8 = ForceUTF8::No) const final;
URL completeURL(const String&, const URL& baseURLOverride, ForceUTF8 = ForceUTF8::No) const;
inline bool shouldMaskURLForBindings(const URL&) const;
inline const URL& maskedURLForBindingsIfNeeded(const URL&) const;
static StaticStringImpl& maskedURLStringForBindings();
static const URL& maskedURLForBindings();
WEBCORE_EXPORT String userAgent(const URL&) const final;
void disableEval(const String& errorMessage) final;
void disableWebAssembly(const String& errorMessage) final;
IDBClient::IDBConnectionProxy* idbConnectionProxy() final;
StorageConnection* storageConnection();
SocketProvider* socketProvider() final;
RefPtr<RTCDataChannelRemoteHandlerConnection> createRTCDataChannelRemoteHandlerConnection() final;
#if ENABLE(WEB_RTC)
RTCNetworkManager* rtcNetworkManager() { return m_rtcNetworkManager.get(); }
WEBCORE_EXPORT void setRTCNetworkManager(Ref<RTCNetworkManager>&&);
#endif
bool canNavigate(LocalFrame* targetFrame, const URL& destinationURL = URL());
bool usesStyleBasedEditability() const;
void setHasElementUsingStyleBasedEditability();
virtual Ref<DocumentParser> createParser();
DocumentParser* parser() const { return m_parser.get(); }
ScriptableDocumentParser* scriptableDocumentParser() const;
bool printing() const { return m_printing; }
void setPrinting(bool p) { m_printing = p; }
bool paginatedForScreen() const { return m_paginatedForScreen; }
void setPaginatedForScreen(bool p) { m_paginatedForScreen = p; }
bool paginated() const { return printing() || paginatedForScreen(); }
void setCompatibilityMode(DocumentCompatibilityMode);
void lockCompatibilityMode() { m_compatibilityModeLocked = true; }
static ptrdiff_t compatibilityModeMemoryOffset() { return OBJECT_OFFSETOF(Document, m_compatibilityMode); }
WEBCORE_EXPORT String compatMode() const;
bool inQuirksMode() const { return m_compatibilityMode == DocumentCompatibilityMode::QuirksMode; }
bool inLimitedQuirksMode() const { return m_compatibilityMode == DocumentCompatibilityMode::LimitedQuirksMode; }
bool inNoQuirksMode() const { return m_compatibilityMode == DocumentCompatibilityMode::NoQuirksMode; }
void setReadyState(ReadyState);
void setParsing(bool);
bool parsing() const { return m_bParsing; }
bool shouldScheduleLayout() const;
bool isLayoutPending() const;
#if !LOG_DISABLED
Seconds timeSinceDocumentCreation() const { return MonotonicTime::now() - m_documentCreationTime; };
#endif
const Color& themeColor();
void setTextColor(const Color& color) { m_textColor = color; }
const Color& textColor() const { return m_textColor; }
const Color& linkColor() const { return m_linkColor; }
const Color& visitedLinkColor() const { return m_visitedLinkColor; }
const Color& activeLinkColor() const { return m_activeLinkColor; }
void setLinkColor(const Color& c) { m_linkColor = c; }
void setVisitedLinkColor(const Color& c) { m_visitedLinkColor = c; }
void setActiveLinkColor(const Color& c) { m_activeLinkColor = c; }
void resetLinkColor();
void resetVisitedLinkColor();
void resetActiveLinkColor();
VisitedLinkState& visitedLinkState() const { return *m_visitedLinkState; }
MouseEventWithHitTestResults prepareMouseEvent(const HitTestRequest&, const LayoutPoint&, const PlatformMouseEvent&);
// Returns whether focus was blocked. A true value does not necessarily mean the element was focused.
// The element could have already been focused or may not be focusable (e.g. <input disabled>).
WEBCORE_EXPORT bool setFocusedElement(Element*);
WEBCORE_EXPORT bool setFocusedElement(Element*, const FocusOptions&);
Element* focusedElement() const { return m_focusedElement.get(); }
inline bool wasLastFocusByClick() const;
void setLatestFocusTrigger(FocusTrigger trigger) { m_latestFocusTrigger = trigger; }
UserActionElementSet& userActionElements() { return m_userActionElements; }
const UserActionElementSet& userActionElements() const { return m_userActionElements; }
void setFocusNavigationStartingNode(Node*);
Element* focusNavigationStartingNode(FocusDirection) const;
void didRejectSyncXHRDuringPageDismissal();
bool shouldIgnoreSyncXHRs() const;
enum class NodeRemoval : bool { Node, ChildrenOfNode };
void adjustFocusedNodeOnNodeRemoval(Node&, NodeRemoval = NodeRemoval::Node);
void adjustFocusNavigationNodeOnNodeRemoval(Node&, NodeRemoval = NodeRemoval::Node);
bool isAutofocusProcessed() const { return m_isAutofocusProcessed; }
void setAutofocusProcessed() { m_isAutofocusProcessed = true; }
void appendAutofocusCandidate(Element&);
void clearAutofocusCandidates() { m_autofocusCandidates.clear(); }
void flushAutofocusCandidates();
void hoveredElementDidDetach(Element&);
void elementInActiveChainDidDetach(Element&);
enum class CaptureChange : bool { No, Yes };
void updateHoverActiveState(const HitTestRequest&, Element*, CaptureChange = CaptureChange::No);
// Updates for :target (CSS3 selector).
void setCSSTarget(Element*);
inline Element* cssTarget() const; // Defined in ElementInlines.h.
WEBCORE_EXPORT void scheduleFullStyleRebuild();
void scheduleStyleRecalc();
void unscheduleStyleRecalc();
bool hasPendingStyleRecalc() const;
bool hasPendingFullStyleRebuild() const;
void registerNodeListForInvalidation(LiveNodeList&);
void unregisterNodeListForInvalidation(LiveNodeList&);
WEBCORE_EXPORT void registerCollection(HTMLCollection&);
WEBCORE_EXPORT void unregisterCollection(HTMLCollection&);
void collectionCachedIdNameMap(const HTMLCollection&);
void collectionWillClearIdNameMap(const HTMLCollection&);
bool shouldInvalidateNodeListAndCollectionCaches() const;
bool shouldInvalidateNodeListAndCollectionCachesForAttribute(const QualifiedName& attrName) const;
template <typename InvalidationFunction>
void invalidateNodeListAndCollectionCaches(InvalidationFunction);
void attachNodeIterator(NodeIterator&);
void detachNodeIterator(NodeIterator&);
void moveNodeIteratorsToNewDocument(Node&, Document&);
void attachRange(Range&);
void detachRange(Range&);
void updateRangesAfterChildrenChanged(ContainerNode&);
// nodeChildrenWillBeRemoved is used when removing all node children at once.
void nodeChildrenWillBeRemoved(ContainerNode&);
// nodeWillBeRemoved is only safe when removing one node at a time.
void nodeWillBeRemoved(Node&);
void parentlessNodeMovedToNewDocument(Node&);
enum class AcceptChildOperation : bool { Replace, InsertOrAdd };
bool canAcceptChild(const Node& newChild, const Node* refChild, AcceptChildOperation) const;
void textInserted(Node&, unsigned offset, unsigned length);
void textRemoved(Node&, unsigned offset, unsigned length);
void textNodesMerged(Text& oldNode, unsigned offset);
void textNodeSplit(Text& oldNode);
void createDOMWindow();
void takeDOMWindowFrom(Document&);
LocalDOMWindow* domWindow() const { return m_domWindow.get(); }
// In DOM Level 2, the Document's LocalDOMWindow is called the defaultView.
WEBCORE_EXPORT WindowProxy* windowProxy() const;
inline bool hasBrowsingContext() const; // Defined in DocumentInlines.h.
Document& contextDocument() const;
void setContextDocument(Document& document) { m_contextDocument = document; }
OptionSet<ParserContentPolicy> parserContentPolicy() const { return m_parserContentPolicy; }
void setParserContentPolicy(OptionSet<ParserContentPolicy> policy) { m_parserContentPolicy = policy; }
// Helper functions for forwarding LocalDOMWindow event related tasks to the LocalDOMWindow if it exists.
void setWindowAttributeEventListener(const AtomString& eventType, const QualifiedName& attributeName, const AtomString& value, DOMWrapperWorld&);
WEBCORE_EXPORT void dispatchWindowEvent(Event&, EventTarget* = nullptr);
void dispatchWindowLoadEvent();
WEBCORE_EXPORT ExceptionOr<Ref<Event>> createEvent(const String& eventType);
// keep track of what types of event listeners are registered, so we don't
// dispatch events unnecessarily
// FIXME: Consider using OptionSet.
enum class ListenerType : uint16_t {
DOMSubtreeModified = 1 << 0,
DOMNodeInserted = 1 << 1,
DOMNodeRemoved = 1 << 2,
DOMNodeRemovedFromDocument = 1 << 3,
DOMNodeInsertedIntoDocument = 1 << 4,
DOMCharacterDataModified = 1 << 5,
OverflowChanged = 1 << 6,
Scroll = 1 << 7,
ForceWillBegin = 1 << 8,
ForceChanged = 1 << 9,
ForceDown = 1 << 10,
ForceUp = 1 << 11,
FocusIn = 1 << 12,
FocusOut = 1 << 13,
CSSTransition = 1 << 14,
CSSAnimation = 1 << 15,
};
bool hasListenerType(ListenerType listenerType) const { return m_listenerTypes.contains(listenerType); }
bool hasAnyListenerOfType(OptionSet<ListenerType> listenerTypes) const { return m_listenerTypes.containsAny(listenerTypes); }
bool hasListenerTypeForEventType(PlatformEventType) const;
void addListenerTypeIfNeeded(const AtomString& eventType);
inline bool hasMutationObserversOfType(MutationObserverOptionType) const;
bool hasMutationObservers() const { return !m_mutationObserverTypes.isEmpty(); }
void addMutationObserverTypes(MutationObserverOptions types) { m_mutationObserverTypes.add(types); }
// Handles an HTTP header equivalent set by a meta tag using <meta http-equiv="..." content="...">. This is called
// when a meta tag is encountered during document parsing, and also when a script dynamically changes or adds a meta
// tag. This enables scripts to use meta tags to perform refreshes and set expiry dates in addition to them being
// specified in an HTML file.
void processMetaHttpEquiv(const String& equiv, const AtomString& content, bool isInDocumentHead);
#if PLATFORM(IOS_FAMILY)
void processFormatDetection(const String&);
// Called when <meta name="apple-mobile-web-app-orientations"> changes.
void processWebAppOrientations();
#endif
#if ENABLE(CONTENT_CHANGE_OBSERVER)
WEBCORE_EXPORT ContentChangeObserver& contentChangeObserver();
DOMTimerHoldingTank* domTimerHoldingTankIfExists() { return m_domTimerHoldingTank.get(); }
DOMTimerHoldingTank& domTimerHoldingTank();
#endif
void processViewport(const String& features, ViewportArguments::Type origin);
void processDisabledAdaptations(const String& adaptations);
void updateViewportArguments();
void processReferrerPolicy(const String& policy, ReferrerPolicySource);
void metaElementThemeColorChanged(HTMLMetaElement&);
#if ENABLE(DARK_MODE_CSS)
void processColorScheme(const String& colorScheme);
#endif
#if ENABLE(APPLICATION_MANIFEST)
void processApplicationManifest(const ApplicationManifest&);
#endif
// Returns the owning element in the parent document.
// Returns nullptr if this is the top level document.
WEBCORE_EXPORT HTMLFrameOwnerElement* ownerElement() const;
// Used by DOM bindings; no direction known.
const String& title() const { return m_title.string; }
WEBCORE_EXPORT void setTitle(String&&);
const StringWithDirection& titleWithDirection() const { return m_title; }
WEBCORE_EXPORT const AtomString& dir() const;
WEBCORE_EXPORT void setDir(const AtomString&);
void titleElementAdded(Element& titleElement);
void titleElementRemoved(Element& titleElement);
void titleElementTextChanged(Element& titleElement);
WEBCORE_EXPORT ExceptionOr<String> cookie();
WEBCORE_EXPORT ExceptionOr<void> setCookie(const String&);
WEBCORE_EXPORT String referrer();
String referrerForBindings();
WEBCORE_EXPORT String domain() const;
ExceptionOr<void> setDomain(const String& newDomain);
void overrideLastModified(const std::optional<WallTime>&);
WEBCORE_EXPORT String lastModified() const;
// The cookieURL is used to query the cookie database for this document's
// cookies. For example, if the cookie URL is http://example.com, we'll
// use the non-Secure cookies for example.com when computing
// document.cookie.
//
// Q: How is the cookieURL different from the document's URL?
// A: The two URLs are the same almost all the time. However, if one
// document inherits the security context of another document, it
// inherits its cookieURL but not its URL.
//
const URL& cookieURL() const { return m_cookieURL; }
void setCookieURL(const URL&);
// The firstPartyForCookies is used to compute whether this document
// appears in a "third-party" context for the purpose of third-party
// cookie blocking. The document is in a third-party context if the
// cookieURL and the firstPartyForCookies are from different hosts.
//
// Note: Some ports (including possibly Apple's) only consider the
// document in a third-party context if the cookieURL and the
// firstPartyForCookies have a different registry-controlled
// domain.
//
const URL& firstPartyForCookies() const { return m_firstPartyForCookies; }
void setFirstPartyForCookies(const URL& url) { m_firstPartyForCookies = url; }
bool isFullyActive() const;
// The full URL corresponding to the "site for cookies" in the Same-Site Cookies spec.,
// <https://tools.ietf.org/html/draft-ietf-httpbis-cookie-same-site-00>. It is either
// the URL of the top-level document or the null URL depending on whether the registrable
// domain of this document's URL matches the registrable domain of its parent's/opener's
// URL. For the top-level document, it is set to the document's URL.
const URL& siteForCookies() const { return m_siteForCookies; }
void setSiteForCookies(const URL& url) { m_siteForCookies = url; }
bool isSameSiteForCookies(const URL&) const;
// The following implements the rule from HTML 4 for what valid names are.
// To get this right for all the XML cases, we probably have to improve this or move it
// and make it sensitive to the type of document.
static bool isValidName(const String&);
// The following breaks a qualified name into a prefix and a local name.
// It also does a validity check, and returns an error if the qualified name is invalid.
static ExceptionOr<std::pair<AtomString, AtomString>> parseQualifiedName(const AtomString& qualifiedName);
static ExceptionOr<QualifiedName> parseQualifiedName(const AtomString& namespaceURI, const AtomString& qualifiedName);
// Checks to make sure prefix and namespace do not conflict (per DOM Core 3)
static bool hasValidNamespaceForElements(const QualifiedName&);
static bool hasValidNamespaceForAttributes(const QualifiedName&);
// This is the "HTML body element" as defined by CSSOM View spec, the first body child of the
// document element. See http://dev.w3.org/csswg/cssom-view/#the-html-body-element.
WEBCORE_EXPORT HTMLBodyElement* body() const;
// This is the "body element" as defined by HTML5, the first body or frameset child of the
// document element. See https://html.spec.whatwg.org/multipage/dom.html#the-body-element-2.
WEBCORE_EXPORT HTMLElement* bodyOrFrameset() const;
WEBCORE_EXPORT ExceptionOr<void> setBodyOrFrameset(RefPtr<HTMLElement>&&);
Location* location() const;
WEBCORE_EXPORT HTMLHeadElement* head();
DocumentMarkerController& markers() const { return *m_markers; }
WEBCORE_EXPORT ExceptionOr<bool> execCommand(const String& command, bool userInterface = false, const String& value = String());
WEBCORE_EXPORT ExceptionOr<bool> queryCommandEnabled(const String& command);
WEBCORE_EXPORT ExceptionOr<bool> queryCommandIndeterm(const String& command);
WEBCORE_EXPORT ExceptionOr<bool> queryCommandState(const String& command);
WEBCORE_EXPORT ExceptionOr<bool> queryCommandSupported(const String& command);
WEBCORE_EXPORT ExceptionOr<String> queryCommandValue(const String& command);
UndoManager& undoManager() const { return m_undoManager.get(); }
// designMode support
enum class DesignMode : bool { Off, On };
bool inDesignMode() const { return m_designMode == DesignMode::On; }
WEBCORE_EXPORT String designMode() const;
WEBCORE_EXPORT void setDesignMode(const String&);
Document* parentDocument() const;
WEBCORE_EXPORT Document& topDocument() const;
bool isTopDocument() const { return &topDocument() == this; }
ScriptRunner& scriptRunner() { return *m_scriptRunner; }
ScriptModuleLoader& moduleLoader() { return *m_moduleLoader; }
Element* currentScript() const { return !m_currentScriptStack.isEmpty() ? m_currentScriptStack.last().get() : nullptr; }
void pushCurrentScript(Element*);
void popCurrentScript();
bool shouldDeferAsynchronousScriptsUntilParsingFinishes() const;
bool supportsPaintTiming() const;
#if ENABLE(XSLT)
void scheduleToApplyXSLTransforms();
void applyPendingXSLTransformsNowIfScheduled();
RefPtr<Document> transformSourceDocument() { return m_transformSourceDocument; }
void setTransformSourceDocument(Document* document) { m_transformSourceDocument = document; }
void setTransformSource(std::unique_ptr<TransformSource>);
TransformSource* transformSource() const { return m_transformSource.get(); }
#endif
void incDOMTreeVersion() { m_domTreeVersion = ++s_globalTreeVersion; }
uint64_t domTreeVersion() const { return m_domTreeVersion; }
WEBCORE_EXPORT String originIdentifierForPasteboard() const;
// XPathEvaluator methods
WEBCORE_EXPORT ExceptionOr<Ref<XPathExpression>> createExpression(const String& expression, RefPtr<XPathNSResolver>&&);
WEBCORE_EXPORT Ref<XPathNSResolver> createNSResolver(Node& nodeResolver);
WEBCORE_EXPORT ExceptionOr<Ref<XPathResult>> evaluate(const String& expression, Node& contextNode, RefPtr<XPathNSResolver>&&, unsigned short type, XPathResult*);
static void createNSResolverForBindings(Node&) { } // Legacy.
bool hasNodesWithMissingStyle() const { return m_hasNodesWithMissingStyle; }
void setHasNodesWithMissingStyle() { m_hasNodesWithMissingStyle = true; }
// Extension for manipulating canvas drawing contexts for use in CSS
std::optional<RenderingContext> getCSSCanvasContext(const String& type, const String& name, int width, int height);
HTMLCanvasElement* getCSSCanvasElement(const String& name);
String nameForCSSCanvasElement(const HTMLCanvasElement&) const;
bool isDNSPrefetchEnabled() const { return m_isDNSPrefetchEnabled; }
void parseDNSPrefetchControlHeader(const String&);
WEBCORE_EXPORT void postTask(Task&&) final; // Executes the task on context's thread asynchronously.
WEBCORE_EXPORT EventLoopTaskGroup& eventLoop() final;
WindowEventLoop& windowEventLoop();
ScriptedAnimationController* scriptedAnimationController() { return m_scriptedAnimationController.get(); }
void suspendScriptedAnimationControllerCallbacks();
void resumeScriptedAnimationControllerCallbacks();
void serviceRequestAnimationFrameCallbacks();
void serviceRequestVideoFrameCallbacks();
void serviceCaretAnimation();
void windowScreenDidChange(PlatformDisplayID);
void finishedParsing();
enum BackForwardCacheState : uint8_t { NotInBackForwardCache, AboutToEnterBackForwardCache, InBackForwardCache };
BackForwardCacheState backForwardCacheState() const { return m_backForwardCacheState; }
void setBackForwardCacheState(BackForwardCacheState);
void registerForDocumentSuspensionCallbacks(Element&);
void unregisterForDocumentSuspensionCallbacks(Element&);
void documentWillBecomeInactive();
void suspend(ReasonForSuspension);
void resume(ReasonForSuspension);
#if ENABLE(VIDEO)
void registerMediaElement(HTMLMediaElement&);
void unregisterMediaElement(HTMLMediaElement&);
#endif
bool requiresUserGestureForAudioPlayback() const;
bool requiresUserGestureForVideoPlayback() const;
bool mediaDataLoadsAutomatically() const;
void privateBrowsingStateDidChange(PAL::SessionID);
void storageBlockingStateDidChange();
#if ENABLE(VIDEO)
void registerForCaptionPreferencesChangedCallbacks(HTMLMediaElement&);
void unregisterForCaptionPreferencesChangedCallbacks(HTMLMediaElement&);
void captionPreferencesChanged();
void setMediaElementShowingTextTrack(const HTMLMediaElement&);
void clearMediaElementShowingTextTrack();
void updateTextTrackRepresentationImageIfNeeded();
#endif
void registerForVisibilityStateChangedCallbacks(VisibilityChangeClient&);
void unregisterForVisibilityStateChangedCallbacks(VisibilityChangeClient&);
WEBCORE_EXPORT void setShouldCreateRenderers(bool);
bool shouldCreateRenderers();
void setDecoder(RefPtr<TextResourceDecoder>&&);
TextResourceDecoder* decoder() const { return m_decoder.get(); }
WEBCORE_EXPORT String displayStringModifiedByEncoding(const String&) const;
void scheduleDeferredAXObjectCacheUpdate();
WEBCORE_EXPORT void flushDeferredAXObjectCacheUpdate();
void updateAccessibilityObjectRegions();
void updateEventRegions();
void invalidateRenderingDependentRegions();
void invalidateEventRegionsForFrame(HTMLFrameOwnerElement&);
void invalidateEventListenerRegions();
void removeAllEventListeners() final;
const SVGDocumentExtensions* svgExtensions() { return m_svgExtensions.get(); }
WEBCORE_EXPORT SVGDocumentExtensions& accessSVGExtensions();
void initSecurityContext();
void initContentSecurityPolicy();
void inheritPolicyContainerFrom(const PolicyContainer&) final;
void updateURLForPushOrReplaceState(const URL&);
void statePopped(Ref<SerializedScriptValue>&&);
bool processingLoadEvent() const { return m_processingLoadEvent; }
bool loadEventFinished() const { return m_loadEventFinished; }
bool isContextThread() const final;
bool isSecureContext() const final;
bool isJSExecutionForbidden() const final { return false; }
void queueTaskToDispatchEvent(TaskSource, Ref<Event>&&);
void queueTaskToDispatchEventOnWindow(TaskSource, Ref<Event>&&);
void enqueueOverflowEvent(Ref<Event>&&);
void dispatchPageshowEvent(PageshowEventPersistence);
void dispatchPagehideEvent(PageshowEventPersistence);
WEBCORE_EXPORT void enqueueSecurityPolicyViolationEvent(SecurityPolicyViolationEventInit&&);
void enqueueHashchangeEvent(const String& oldURL, const String& newURL);
void dispatchPopstateEvent(RefPtr<SerializedScriptValue>&& stateObject);
WEBCORE_EXPORT void addMediaCanStartListener(MediaCanStartListener&);
WEBCORE_EXPORT void removeMediaCanStartListener(MediaCanStartListener&);
MediaCanStartListener* takeAnyMediaCanStartListener();
using DisplayChangedObserver = WTF::Observer<void(PlatformDisplayID)>;
void addDisplayChangedObserver(const DisplayChangedObserver&);
#if ENABLE(FULLSCREEN_API)
FullscreenManager& fullscreenManager() { return m_fullscreenManager; }
const FullscreenManager& fullscreenManager() const { return m_fullscreenManager; }
#endif
#if ENABLE(POINTER_LOCK)
WEBCORE_EXPORT void exitPointerLock();
#endif
std::optional<uint64_t> noiseInjectionHashSalt() const final;
NoiseInjectionPolicy noiseInjectionPolicy() const;
// Used to allow element that loads data without going through a FrameLoader to delay the 'load' event.
void incrementLoadEventDelayCount() { ++m_loadEventDelayCount; }
void decrementLoadEventDelayCount();
bool isDelayingLoadEvent() const { return m_loadEventDelayCount; }
void checkCompleted();
#if ENABLE(IOS_TOUCH_EVENTS)
#include <WebKitAdditions/DocumentIOS.h>
#endif
#if ENABLE(DEVICE_ORIENTATION) && PLATFORM(IOS_FAMILY)
DeviceMotionController& deviceMotionController() const;
DeviceOrientationController& deviceOrientationController() const;
WEBCORE_EXPORT void simulateDeviceOrientationChange(double alpha, double beta, double gamma);
#endif
#if ENABLE(DEVICE_ORIENTATION)
DeviceOrientationAndMotionAccessController& deviceOrientationAndMotionAccessController();
#endif
WEBCORE_EXPORT double monotonicTimestamp() const;
const DocumentEventTiming& eventTiming() const { return m_eventTiming; }
int requestAnimationFrame(Ref<RequestAnimationFrameCallback>&&);
void cancelAnimationFrame(int id);
int requestIdleCallback(Ref<IdleRequestCallback>&&, Seconds timeout);
void cancelIdleCallback(int id);
IdleCallbackController* idleCallbackController() { return m_idleCallbackController.get(); }
EventTarget* errorEventTarget() final;
void logExceptionToConsole(const String& errorMessage, const String& sourceURL, int lineNumber, int columnNumber, RefPtr<Inspector::ScriptCallStack>&&) final;
void initDNSPrefetch();
void didAddWheelEventHandler(Node&);
void didRemoveWheelEventHandler(Node&, EventHandlerRemoval = EventHandlerRemoval::One);
void didAddOrRemoveMouseEventHandler(Node&);
MonotonicTime lastHandledUserGestureTimestamp() const { return m_lastHandledUserGestureTimestamp; }
bool hasHadUserInteraction() const { return static_cast<bool>(m_lastHandledUserGestureTimestamp); }
void updateLastHandledUserGestureTimestamp(MonotonicTime);
bool processingUserGestureForMedia() const;
bool hasRecentUserInteractionForNavigationFromJS() const;
void userActivatedMediaFinishedPlaying() { m_userActivatedMediaFinishedPlayingTimestamp = MonotonicTime::now(); }
void setUserDidInteractWithPage(bool userDidInteractWithPage) { ASSERT(isTopDocument()); m_userDidInteractWithPage = userDidInteractWithPage; }
bool userDidInteractWithPage() const { ASSERT(isTopDocument()); return m_userDidInteractWithPage; }
// Used for testing. Count handlers in the main document, and one per frame which contains handlers.
WEBCORE_EXPORT unsigned wheelEventHandlerCount() const;
WEBCORE_EXPORT unsigned touchEventHandlerCount() const;
WEBCORE_EXPORT void startTrackingStyleRecalcs();
WEBCORE_EXPORT unsigned styleRecalcCount() const;
#if ENABLE(TOUCH_EVENTS)
bool hasTouchEventHandlers() const { return m_touchEventTargets.get() ? m_touchEventTargets->size() : false; }
bool touchEventTargetsContain(Node& node) const { return m_touchEventTargets ? m_touchEventTargets->contains(&node) : false; }
#else
bool hasTouchEventHandlers() const { return false; }
bool touchEventTargetsContain(Node&) const { return false; }
#endif
#if ENABLE(TOUCH_ACTION_REGIONS)
bool mayHaveElementsWithNonAutoTouchAction() const { return m_mayHaveElementsWithNonAutoTouchAction; }
void setMayHaveElementsWithNonAutoTouchAction() { m_mayHaveElementsWithNonAutoTouchAction = true; }
#endif
#if ENABLE(EDITABLE_REGION)
bool mayHaveEditableElements() const { return m_mayHaveEditableElements; }
void setMayHaveEditableElements() { m_mayHaveEditableElements = true; }
#endif
bool mayHaveRenderedSVGRootElements() const { return m_mayHaveRenderedSVGRootElements; }
void setMayHaveRenderedSVGRootElements() { m_mayHaveRenderedSVGRootElements = true; }
bool mayHaveRenderedSVGForeignObjects() const { return m_mayHaveRenderedSVGForeignObjects; }
void setMayHaveRenderedSVGForeignObjects() { m_mayHaveRenderedSVGForeignObjects = true; }
void didAddTouchEventHandler(Node&);
void didRemoveTouchEventHandler(Node&, EventHandlerRemoval = EventHandlerRemoval::One);
void didRemoveEventTargetNode(Node&);
const EventTargetSet* touchEventTargets() const
{
#if ENABLE(TOUCH_EVENTS)
return m_touchEventTargets.get();
#else
return nullptr;
#endif
}
bool hasWheelEventHandlers() const { return m_wheelEventTargets.get() ? m_wheelEventTargets->size() : false; }
const EventTargetSet* wheelEventTargets() const { return m_wheelEventTargets.get(); }
using RegionFixedPair = std::pair<Region, bool>;
RegionFixedPair absoluteEventRegionForNode(Node&);
RegionFixedPair absoluteRegionForEventTargets(const EventTargetSet*);
LayoutRect absoluteEventHandlerBounds(bool&) final;
bool visualUpdatesAllowed() const { return m_visualUpdatesAllowed; }
bool isInDocumentWrite() { return m_writeRecursionDepth > 0; }
void suspendScheduledTasks(ReasonForSuspension);
void resumeScheduledTasks(ReasonForSuspension);
void convertAbsoluteToClientQuads(Vector<FloatQuad>&, const RenderStyle&);
void convertAbsoluteToClientRects(Vector<FloatRect>&, const RenderStyle&);
void convertAbsoluteToClientRect(FloatRect&, const RenderStyle&);
bool hasActiveParser();
void incrementActiveParserCount() { ++m_activeParserCount; }
void decrementActiveParserCount();
std::unique_ptr<DocumentParserYieldToken> createParserYieldToken()
{
return makeUnique<DocumentParserYieldToken>(*this);
}
bool hasActiveParserYieldToken() const { return m_parserYieldTokenCount; }
DocumentSharedObjectPool* sharedObjectPool() { return m_sharedObjectPool.get(); }
void invalidateMatchedPropertiesCacheAndForceStyleRecalc();
void didRemoveAllPendingStylesheet();
bool inStyleRecalc() const { return m_inStyleRecalc; }
bool inRenderTreeUpdate() const { return m_inRenderTreeUpdate; }
bool isResolvingContainerQueries() const { return m_isResolvingContainerQueries; }
bool isResolvingContainerQueriesForSelfOrAncestor() const;
bool isResolvingTreeStyle() const { return m_isResolvingTreeStyle; }
void setIsResolvingTreeStyle(bool);
void updateTextRenderer(Text&, unsigned offsetOfReplacedText, unsigned lengthOfReplacedText);
void updateSVGRenderer(SVGElement&);
// Return a Locale for the default locale if the argument is null or empty.
Locale& getCachedLocale(const AtomString& locale = nullAtom());
const Document* templateDocument() const;
Document& ensureTemplateDocument();
void setTemplateDocumentHost(Document* templateDocumentHost) { m_templateDocumentHost = templateDocumentHost; }
Document* templateDocumentHost() { return m_templateDocumentHost.get(); }
bool isTemplateDocument() const { return !!m_templateDocumentHost; }
Ref<DocumentFragment> documentFragmentForInnerOuterHTML();
void didAssociateFormControl(Element&);
bool hasDisabledFieldsetElement() const { return m_disabledFieldsetElementsCount; }
void addDisabledFieldsetElement() { m_disabledFieldsetElementsCount++; }
void removeDisabledFieldsetElement() { ASSERT(m_disabledFieldsetElementsCount); m_disabledFieldsetElementsCount--; }
bool hasDataListElements() const { return m_dataListElementCount; }
void incrementDataListElementCount() { ++m_dataListElementCount; }
void decrementDataListElementCount() { ASSERT(m_dataListElementCount); --m_dataListElementCount; }
void getParserLocation(String& url, unsigned& line, unsigned& column) const;
WEBCORE_EXPORT void addConsoleMessage(std::unique_ptr<Inspector::ConsoleMessage>&&) final;
// The following addConsoleMessage function is deprecated.
// Callers should try to create the ConsoleMessage themselves.
WEBCORE_EXPORT void addConsoleMessage(MessageSource, MessageLevel, const String& message, unsigned long requestIdentifier = 0) final;
// The following addMessage function is deprecated.
// Callers should try to create the ConsoleMessage themselves.
void addMessage(MessageSource, MessageLevel, const String& message, const String& sourceURL, unsigned lineNumber, unsigned columnNumber, RefPtr<Inspector::ScriptCallStack>&&, JSC::JSGlobalObject* = nullptr, unsigned long requestIdentifier = 0) final;
SecurityOrigin& securityOrigin() const { return *SecurityContext::securityOrigin(); }
SecurityOrigin& topOrigin() const final { return topDocument().securityOrigin(); }
inline ClientOrigin clientOrigin() const;
inline bool isSameOriginAsTopDocument() const;
bool shouldForceNoOpenerBasedOnCOOP() const;
WEBCORE_EXPORT const CrossOriginOpenerPolicy& crossOriginOpenerPolicy() const final;
void willLoadScriptElement(const URL&);
void willLoadFrameElement(const URL&);
Ref<FontFaceSet> fonts();
void ensurePlugInsInjectedScript(DOMWrapperWorld&);
void setVisualUpdatesAllowedByClient(bool);
#if ENABLE(WEB_CRYPTO)
bool wrapCryptoKey(const Vector<uint8_t>& key, Vector<uint8_t>& wrappedKey) final;
bool unwrapCryptoKey(const Vector<uint8_t>& wrappedKey, Vector<uint8_t>& key) final;
#endif
void setHasStyleWithViewportUnits() { m_hasStyleWithViewportUnits = true; }
bool hasStyleWithViewportUnits() const { return m_hasStyleWithViewportUnits; }
void updateViewportUnitsOnResize();
WEBCORE_EXPORT void setNeedsDOMWindowResizeEvent();
void setNeedsVisualViewportResize();
void runResizeSteps();
void addPendingScrollEventTarget(ContainerNode&);
void setNeedsVisualViewportScrollEvent();
void runScrollSteps();
void invalidateScrollbars();
void scheduleToAdjustValidationMessagePosition(ValidationMessage&);
void adjustValidationMessagePositions();
WEBCORE_EXPORT void addAudioProducer(MediaProducer&);
WEBCORE_EXPORT void removeAudioProducer(MediaProducer&);
void setActiveSpeechRecognition(SpeechRecognition*);
MediaProducerMediaStateFlags mediaState() const { return m_mediaState; }
void noteUserInteractionWithMediaElement();
inline bool isCapturing() const;
WEBCORE_EXPORT void updateIsPlayingMedia();
void pageMutedStateDidChange();
#if ENABLE(WIRELESS_PLAYBACK_TARGET)
void addPlaybackTargetPickerClient(MediaPlaybackTargetClient&);
void removePlaybackTargetPickerClient(MediaPlaybackTargetClient&);
void showPlaybackTargetPicker(MediaPlaybackTargetClient&, bool, RouteSharingPolicy, const String&);
void playbackTargetPickerClientStateDidChange(MediaPlaybackTargetClient&, MediaProducerMediaStateFlags);
void setPlaybackTarget(PlaybackTargetClientContextIdentifier, Ref<MediaPlaybackTarget>&&);
void playbackTargetAvailabilityDidChange(PlaybackTargetClientContextIdentifier, bool);
void setShouldPlayToPlaybackTarget(PlaybackTargetClientContextIdentifier, bool);
void playbackTargetPickerWasDismissed(PlaybackTargetClientContextIdentifier);
#endif
ShouldOpenExternalURLsPolicy shouldOpenExternalURLsPolicyToPropagate() const;
bool shouldEnforceContentDispositionAttachmentSandbox() const;
void applyContentDispositionAttachmentSandbox();
void addDynamicMediaQueryDependentImage(HTMLImageElement&);
void removeDynamicMediaQueryDependentImage(HTMLImageElement&);
void scheduleRenderingUpdate(OptionSet<RenderingUpdateStep>);
void addIntersectionObserver(IntersectionObserver&);
void removeIntersectionObserver(IntersectionObserver&);
unsigned numberOfIntersectionObservers() const { return m_intersectionObservers.size(); }
void updateIntersectionObservations();
void scheduleInitialIntersectionObservationUpdate();
IntersectionObserverData& ensureIntersectionObserverData();
IntersectionObserverData* intersectionObserverDataIfExists() { return m_intersectionObserverData.get(); }
void addResizeObserver(ResizeObserver&);
void removeResizeObserver(ResizeObserver&);
unsigned numberOfResizeObservers() const { return m_resizeObservers.size(); }
bool hasResizeObservers();
// Return the minDepth of the active observations.
size_t gatherResizeObservations(size_t deeperThan);
void deliverResizeObservations();
bool hasSkippedResizeObservations() const;
void setHasSkippedResizeObservations(bool);
void updateResizeObservations(Page&);
size_t gatherResizeObservationsForContainIntrinsicSize();
void observeForContainIntrinsicSize(Element&);
void unobserveForContainIntrinsicSize(Element&);
void resetObservationSizeForContainIntrinsicSize(Element&);
#if ENABLE(MEDIA_STREAM)
void setHasCaptureMediaStreamTrack() { m_hasHadCaptureMediaStreamTrack = true; }
bool hasHadCaptureMediaStreamTrack() const { return m_hasHadCaptureMediaStreamTrack; }
void stopMediaCapture(MediaProducerMediaCaptureKind);
void mediaStreamCaptureStateChanged();
size_t activeMediaElementsWithMediaStreamCount() const { return m_activeMediaElementsWithMediaStreamCount; }
#endif
// FIXME: Find a better place for this functionality.
#if ENABLE(TELEPHONE_NUMBER_DETECTION)
// These functions provide a two-level setting:
// - A user-settable wantsTelephoneNumberParsing (at the Page / WebView level)
// - A read-only telephoneNumberParsingAllowed which is set by the
// document if it has the appropriate meta tag.
// - isTelephoneNumberParsingEnabled() == isTelephoneNumberParsingAllowed() && page()->settings()->isTelephoneNumberParsingEnabled()
WEBCORE_EXPORT bool isTelephoneNumberParsingAllowed() const;
WEBCORE_EXPORT bool isTelephoneNumberParsingEnabled() const;
#endif
using ContainerNode::setAttributeEventListener;
void setAttributeEventListener(const AtomString& eventType, const QualifiedName& attributeName, const AtomString& value, DOMWrapperWorld& isolatedWorld);
DOMSelection* getSelection();
void didInsertInDocumentShadowRoot(ShadowRoot&);
void didRemoveInDocumentShadowRoot(ShadowRoot&);
const WeakListHashSet<ShadowRoot, WeakPtrImplWithEventTargetData>& inDocumentShadowRoots() const { return m_inDocumentShadowRoots; }
void attachToCachedFrame(CachedFrameBase&);
void detachFromCachedFrame(CachedFrameBase&);
ConstantPropertyMap& constantProperties() const { return *m_constantPropertyMap; }
void orientationChanged(IntDegrees orientation);
OrientationNotifier& orientationNotifier() { return m_orientationNotifier; }
WEBCORE_EXPORT const AtomString& bgColor() const;
WEBCORE_EXPORT void setBgColor(const AtomString&);
WEBCORE_EXPORT const AtomString& fgColor() const;
WEBCORE_EXPORT void setFgColor(const AtomString&);
WEBCORE_EXPORT const AtomString& alinkColor() const;
WEBCORE_EXPORT void setAlinkColor(const AtomString&);
WEBCORE_EXPORT const AtomString& linkColorForBindings() const;
WEBCORE_EXPORT void setLinkColorForBindings(const AtomString&);
WEBCORE_EXPORT const AtomString& vlinkColor() const;
WEBCORE_EXPORT void setVlinkColor(const AtomString&);
// Per https://html.spec.whatwg.org/multipage/obsolete.html#dom-document-clear, this method does nothing.
void clear() { }
// Per https://html.spec.whatwg.org/multipage/obsolete.html#dom-document-captureevents, this method does nothing.
void captureEvents() { }
// Per https://html.spec.whatwg.org/multipage/obsolete.html#dom-document-releaseevents, this method does nothing.
void releaseEvents() { }
#if ENABLE(TEXT_AUTOSIZING)
TextAutoSizing& textAutoSizing();
#endif
Logger& logger();
WEBCORE_EXPORT static const Logger& sharedLogger();
WEBCORE_EXPORT void setConsoleMessageListener(RefPtr<StringCallback>&&); // For testing.
void updateAnimationsAndSendEvents();
WEBCORE_EXPORT DocumentTimeline& timeline();
DocumentTimeline* existingTimeline() const { return m_timeline.get(); }
Vector<RefPtr<WebAnimation>> getAnimations();
Vector<RefPtr<WebAnimation>> matchingAnimations(const Function<bool(Element&)>&);
DocumentTimelinesController* timelinesController() const { return m_timelinesController.get(); }
WEBCORE_EXPORT DocumentTimelinesController& ensureTimelinesController();
void keyframesRuleDidChange(const String& name);
#if ENABLE(THREADED_ANIMATION_RESOLUTION)
AcceleratedTimeline* existingAcceleratedTimeline() const { return m_acceleratedTimeline.get(); }
AcceleratedTimeline& acceleratedTimeline();
#endif
void addTopLayerElement(Element&);
void removeTopLayerElement(Element&);
const ListHashSet<Ref<Element>>& topLayerElements() const { return m_topLayerElements; }
bool hasTopLayerElement() const { return !m_topLayerElements.isEmpty(); }
const ListHashSet<Ref<HTMLElement>>& autoPopoverList() const { return m_autoPopoverList; }
HTMLDialogElement* activeModalDialog() const;
HTMLElement* topmostAutoPopover() const;
void hideAllPopoversUntil(HTMLElement*, FocusPreviousElement, FireEvents);
void handlePopoverLightDismiss(const PointerEvent&, Node&);
#if ENABLE(ATTACHMENT_ELEMENT)
void registerAttachmentIdentifier(const String&, const HTMLImageElement&);
void didInsertAttachmentElement(HTMLAttachmentElement&);
void didRemoveAttachmentElement(HTMLAttachmentElement&);
WEBCORE_EXPORT RefPtr<HTMLAttachmentElement> attachmentForIdentifier(const String&) const;
const HashMap<String, Ref<HTMLAttachmentElement>>& attachmentElementsByIdentifier() const { return m_attachmentIdentifierToElementMap; }
#endif
#if ENABLE(SERVICE_WORKER)
void setServiceWorkerConnection(SWClientConnection*);
void updateServiceWorkerClientData() final;
WEBCORE_EXPORT void navigateFromServiceWorker(const URL&, CompletionHandler<void(bool)>&&);
#endif
#if ENABLE(VIDEO)
void forEachMediaElement(const Function<void(HTMLMediaElement&)>&);
#endif
#if ENABLE(IOS_TOUCH_EVENTS)
bool handlingTouchEvent() const { return m_handlingTouchEvent; }
#endif
#if ENABLE(TRACKING_PREVENTION)
WEBCORE_EXPORT bool hasRequestedPageSpecificStorageAccessWithUserInteraction(const RegistrableDomain&);
WEBCORE_EXPORT void setHasRequestedPageSpecificStorageAccessWithUserInteraction(const RegistrableDomain&);
WEBCORE_EXPORT void wasLoadedWithDataTransferFromPrevalentResource();
void downgradeReferrerToRegistrableDomain();
#endif
void registerArticleElement(Element&);
void unregisterArticleElement(Element&);
void updateMainArticleElementAfterLayout();
bool hasMainArticleElement() const { return !!m_mainArticleElement; }
const FixedVector<CSSPropertyID>& exposedComputedCSSPropertyIDs();
#if ENABLE(CSS_PAINTING_API)
PaintWorklet& ensurePaintWorklet();
PaintWorkletGlobalScope* paintWorkletGlobalScopeForName(const String& name);
void setPaintWorkletGlobalScopeForName(const String& name, Ref<PaintWorkletGlobalScope>&&);
#endif
WEBCORE_EXPORT bool isRunningUserScripts() const;
WEBCORE_EXPORT void setAsRunningUserScripts();
void frameWasDisconnectedFromOwner();
WEBCORE_EXPORT bool hitTest(const HitTestRequest&, HitTestResult&);
bool hitTest(const HitTestRequest&, const HitTestLocation&, HitTestResult&);
#if ASSERT_ENABLED
bool inHitTesting() const { return m_inHitTesting; }
#endif
MessagePortChannelProvider& messagePortChannelProvider();
#if USE(SYSTEM_PREVIEW)
WEBCORE_EXPORT void dispatchSystemPreviewActionEvent(const SystemPreviewInfo&, const String& message);
#endif
#if ENABLE(PICTURE_IN_PICTURE_API)
HTMLVideoElement* pictureInPictureElement() const;
void setPictureInPictureElement(HTMLVideoElement*);
#endif
WEBCORE_EXPORT TextManipulationController& textManipulationController();
TextManipulationController* textManipulationControllerIfExists() { return m_textManipulationController.get(); }
bool hasHighlight() const;
HighlightRegister* highlightRegisterIfExists() { return m_highlightRegister.get(); }
HighlightRegister& highlightRegister();
void updateHighlightPositions();
HighlightRegister* fragmentHighlightRegisterIfExists() { return m_fragmentHighlightRegister.get(); }
HighlightRegister& fragmentHighlightRegister();
#if ENABLE(APP_HIGHLIGHTS)
HighlightRegister* appHighlightRegisterIfExists() { return m_appHighlightRegister.get(); }
WEBCORE_EXPORT HighlightRegister& appHighlightRegister();
WEBCORE_EXPORT AppHighlightStorage& appHighlightStorage();
AppHighlightStorage* appHighlightStorageIfExists() const { return m_appHighlightStorage.get(); };
#endif
bool allowsContentJavaScript() const;
LazyLoadImageObserver& lazyLoadImageObserver();
ContentVisibilityDocumentState& contentVisibilityDocumentState();
void setHasVisuallyNonEmptyCustomContent() { m_hasVisuallyNonEmptyCustomContent = true; }
bool hasVisuallyNonEmptyCustomContent() const { return m_hasVisuallyNonEmptyCustomContent; }
void enqueuePaintTimingEntryIfNeeded();
Editor& editor() { return m_editor; }
const Editor& editor() const { return m_editor; }
FrameSelection& selection() { return m_selection; }
const FrameSelection& selection() const { return m_selection; }
void setFragmentDirective(const String& fragmentDirective) { m_fragmentDirective = fragmentDirective; }
const String& fragmentDirective() const { return m_fragmentDirective; }
void prepareCanvasesForDisplayIfNeeded();
void clearCanvasPreparation(HTMLCanvasElement&);
void canvasChanged(CanvasBase&, const std::optional<FloatRect>&) final;
void canvasResized(CanvasBase&) final { };
void canvasDestroyed(CanvasBase&) final;
bool contains(const Node& node) const { return this == &node.treeScope() && node.isConnected(); }
bool contains(const Node* node) const { return node && contains(*node); }
WEBCORE_EXPORT JSC::VM& vm() final;
String debugDescription() const;
URL fallbackBaseURL() const;
void createNewIdentifier();
WEBCORE_EXPORT bool hasElementWithPendingUserAgentShadowTreeUpdate(Element&) const;
void addElementWithPendingUserAgentShadowTreeUpdate(Element&);
WEBCORE_EXPORT void removeElementWithPendingUserAgentShadowTreeUpdate(Element&);
std::optional<PAL::SessionID> sessionID() const final;
ReportingScope& reportingScope() const { return m_reportingScope.get(); }
WEBCORE_EXPORT String endpointURIForToken(const String&) const final;
bool hasSleepDisabler() const { return !!m_sleepDisabler; }
void notifyReportObservers(Ref<Report>&&) final;
void sendReportToEndpoints(const URL& baseURL, const Vector<String>& endpointURIs, const Vector<String>& endpointTokens, Ref<FormData>&& report, ViolationReportType) final;
String httpUserAgent() const final;
#if ENABLE(DOM_AUDIO_SESSION)
void setAudioSessionType(DOMAudioSessionType type) { m_audioSessionType = type; }
DOMAudioSessionType audioSessionType() const { return m_audioSessionType; }
#endif
virtual void didChangeViewSize() { }
bool isNavigationBlockedByThirdPartyIFrameRedirectBlocking(LocalFrame& targetFrame, const URL& destinationURL);
void updateRelevancyOfContentVisibilityElements();
void scheduleContentRelevancyUpdate(ContentRelevancyStatus);
protected:
enum class ConstructionFlag : uint8_t {
Synthesized = 1 << 0,
NonRenderedPlaceholder = 1 << 1
};
WEBCORE_EXPORT Document(LocalFrame*, const Settings&, const URL&, DocumentClasses = { }, OptionSet<ConstructionFlag> = { }, ScriptExecutionContextIdentifier = { });
void clearXMLVersion() { m_xmlVersion = String(); }
virtual Ref<Document> cloneDocumentWithoutChildren() const;
private:
friend class DocumentParserYieldToken;
friend class Node;
friend class ThrowOnDynamicMarkupInsertionCountIncrementer;
friend class IgnoreOpensDuringUnloadCountIncrementer;
friend class IgnoreDestructiveWriteCountIncrementer;
void updateTitleElement(Element& changingTitleElement);
void willDetachPage() final;
void frameDestroyed() final;
void commonTeardown();
RenderObject* renderer() const = delete;
void setRenderer(RenderObject*) = delete;
void createRenderTree();
void detachParser();
DocumentEventTiming* documentEventTimingFromNavigationTiming();
// ScriptExecutionContext
CSSFontSelector* cssFontSelector() final { return m_fontSelector.ptr(); }
std::unique_ptr<FontLoadRequest> fontLoadRequest(const String&, bool, bool, LoadedFromOpaqueSource) final;
void beginLoadingFontSoon(FontLoadRequest&) final;
// FontSelectorClient
void fontsNeedUpdate(FontSelector&) final;
bool isDocument() const final { return true; }
void childrenChanged(const ChildChange&) final;
String nodeName() const final;
NodeType nodeType() const final;
bool childTypeAllowed(NodeType) const final;
Ref<Node> cloneNodeInternal(Document&, CloningOperation) final;
void cloneDataFromDocument(const Document&);
void refScriptExecutionContext() final { ref(); }
void derefScriptExecutionContext() final { deref(); }
Seconds minimumDOMTimerInterval() const final;
Seconds domTimerAlignmentInterval(bool hasReachedMaxNestingLevel) const final;
void updateTitleFromTitleElement();
void updateTitle(const StringWithDirection&);
void updateBaseURL();
WeakPtr<HTMLMetaElement, WeakPtrImplWithEventTargetData> determineActiveThemeColorMetaElement();
void themeColorChanged();
void invalidateAccessKeyCacheSlowCase();
void buildAccessKeyCache();
void intersectionObserversInitialUpdateTimerFired();
void loadEventDelayTimerFired();
void pendingTasksTimerFired();
bool isCookieAverse() const;
void detachFromFrame();
template<CollectionType> Ref<HTMLCollection> ensureCachedCollection();
void dispatchDisabledAdaptationsDidChangeForMainFrame();
void setVisualUpdatesAllowed(ReadyState);
void setVisualUpdatesAllowed(bool);
void visualUpdatesSuppressionTimerFired();
void addListenerType(ListenerType listenerType) { m_listenerTypes.add(listenerType); }
void didAssociateFormControlsTimerFired();
void wheelEventHandlersChanged(Node* = nullptr);
HttpEquivPolicy httpEquivPolicy() const;
AXObjectCache* existingAXObjectCacheSlow() const;
bool shouldMaskURLForBindingsInternal(const URL&) const;
// DOM Cookies caching.
const String& cachedDOMCookies() const { return m_cachedDOMCookies; }
void setCachedDOMCookies(const String&);
bool isDOMCookieCacheValid() const { return m_cookieCacheExpiryTimer.isActive(); }
void invalidateDOMCookieCache();
void didLoadResourceSynchronously(const URL&) final;
bool canNavigateInternal(LocalFrame& targetFrame);
#if USE(QUICK_LOOK)
bool shouldEnforceQuickLookSandbox() const;
void applyQuickLookSandbox();
#endif
bool shouldEnforceHTTP09Sandbox() const;
void platformSuspendOrStopActiveDOMObjects();
void collectRangeDataFromRegister(Vector<WeakPtr<HighlightRangeData>>&, const HighlightRegister&);
bool isBodyPotentiallyScrollable(HTMLBodyElement&);
void didLogMessage(const WTFLogChannel&, WTFLogLevel, Vector<JSONLogValue>&&) final;
static void configureSharedLogger();
void addToDocumentsMap();
void removeFromDocumentsMap();
Style::Update& ensurePendingRenderTreeUpdate();
NotificationClient* notificationClient() final;
void updateSleepDisablerIfNeeded();
RefPtr<ResizeObserver> ensureResizeObserverForContainIntrinsicSize();
void parentOrShadowHostNode() const = delete; // Call parentNode() instead.
bool isObservingContentVisibilityTargets() const;
const Ref<const Settings> m_settings;
UniqueRef<Quirks> m_quirks;
RefPtr<LocalDOMWindow> m_domWindow;
WeakPtr<Document, WeakPtrImplWithEventTargetData> m_contextDocument;
OptionSet<ParserContentPolicy> m_parserContentPolicy;
Ref<CachedResourceLoader> m_cachedResourceLoader;
RefPtr<DocumentParser> m_parser;
// Document URLs.
URLKeepingBlobAlive m_url; // Document.URL: The URL from which this document was retrieved.
URL m_creationURL; // https://html.spec.whatwg.org/multipage/webappapis.html#concept-environment-creation-url.
URL m_baseURL; // Node.baseURI: The URL to use when resolving relative URLs.
URL m_baseURLOverride; // An alternative base URL that takes precedence over m_baseURL (but not m_baseElementURL).
URL m_baseElementURL; // The URL set by the <base> element.
URL m_cookieURL; // The URL to use for cookie access.
URL m_firstPartyForCookies; // The policy URL for third-party cookie blocking.
URL m_siteForCookies; // The policy URL for Same-Site cookies.
URL m_adjustedURL; // The URL to return for bindings after a cross-site navigation when advanced privacy protections are enabled.
// Document.documentURI:
// Although URL-like, Document.documentURI can actually be set to any
// string by content. Document.documentURI affects m_baseURL unless the
// document contains a <base> element, in which case the <base> element
// takes precedence.
//
// This property is read-only from JavaScript, but writable from Objective C.
String m_documentURI;
AtomString m_baseTarget;
// MIME type of the document in case it was cloned or created by XHR.
String m_overriddenMIMEType;
std::unique_ptr<DOMImplementation> m_implementation;
RefPtr<Node> m_focusNavigationStartingNode;
Deque<WeakPtr<Element, WeakPtrImplWithEventTargetData>> m_autofocusCandidates;
RefPtr<Element> m_focusedElement;
RefPtr<Element> m_hoveredElement;
RefPtr<Element> m_activeElement;
RefPtr<Element> m_documentElement;
UserActionElementSet m_userActionElements;
uint64_t m_domTreeVersion;
static uint64_t s_globalTreeVersion;
mutable String m_uniqueIdentifier;
WeakHashSet<NodeIterator> m_nodeIterators;
WeakHashSet<Range> m_ranges;
std::unique_ptr<Style::Scope> m_styleScope;
std::unique_ptr<ExtensionStyleSheets> m_extensionStyleSheets;
RefPtr<StyleSheetList> m_styleSheetList;
std::unique_ptr<FormController> m_formController;
Color m_cachedThemeColor;
std::optional<Vector<WeakPtr<HTMLMetaElement, WeakPtrImplWithEventTargetData>>> m_metaThemeColorElements;
WeakPtr<HTMLMetaElement, WeakPtrImplWithEventTargetData> m_activeThemeColorMetaElement;
Color m_applicationManifestThemeColor;
Color m_textColor { Color::black };
Color m_linkColor;
Color m_visitedLinkColor;
Color m_activeLinkColor;
const std::unique_ptr<VisitedLinkState> m_visitedLinkState;
StringWithDirection m_title;
StringWithDirection m_rawTitle;
RefPtr<Element> m_titleElement;
std::unique_ptr<AXObjectCache> m_axObjectCache;
const std::unique_ptr<DocumentMarkerController> m_markers;
Timer m_styleRecalcTimer;
std::unique_ptr<Style::Update> m_pendingRenderTreeUpdate;
WeakPtr<Element, WeakPtrImplWithEventTargetData> m_cssTarget;
std::unique_ptr<LazyLoadImageObserver> m_lazyLoadImageObserver;
std::unique_ptr<ContentVisibilityDocumentState> m_contentVisibilityDocumentState;
#if !LOG_DISABLED
MonotonicTime m_documentCreationTime;
#endif
std::unique_ptr<ScriptRunner> m_scriptRunner;
std::unique_ptr<ScriptModuleLoader> m_moduleLoader;
Vector<RefPtr<Element>> m_currentScriptStack;
#if ENABLE(XSLT)
void applyPendingXSLTransformsTimerFired();
std::unique_ptr<TransformSource> m_transformSource;
RefPtr<Document> m_transformSourceDocument;
Timer m_applyPendingXSLTransformsTimer;
#endif
String m_xmlEncoding;
String m_xmlVersion;
AtomString m_contentLanguage;
AtomString m_documentElementLanguage;
WeakHashSet<Element, WeakPtrImplWithEventTargetData> m_elementsWithLangAttrMatchingDocumentElement;
RefPtr<TextResourceDecoder> m_decoder;
HashSet<LiveNodeList*> m_listsInvalidatedAtDocument;
HashSet<HTMLCollection*> m_collectionsInvalidatedAtDocument;
unsigned m_nodeListAndCollectionCounts[numNodeListInvalidationTypes];
RefPtr<XPathEvaluator> m_xpathEvaluator;
std::unique_ptr<SVGDocumentExtensions> m_svgExtensions;
// Collection of canvas objects that need to do work after they've
// rendered but before compositing, for the next frame. The set is
// cleared after they've been called.
WeakHashSet<HTMLCanvasElement, WeakPtrImplWithEventTargetData> m_canvasesNeedingDisplayPreparation;
HashMap<String, RefPtr<HTMLCanvasElement>> m_cssCanvasElements;
WeakHashSet<Element, WeakPtrImplWithEventTargetData> m_documentSuspensionCallbackElements;
#if ENABLE(VIDEO)
WeakHashSet<HTMLMediaElement, WeakPtrImplWithEventTargetData> m_mediaElements;
#endif
#if ENABLE(VIDEO)
WeakHashSet<HTMLMediaElement, WeakPtrImplWithEventTargetData> m_captionPreferencesChangedElements;
WeakPtr<HTMLMediaElement, WeakPtrImplWithEventTargetData> m_mediaElementShowingTextTrack;
#endif
WeakPtr<Element, WeakPtrImplWithEventTargetData> m_mainArticleElement;
WeakHashSet<Element, WeakPtrImplWithEventTargetData> m_articleElements;
WeakHashSet<VisibilityChangeClient> m_visibilityStateCallbackClients;
std::unique_ptr<HashMap<String, WeakPtr<Element, WeakPtrImplWithEventTargetData>, ASCIICaseInsensitiveHash>> m_accessKeyCache;
std::unique_ptr<ConstantPropertyMap> m_constantPropertyMap;
RenderPtr<RenderView> m_renderView;
std::unique_ptr<RenderStyle> m_initialContainingBlockStyle;
WeakHashSet<MediaCanStartListener> m_mediaCanStartListeners;
WeakHashSet<DisplayChangedObserver> m_displayChangedObservers;
#if ENABLE(FULLSCREEN_API)
UniqueRef<FullscreenManager> m_fullscreenManager;
#endif
WeakHashSet<HTMLImageElement, WeakPtrImplWithEventTargetData> m_dynamicMediaQueryDependentImages;
Vector<WeakPtr<IntersectionObserver>> m_intersectionObservers;
Timer m_intersectionObserversInitialUpdateTimer;
// This is only non-null when this document is an explicit root.
std::unique_ptr<IntersectionObserverData> m_intersectionObserverData;
Vector<WeakPtr<ResizeObserver>> m_resizeObservers;
Timer m_loadEventDelayTimer;
ViewportArguments m_viewportArguments;
DocumentEventTiming m_eventTiming;
RefPtr<MediaQueryMatcher> m_mediaQueryMatcher;
#if ENABLE(TOUCH_EVENTS)
std::unique_ptr<EventTargetSet> m_touchEventTargets;
#endif
std::unique_ptr<EventTargetSet> m_wheelEventTargets;
MonotonicTime m_lastHandledUserGestureTimestamp;
MonotonicTime m_userActivatedMediaFinishedPlayingTimestamp;
void clearScriptedAnimationController();
RefPtr<ScriptedAnimationController> m_scriptedAnimationController;
std::unique_ptr<IdleCallbackController> m_idleCallbackController;
#if ENABLE(DEVICE_ORIENTATION) && PLATFORM(IOS_FAMILY)
std::unique_ptr<DeviceMotionClient> m_deviceMotionClient;
std::unique_ptr<DeviceMotionController> m_deviceMotionController;
std::unique_ptr<DeviceOrientationClient> m_deviceOrientationClient;
std::unique_ptr<DeviceOrientationController> m_deviceOrientationController;
#endif
#if ENABLE(DEVICE_ORIENTATION)
std::unique_ptr<DeviceOrientationAndMotionAccessController> m_deviceOrientationAndMotionAccessController;
#endif
Timer m_pendingTasksTimer;
Vector<Task> m_pendingTasks;
#if ENABLE(TEXT_AUTOSIZING)
std::unique_ptr<TextAutoSizing> m_textAutoSizing;
#endif
RefPtr<HighlightRegister> m_highlightRegister;
RefPtr<HighlightRegister> m_fragmentHighlightRegister;
#if ENABLE(APP_HIGHLIGHTS)
RefPtr<HighlightRegister> m_appHighlightRegister;
std::unique_ptr<AppHighlightStorage> m_appHighlightStorage;
#endif
Timer m_visualUpdatesSuppressionTimer;
void clearSharedObjectPool();
Timer m_sharedObjectPoolClearTimer;
std::unique_ptr<DocumentSharedObjectPool> m_sharedObjectPool;
using LocaleIdentifierToLocaleMap = HashMap<AtomString, std::unique_ptr<Locale>>;
LocaleIdentifierToLocaleMap m_localeCache;
RefPtr<Document> m_templateDocument;
WeakPtr<Document, WeakPtrImplWithEventTargetData> m_templateDocumentHost; // Manually managed weakref (backpointer from m_templateDocument).
RefPtr<DocumentFragment> m_documentFragmentForInnerOuterHTML;
Ref<CSSFontSelector> m_fontSelector;
UniqueRef<DocumentFontLoader> m_fontLoader;
WeakHashSet<MediaProducer> m_audioProducers;
WeakPtr<SpeechRecognition> m_activeSpeechRecognition;
WeakListHashSet<ShadowRoot, WeakPtrImplWithEventTargetData> m_inDocumentShadowRoots;
#if ENABLE(WIRELESS_PLAYBACK_TARGET)
using TargetIdToClientMap = HashMap<PlaybackTargetClientContextIdentifier, WebCore::MediaPlaybackTargetClient*>;
TargetIdToClientMap m_idToClientMap;
using TargetClientToIdMap = HashMap<WebCore::MediaPlaybackTargetClient*, PlaybackTargetClientContextIdentifier>;
TargetClientToIdMap m_clientToIDMap;
#endif
RefPtr<IDBClient::IDBConnectionProxy> m_idbConnectionProxy;
#if ENABLE(ATTACHMENT_ELEMENT)
HashMap<String, Ref<HTMLAttachmentElement>> m_attachmentIdentifierToElementMap;
#endif
Timer m_didAssociateFormControlsTimer;
Timer m_cookieCacheExpiryTimer;
RefPtr<SocketProvider> m_socketProvider;
String m_cachedDOMCookies;
Markable<WallTime> m_overrideLastModified;
WeakHashSet<Element, WeakPtrImplWithEventTargetData> m_associatedFormControls;
OrientationNotifier m_orientationNotifier;
mutable RefPtr<Logger> m_logger;
RefPtr<StringCallback> m_consoleMessageListener;
RefPtr<DocumentTimeline> m_timeline;
std::unique_ptr<DocumentTimelinesController> m_timelinesController;
RefPtr<WindowEventLoop> m_eventLoop;
std::unique_ptr<EventLoopTaskGroup> m_documentTaskGroup;
#if ENABLE(SERVICE_WORKER)
RefPtr<SWClientConnection> m_serviceWorkerConnection;
#endif
#if ENABLE(TRACKING_PREVENTION)
RegistrableDomain m_registrableDomainRequestedPageSpecificStorageAccessWithUserInteraction { };
String m_referrerOverride;
#endif
std::optional<FixedVector<CSSPropertyID>> m_exposedComputedCSSPropertyIDs;
#if ENABLE(CSS_PAINTING_API)
RefPtr<PaintWorklet> m_paintWorklet;
HashMap<String, Ref<PaintWorkletGlobalScope>> m_paintWorkletGlobalScopes;
#endif
#if ENABLE(CONTENT_CHANGE_OBSERVER)
std::unique_ptr<ContentChangeObserver> m_contentChangeObserver;
std::unique_ptr<DOMTimerHoldingTank> m_domTimerHoldingTank;
#endif
#if ENABLE(PICTURE_IN_PICTURE_API)
WeakPtr<HTMLVideoElement, WeakPtrImplWithEventTargetData> m_pictureInPictureElement;
#endif
std::unique_ptr<TextManipulationController> m_textManipulationController;
Ref<UndoManager> m_undoManager;
UniqueRef<Editor> m_editor;
UniqueRef<FrameSelection> m_selection;
String m_fragmentDirective;
ListHashSet<Ref<Element>> m_topLayerElements;
ListHashSet<Ref<HTMLElement>> m_autoPopoverList;
WeakPtr<HTMLElement, WeakPtrImplWithEventTargetData> m_popoverPointerDownTarget;
#if ENABLE(WEB_RTC)
RefPtr<RTCNetworkManager> m_rtcNetworkManager;
#endif
Vector<Function<void()>> m_whenIsVisibleHandlers;
WeakHashSet<Element, WeakPtrImplWithEventTargetData> m_elementsWithPendingUserAgentShadowTreeUpdates;
Ref<ReportingScope> m_reportingScope;
std::unique_ptr<WakeLockManager> m_wakeLockManager;
std::unique_ptr<SleepDisabler> m_sleepDisabler;
#if ENABLE(MEDIA_STREAM)
String m_idHashSalt;
size_t m_activeMediaElementsWithMediaStreamCount { 0 };
#endif
struct PendingScrollEventTargetList;
std::unique_ptr<PendingScrollEventTargetList> m_pendingScrollEventTargetList;
WeakHashSet<ValidationMessage> m_validationMessagesToPosition;
MediaProducerMediaStateFlags m_mediaState;
unsigned m_writeRecursionDepth { 0 };
unsigned m_numberOfRejectedSyncXHRs { 0 };
unsigned m_parserYieldTokenCount { 0 };
unsigned m_disabledFieldsetElementsCount { 0 };
unsigned m_dataListElementCount { 0 };
OptionSet<ListenerType> m_listenerTypes;
unsigned m_referencingNodeCount { 0 };
int m_loadEventDelayCount { 0 };
unsigned m_lastStyleUpdateSizeForTesting { 0 };
// https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#throw-on-dynamic-markup-insertion-counter
unsigned m_throwOnDynamicMarkupInsertionCount { 0 };
// https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#ignore-opens-during-unload-counter
unsigned m_ignoreOpensDuringUnloadCount { 0 };
// https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#ignore-destructive-writes-counter
unsigned m_ignoreDestructiveWriteCount { 0 };
unsigned m_activeParserCount { 0 };
unsigned m_styleRecalcCount { 0 };
enum class PageStatus : uint8_t { None, Shown, Hidden };
PageStatus m_lastPageStatus { PageStatus::None };
DocumentClasses m_documentClasses;
TextDirection m_documentElementTextDirection;
DesignMode m_designMode { DesignMode::Off };
BackForwardCacheState m_backForwardCacheState { NotInBackForwardCache };
ReadyState m_readyState { ReadyState::Complete };
MutationObserverOptions m_mutationObserverTypes;
OptionSet<DisabledAdaptations> m_disabledAdaptations;
FocusTrigger m_latestFocusTrigger { };
#if ENABLE(DOM_AUDIO_SESSION)
DOMAudioSessionType m_audioSessionType { };
#endif
OptionSet<ContentRelevancyStatus> m_contentRelevancyStatusUpdate;
StandaloneStatus m_xmlStandalone { StandaloneStatus::Unspecified };
bool m_hasXMLDeclaration { false };
#if ENABLE(DARK_MODE_CSS)
OptionSet<ColorScheme> m_colorScheme;
bool m_allowsColorSchemeTransformations { true };
#endif
bool m_activeParserWasAborted { false };
bool m_writeRecursionIsTooDeep { false };
bool m_wellFormed { false };
bool m_createRenderers { true };
bool m_hasNodesWithMissingStyle { false };
// But sometimes you need to ignore pending stylesheet count to
// force an immediate layout when requested by JS.
bool m_ignorePendingStylesheets { false };
bool m_hasElementUsingStyleBasedEditability { false };
bool m_focusNavigationStartingNodeIsRemoved { false };
bool m_printing { false };
bool m_paginatedForScreen { false };
DocumentCompatibilityMode m_compatibilityMode { DocumentCompatibilityMode::NoQuirksMode };
bool m_compatibilityModeLocked { false }; // This is cheaper than making setCompatibilityMode virtual.
// FIXME: Merge these 2 variables into an enum. Also, FrameLoader::m_didCallImplicitClose
// is almost a duplication of this data, so that should probably get merged in too.
// FIXME: Document::m_processingLoadEvent and DocumentLoader::m_wasOnloadDispatched are roughly the same
// and should be merged.
bool m_processingLoadEvent { false };
bool m_loadEventFinished { false };
bool m_visuallyOrdered { false };
bool m_bParsing { false }; // FIXME: rename
bool m_needsFullStyleRebuild { false };
bool m_inStyleRecalc { false };
bool m_inRenderTreeUpdate { false };
bool m_isResolvingTreeStyle { false };
bool m_isResolvingContainerQueries { false };
bool m_gotoAnchorNeededAfterStylesheetsLoad { false };
bool m_isDNSPrefetchEnabled { false };
bool m_haveExplicitlyDisabledDNSPrefetch { false };
bool m_isSynthesized { false };
bool m_isNonRenderedPlaceholder { false };
bool m_isAutofocusProcessed { false };
bool m_sawElementsInKnownNamespaces { false };
bool m_isSrcdocDocument { false };
bool m_hasInjectedPlugInsScript { false };
bool m_renderTreeBeingDestroyed { false };
bool m_hasPreparedForDestruction { false };
bool m_hasStyleWithViewportUnits { false };
bool m_needsDOMWindowResizeEvent { false };
bool m_needsVisualViewportResizeEvent { false };
bool m_needsVisualViewportScrollEvent { false };
bool m_isTimerThrottlingEnabled { false };
bool m_isSuspended { false };
bool m_scheduledTasksAreSuspended { false };
bool m_visualUpdatesAllowed { true };
bool m_areDeviceMotionAndOrientationUpdatesSuspended { false };
bool m_userDidInteractWithPage { false };
bool m_didEnqueueFirstContentfulPaint { false };
bool m_mayHaveRenderedSVGForeignObjects { false };
bool m_mayHaveRenderedSVGRootElements { false };
bool m_userHasInteractedWithMediaElement { false };
bool m_updateTitleTaskScheduled { false };
#if ENABLE(THREADED_ANIMATION_RESOLUTION)
std::unique_ptr<AcceleratedTimeline> m_acceleratedTimeline;
#endif
bool m_isRunningUserScripts { false };
bool m_shouldPreventEnteringBackForwardCacheForTesting { false };
bool m_hasLoadedThirdPartyScript { false };
bool m_hasLoadedThirdPartyFrame { false };
bool m_hasVisuallyNonEmptyCustomContent { false };
bool m_visibilityHiddenDueToDismissal { false };
#if ENABLE(XSLT)
bool m_hasPendingXSLTransforms { false };
#endif
#if ENABLE(MEDIA_STREAM)
bool m_hasHadCaptureMediaStreamTrack { false };
#endif
#if ENABLE(TOUCH_ACTION_REGIONS)
bool m_mayHaveElementsWithNonAutoTouchAction { false };
#endif
#if ENABLE(EDITABLE_REGION)
bool m_mayHaveEditableElements { false };
#endif
#if ENABLE(TELEPHONE_NUMBER_DETECTION)
bool m_isTelephoneNumberParsingAllowed { true };
#endif
#if ASSERT_ENABLED
bool m_inHitTesting { false };
bool m_didDispatchViewportPropertiesChanged { false };
#endif
bool m_isDirAttributeDirty { false };
bool m_scheduledDeferredAXObjectCacheUpdate { false };
static bool hasEverCreatedAnAXObjectCache;
RefPtr<ResizeObserver> m_resizeObserverForContainIntrinsicSize;
const std::optional<FrameIdentifier> m_frameIdentifier;
};
Element* eventTargetElementForDocument(Document*);
WTF::TextStream& operator<<(WTF::TextStream&, const Document&);
} // namespace WebCore
SPECIALIZE_TYPE_TRAITS_BEGIN(WebCore::Document)
static bool isType(const WebCore::ScriptExecutionContext& context) { return context.isDocument(); }
static bool isType(const WebCore::Node& node) { return node.isDocumentNode(); }
static bool isType(const WebCore::EventTarget& target) { return is<WebCore::Node>(target) && isType(downcast<WebCore::Node>(target)); }
SPECIALIZE_TYPE_TRAITS_END()
|