summaryrefslogtreecommitdiffstats
path: root/tests/java5/annotations/ajdkExamples/AnnotationPatternMatching.aj
blob: 23be9d78504cee48e609f12be8d7cd4e7559733d (plain)
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
import org.xyz.*;

public aspect AnnotationPatternMatching {

	declare warning : execution(@Immutable * *(..)) : "@Immutable";
	
	declare warning : execution(!@Persistent * *(..)) : "!@Persistent";
	
	declare warning : execution(@Foo @Goo * *(..)) : "@Foo @Goo";
	
	declare warning : execution(@(Foo || Goo) * *(..)) : "@(Foo || Goo)";
	
	declare warning : execution(@(org.xyz..*) * *(..)) : "@(org.xyz..*)";
	
}

@interface Immutable {}
@interface Persistent {}
@interface Foo{}
@interface Goo{}


class Annotated {
	
	@Immutable void m1() {}
	
	@Persistent void m2() {}
	
	@Foo @Goo void m3() {}
	
	@Foo void m4() {}
	
	@OrgXYZAnnotation void m5() {}
	
}
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 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135
QUnit.module( "manipulation", {
	afterEach: moduleTeardown
} );

// Ensure that an extended Array prototype doesn't break jQuery
Array.prototype.arrayProtoFn = function() {
};

function manipulationBareObj( value ) {
	return value;
}

function manipulationFunctionReturningObj( value ) {
	return function() {
		return value;
	};
}

/*
	======== local reference =======
	manipulationBareObj and manipulationFunctionReturningObj can be used to test passing functions to setters
	See testVal below for an example

	bareObj( value );
		This function returns whatever value is passed in

	functionReturningObj( value );
		Returns a function that returns the value
*/

QUnit.test( "text()", function( assert ) {

	assert.expect( 6 );

	var expected, frag, $newLineTest, doc;

	expected = "This link has class=\"blog\": Timmy Willison's Weblog";
	assert.equal( jQuery( "#sap" ).text(), expected, "Check for merged text of more than one element." );

	// Check serialization of text values
	assert.equal( jQuery( document.createTextNode( "foo" ) ).text(), "foo", "Text node was retrieved from .text()." );
	assert.notEqual( jQuery( document ).text(), "", "Retrieving text for the document retrieves all text (trac-10724)." );

	// Retrieve from document fragments trac-10864
	frag = document.createDocumentFragment();
	frag.appendChild( document.createTextNode( "foo" ) );

	assert.equal( jQuery( frag ).text(), "foo", "Document Fragment Text node was retrieved from .text()." );

	$newLineTest = jQuery( "<div>test<br/>testy</div>" ).appendTo( "#moretests" );
	$newLineTest.find( "br" ).replaceWith( "\n" );
	assert.equal( $newLineTest.text(), "test\ntesty", "text() does not remove new lines (trac-11153)" );

	$newLineTest.remove();

	doc = new DOMParser().parseFromString( "<span>example</span>", "text/html" );
	assert.equal( jQuery( doc ).text(), "example", "text() on HTMLDocument (gh-5264)" );
} );

QUnit.test( "text(undefined)", function( assert ) {

	assert.expect( 1 );

	assert.equal( jQuery( "#foo" ).text( "<div" ).text( undefined )[ 0 ].innerHTML, "&lt;div", ".text(undefined) is chainable (trac-5571)" );
} );

function testText( valueObj, assert ) {

	assert.expect( 6 );

	var val, j, expected, $multipleElements, $parentDiv, $childDiv;

	val = valueObj( "<div><b>Hello</b> cruel world!</div>" );
	assert.equal( jQuery( "#foo" ).text( val )[ 0 ].innerHTML.replace( />/g, "&gt;" ), "&lt;div&gt;&lt;b&gt;Hello&lt;/b&gt; cruel world!&lt;/div&gt;", "Check escaped text" );

	// using contents will get comments regular, text, and comment nodes
	j = jQuery( "#nonnodes" ).contents();
	j.text( valueObj( "hi!" ) );
	assert.equal( jQuery( j[ 0 ] ).text(), "hi!", "Check node,textnode,comment with text()" );
	assert.equal( j[ 1 ].nodeValue, " there ", "Check node,textnode,comment with text()" );

	assert.equal( j[ 2 ].nodeType, 8, "Check node,textnode,comment with text()" );

	// Update multiple elements trac-11809
	expected = "New";

	$multipleElements = jQuery( "<div>Hello</div>" ).add( "<div>World</div>" );
	$multipleElements.text( expected );

	assert.equal( $multipleElements.eq( 0 ).text(), expected, "text() updates multiple elements (trac-11809)" );
	assert.equal( $multipleElements.eq( 1 ).text(), expected, "text() updates multiple elements (trac-11809)" );

	// Prevent memory leaks trac-11809
	$childDiv = jQuery( "<div></div>" );
	$childDiv.data( "leak", true );
	$parentDiv = jQuery( "<div></div>" );
	$parentDiv.append( $childDiv );
	$parentDiv.text( "Dry off" );
}

QUnit.test( "text(String)", function( assert ) {
	testText( manipulationBareObj, assert );
} );

QUnit.test( "text(Function)", function( assert ) {
	testText( manipulationFunctionReturningObj, assert );
} );

QUnit.test( "text(Function) with incoming value", function( assert ) {

	assert.expect( 2 );

	var old = "This link has class=\"blog\": Timmy Willison's Weblog";

	jQuery( "#sap" ).text( function( i, val ) {
		assert.equal( val, old, "Make sure the incoming value is correct." );
		return "foobar";
	} );

	assert.equal( jQuery( "#sap" ).text(), "foobar", "Check for merged text of more then one element." );
} );

function testAppendForObject( valueObj, isFragment, assert ) {
	var $base,
		type = isFragment ? " (DocumentFragment)" : " (Element)",
		text = "This link has class=\"blog\": Timmy Willison's Weblog",
		el = document.getElementById( "sap" ).cloneNode( true ),
		first = document.getElementById( "first" ),
		yahoo = document.getElementById( "yahoo" );

	if ( isFragment ) {
		$base = document.createDocumentFragment();
		jQuery( el ).contents().each( function() {
			$base.appendChild( this );
		} );
		$base = jQuery( $base );
	} else {
		$base = jQuery( el );
	}

	assert.equal( $base.clone().append( valueObj( first.cloneNode( true ) ) ).text(),
		text + "Try them out:",
		"Check for appending of element" + type
	);

	assert.equal( $base.clone().append( valueObj( [ first.cloneNode( true ), yahoo.cloneNode( true ) ] ) ).text(),
		text + "Try them out:Yahoo",
		"Check for appending of array of elements" + type
	);

	assert.equal( $base.clone().append( valueObj( jQuery( "#yahoo, #first" ).clone() ) ).text(),
		text + "YahooTry them out:",
		"Check for appending of jQuery object" + type
	);

	assert.equal( $base.clone().append( valueObj( 5 ) ).text(),
		text + "5",
		"Check for appending a number" + type
	);

	assert.equal( $base.clone().append( valueObj( [ jQuery( "#first" ).clone(), jQuery( "#yahoo, #google" ).clone() ] ) ).text(),
		text + "Try them out:GoogleYahoo",
		"Check for appending of array of jQuery objects"
	);

	assert.equal( $base.clone().append( valueObj( " text with spaces " ) ).text(),
		text + " text with spaces ",
		"Check for appending text with spaces" + type
	);

	assert.equal( $base.clone().append( valueObj( [] ) ).text(),
		text,
		"Check for appending an empty array" + type
	);

	assert.equal( $base.clone().append( valueObj( "" ) ).text(),
		text,
		"Check for appending an empty string" + type
	);

	assert.equal( $base.clone().append( valueObj( document.getElementsByTagName( "foo" ) ) ).text(),
		text,
		"Check for appending an empty nodelist" + type
	);

	assert.equal( $base.clone().append( "<span></span>", "<span></span>", "<span></span>" ).children().length,
		$base.children().length + 3,
		"Make sure that multiple arguments works." + type
	);

	assert.equal( $base.clone().append( valueObj( document.getElementById( "form" ).cloneNode( true ) ) ).children( "form" ).length,
		1,
		"Check for appending a form (trac-910)" + type
	);
}

function testAppend( valueObj, assert ) {

	assert.expect( 82 );

	testAppendForObject( valueObj, false, assert );
	testAppendForObject( valueObj, true, assert );

	var defaultText, result, message, iframe, iframeDoc, j, d,
		$input, $radioChecked, $radioUnchecked, $radioParent, $map, $table;

	defaultText = "Try them out:";
	result = jQuery( "#first" ).append( valueObj( "<b>buga</b>" ) );

	assert.equal( result.text(), defaultText + "buga", "Check if text appending works" );
	assert.equal( jQuery( "#select3" ).append( valueObj( "<option value='appendTest'>Append Test</option>" ) ).find( "option:last-child" ).attr( "value" ), "appendTest", "Appending html options to select element" );

	jQuery( "#qunit-fixture form" ).append( valueObj( "<input name='radiotest' type='radio' checked='checked' />" ) );
	jQuery( "#qunit-fixture form input[name=radiotest]" ).each( function() {
		assert.ok( jQuery( this ).is( ":checked" ), "Append checked radio" );
	} ).remove();

	jQuery( "#qunit-fixture form" ).append( valueObj( "<input name='radiotest2' type='radio' checked    =   'checked' />" ) );
	jQuery( "#qunit-fixture form input[name=radiotest2]" ).each( function() {
		assert.ok( jQuery( this ).is( ":checked" ), "Append alternately formatted checked radio" );
	} ).remove();

	jQuery( "#qunit-fixture form" ).append( valueObj( "<input name='radiotest3' type='radio' checked />" ) );
	jQuery( "#qunit-fixture form input[name=radiotest3]" ).each( function() {
		assert.ok( jQuery( this ).is( ":checked" ), "Append HTML5-formatted checked radio" );
	} ).remove();

	jQuery( "#qunit-fixture form" ).append( valueObj( "<input type='radio' checked='checked' name='radiotest4' />" ) );
	jQuery( "#qunit-fixture form input[name=radiotest4]" ).each( function() {
		assert.ok( jQuery( this ).is( ":checked" ), "Append with name attribute after checked attribute" );
	} ).remove();

	message = "Test for appending a DOM node to the contents of an iframe";
	iframe = jQuery( "#iframe" )[ 0 ];
	iframeDoc = iframe.contentDocument || iframe.contentWindow && iframe.contentWindow.document;

	try {
		if ( iframeDoc && iframeDoc.body ) {
			assert.equal( jQuery( iframeDoc.body ).append( valueObj( "<div id='success'>test</div>" ) )[ 0 ].lastChild.id, "success", message );
		} else {
			assert.ok( true, message + " - can't test" );
		}
	} catch ( e ) {
		assert.strictEqual( e.message || e, undefined, message );
	}

	jQuery( "<fieldset></fieldset>" ).appendTo( "#form" ).append( valueObj( "<legend id='legend'>test</legend>" ) );
	assert.t( "Append legend", "#legend", [ "legend" ] );

	$map = jQuery( "<map></map>" ).append( valueObj( "<area id='map01' shape='rect' coords='50,50,150,150' href='https://www.jquery.com/' alt='jQuery'>" ) );

	assert.equal( $map[ 0 ].childNodes.length, 1, "The area was inserted." );
	assert.equal( $map[ 0 ].firstChild.nodeName.toLowerCase(), "area", "The area was inserted." );

	jQuery( "#select1" ).append( valueObj( "<OPTION>Test</OPTION>" ) );
	assert.equal( jQuery( "#select1 option:last-child" ).text(), "Test", "Appending OPTION (all caps)" );

	jQuery( "#select1" ).append( valueObj( "<optgroup label='optgroup'><option>optgroup</option></optgroup>" ) );
	assert.equal( jQuery( "#select1 optgroup" ).attr( "label" ), "optgroup", "Label attribute in newly inserted optgroup is correct" );
	assert.equal( jQuery( "#select1 option" ).last().text(), "optgroup", "Appending optgroup" );

	$table = jQuery( "#table" );

	jQuery.each( "thead tbody tfoot colgroup caption tr th td".split( " " ), function( i, name ) {
		$table.append( valueObj( "<" + name + "/>" ) );
		assert.equal( $table.find( name ).length, 1, "Append " + name );
		assert.ok( jQuery.parseHTML( "<" + name + "/>" ).length, name + " wrapped correctly" );
	} );

	jQuery( "#table colgroup" ).append( valueObj( "<col></col>" ) );
	assert.equal( jQuery( "#table colgroup col" ).length, 1, "Append col" );

	jQuery( "#form" )
		.append( valueObj( "<select id='appendSelect1'></select>" ) )
		.append( valueObj( "<select id='appendSelect2'><option>Test</option></select>" ) );
	assert.t( "Append Select", "#appendSelect1, #appendSelect2", [ "appendSelect1", "appendSelect2" ] );

	assert.equal( "Two nodes", jQuery( "<div></div>" ).append( "Two", " nodes" ).text(), "Appending two text nodes (trac-4011)" );
	assert.equal( jQuery( "<div></div>" ).append( "1", "", 3 ).text(), "13", "If median is false-like value, subsequent arguments should not be ignored" );

	// using contents will get comments regular, text, and comment nodes
	j = jQuery( "#nonnodes" ).contents();
	d = jQuery( "<div></div>" ).appendTo( "#nonnodes" ).append( j );

	assert.equal( jQuery( "#nonnodes" ).length, 1, "Check node,textnode,comment append moved leaving just the div" );
	assert.equal( d.contents().length, 3, "Check node,textnode,comment append works" );
	d.contents().appendTo( "#nonnodes" );
	d.remove();
	assert.equal( jQuery( "#nonnodes" ).contents().length, 3, "Check node,textnode,comment append cleanup worked" );

	$input = jQuery( "<input type='checkbox'/>" ).prop( "checked", true ).appendTo( "#testForm" );
	assert.equal( $input[ 0 ].checked, true, "A checked checkbox that is appended stays checked" );

	$radioChecked = jQuery( "input[type='radio'][name='R1']" ).eq( 1 );
	$radioParent = $radioChecked.parent();
	$radioUnchecked = jQuery( "<input type='radio' name='R1' checked='checked'/>" ).appendTo( $radioParent );
	$radioChecked.trigger( "click" );
	$radioUnchecked[ 0 ].checked = false;

	jQuery( "<div></div>" ).insertBefore( $radioParent ).append( $radioParent );

	assert.equal( $radioChecked[ 0 ].checked, true, "Reappending radios uphold which radio is checked" );
	assert.equal( $radioUnchecked[ 0 ].checked, false, "Reappending radios uphold not being checked" );

	assert.equal( jQuery( "<div></div>" ).append( valueObj( "option<area></area>" ) )[ 0 ].childNodes.length, 2, "HTML-string with leading text should be processed correctly" );
}

QUnit.test( "append(String|Element|Array<Element>|jQuery)", function( assert ) {
	testAppend( manipulationBareObj, assert );
} );

QUnit.test( "append(Function)", function( assert ) {
	testAppend( manipulationFunctionReturningObj, assert );
} );

QUnit.test( "append(param) to object, see trac-11280", function( assert ) {

	assert.expect( 5 );

	var object = jQuery( document.createElement( "object" ) ).appendTo( document.body );

	assert.equal( object.children().length, 0, "object does not start with children" );

	object.append( jQuery( "<param type='wmode' name='foo'>" ) );
	assert.equal( object.children().length, 1, "appended param" );
	assert.equal( object.children().eq( 0 ).attr( "name" ), "foo", "param has name=foo" );

	object = jQuery( "<object><param type='baz' name='bar'></object>" );
	assert.equal( object.children().length, 1, "object created with child param" );
	assert.equal( object.children().eq( 0 ).attr( "name" ), "bar", "param has name=bar" );
} );

QUnit.test( "append(Function) returns String", function( assert ) {

	assert.expect( 4 );

	var defaultText, result, select, old;

	defaultText = "Try them out:";
	old = jQuery( "#first" ).html();

	result = jQuery( "#first" ).append( function( i, val ) {
		assert.equal( val, old, "Make sure the incoming value is correct." );
		return "<b>buga</b>";
	} );
	assert.equal( result.text(), defaultText + "buga", "Check if text appending works" );

	select = jQuery( "#select3" );
	old = select.html();

	assert.equal( select.append( function( i, val ) {
		assert.equal( val, old, "Make sure the incoming value is correct." );
		return "<option value='appendTest'>Append Test</option>";
	} ).find( "option:last-child" ).attr( "value" ), "appendTest", "Appending html options to select element" );
} );

QUnit.test( "append(Function) returns Element", function( assert ) {

	assert.expect( 2 );
	var expected = "This link has class=\"blog\": Timmy Willison's WeblogTry them out:",
		old = jQuery( "#sap" ).html();

	jQuery( "#sap" ).append( function( i, val ) {
		assert.equal( val, old, "Make sure the incoming value is correct." );
		return document.getElementById( "first" );
	} );
	assert.equal( jQuery( "#sap" ).text(), expected, "Check for appending of element" );
} );

QUnit.test( "append(Function) returns Array<Element>", function( assert ) {

	assert.expect( 2 );
	var expected = "This link has class=\"blog\": Timmy Willison's WeblogTry them out:Yahoo",
		old = jQuery( "#sap" ).html();

	jQuery( "#sap" ).append( function( i, val ) {
		assert.equal( val, old, "Make sure the incoming value is correct." );
		return [ document.getElementById( "first" ), document.getElementById( "yahoo" ) ];
	} );
	assert.equal( jQuery( "#sap" ).text(), expected, "Check for appending of array of elements" );
} );

QUnit.test( "append(Function) returns jQuery", function( assert ) {

	assert.expect( 2 );
	var expected = "This link has class=\"blog\": Timmy Willison's WeblogYahooTry them out:",
		old = jQuery( "#sap" ).html();

	jQuery( "#sap" ).append( function( i, val ) {
		assert.equal( val, old, "Make sure the incoming value is correct." );
		return jQuery( "#yahoo, #first" );
	} );
	assert.equal( jQuery( "#sap" ).text(), expected, "Check for appending of jQuery object" );
} );

QUnit.test( "append(Function) returns Number", function( assert ) {

	assert.expect( 2 );
	var old = jQuery( "#sap" ).html();

	jQuery( "#sap" ).append( function( i, val ) {
		assert.equal( val, old, "Make sure the incoming value is correct." );
		return 5;
	} );
	assert.ok( jQuery( "#sap" )[ 0 ].innerHTML.match( /5$/ ), "Check for appending a number" );
} );

QUnit.test( "XML DOM manipulation (trac-9960)", function( assert ) {

	assert.expect( 5 );

	var xmlDoc1 = jQuery.parseXML( "<scxml xmlns='http://www.w3.org/2005/07/scxml' version='1.0'><state x='100' y='100' initial='actions' id='provisioning'></state><state x='100' y='100' id='error'></state><state x='100' y='100' id='finished' final='true'></state></scxml>" ),
		xmlDoc2 = jQuery.parseXML( "<scxml xmlns='http://www.w3.org/2005/07/scxml' version='1.0'><state id='provisioning3'></state></scxml>" ),
		xml1 = jQuery( xmlDoc1 ),
		xml2 = jQuery( xmlDoc2 ),
		scxml1 = jQuery( "scxml", xml1 ),
		scxml2 = jQuery( "scxml", xml2 ),
		state = scxml2.find( "state" );

	scxml1.append( state );
	assert.strictEqual( scxml1[ 0 ].lastChild, state[ 0 ], "append" );

	scxml1.prepend( state );
	assert.strictEqual( scxml1[ 0 ].firstChild, state[ 0 ], "prepend" );

	scxml1.find( "#finished" ).after( state );
	assert.strictEqual( scxml1[ 0 ].lastChild, state[ 0 ], "after" );

	scxml1.find( "#provisioning" ).before( state );
	assert.strictEqual( scxml1[ 0 ].firstChild, state[ 0 ], "before" );

	scxml2.replaceWith( scxml1 );
	assert.deepEqual( jQuery( "state", xml2 ).get(), scxml1.find( "state" ).get(), "replaceWith" );
} );

QUnit.test( "append HTML5 sectioning elements (Bug trac-6485)", function( assert ) {

	assert.expect( 2 );

	var article, aside;

	jQuery( "#qunit-fixture" ).append( "<article style='font-size:10px'><section><aside>HTML5 elements</aside></section></article>" );

	article = jQuery( "article" );
	aside = jQuery( "aside" );

	assert.equal( article.get( 0 ).style.fontSize, "10px", "HTML5 elements are styleable" );
	assert.equal( aside.length, 1, "HTML5 elements do not collapse their children" );
} );

QUnit[ includesModule( "css" ) ? "test" : "skip" ]( "HTML5 Elements inherit styles from style rules (Bug trac-10501)", function( assert ) {

	assert.expect( 1 );

	jQuery( "#qunit-fixture" ).append( "<article id='article'></article>" );
	jQuery( "#article" ).append( "<section>This section should have a pink background.</section>" );

	// In IE, the missing background color will claim its value is "transparent"
	assert.notEqual( jQuery( "section" ).css( "background-color" ), "transparent", "HTML5 elements inherit styles" );
} );

QUnit.test( "html(String) with HTML5 (Bug trac-6485)", function( assert ) {

	assert.expect( 2 );

	jQuery( "#qunit-fixture" ).html( "<article><section><aside>HTML5 elements</aside></section></article>" );
	assert.equal( jQuery( "#qunit-fixture" ).children().children().length, 1, "Make sure HTML5 article elements can hold children. innerHTML shortcut path" );
	assert.equal( jQuery( "#qunit-fixture" ).children().children().children().length, 1, "Make sure nested HTML5 elements can hold children." );
} );

QUnit.test( "html(String) tag-hyphenated elements (Bug gh-1987)", function( assert ) {

	assert.expect( 27 );

	jQuery.each( "thead tbody tfoot colgroup caption tr th td".split( " " ), function( i, name ) {
		var j = jQuery( "<" + name + "-d></" + name + "-d><" + name + "-d></" + name + "-d>" );
		assert.ok( j[ 0 ], "Create a tag-hyphenated element" );
		assert.ok( j[ 0 ].nodeName === name.toUpperCase() + "-D", "Hyphenated node name" );
		assert.ok( j[ 1 ].nodeName === name.toUpperCase() + "-D", "Hyphenated node name" );
	} );

	var j = jQuery( "<tr-multiple-hyphens><td-with-hyphen>text</td-with-hyphen></tr-multiple-hyphens>" );
	assert.ok( j[ 0 ].nodeName === "TR-MULTIPLE-HYPHENS", "Tags with multiple hyphens" );
	assert.ok( j.children()[ 0 ].nodeName === "TD-WITH-HYPHEN", "Tags with multiple hyphens" );
	assert.equal( j.children().text(), "text", "Tags with multiple hyphens behave normally" );
} );

QUnit.test( "Tag name processing respects the HTML Standard (gh-2005)", function( assert ) {

	assert.expect( 240 );

	var wrapper = jQuery( "<div></div>" ),
		nameTerminatingChars = "\x20\t\r\n\f".split( "" ),
		specialChars = "[ ] { } _ - = + \\ ( ) * & ^ % $ # @ ! ~ ` ' ; ? ¥ « µ λ ⊕ ≈ ξ ℜ ♣ €"
			.split( " " );

	specialChars.push( specialChars.join( "" ) );

	jQuery.each( specialChars, function( i, characters ) {
		assertSpecialCharsSupport( "html", characters );
		assertSpecialCharsSupport( "append", characters );
	} );

	jQuery.each( nameTerminatingChars, function( i, character ) {
		assertNameTerminatingCharsHandling( "html", character );
		assertNameTerminatingCharsHandling( "append", character );
	} );

	function buildChild( method, html ) {
		wrapper[ method ]( html );
		return wrapper.children()[ 0 ];
	}

	function assertSpecialCharsSupport( method, characters ) {
		var child,
			codepoint = characters.charCodeAt( 0 ).toString( 16 ).toUpperCase(),
			description = characters.length === 1 ?
				"U+" + ( "000" + codepoint ).slice( -4 ) + " " + characters :
				"all special characters",
			nodeName = "valid" + characters + "tagname";

		child = buildChild( method, "<" + nodeName + "></" + nodeName + ">" );
		assert.equal( child.nodeName.toUpperCase(), nodeName.toUpperCase(),
			method + "(): Paired tag name includes " + description );

		child = buildChild( method, "<" + nodeName + ">" );
		assert.equal( child.nodeName.toUpperCase(), nodeName.toUpperCase(),
			method + "(): Unpaired tag name includes " + description );

		child = buildChild( method, "<" + nodeName + "/>" );
		assert.equal( child.nodeName.toUpperCase(), nodeName.toUpperCase(),
			method + "(): Self-closing tag name includes " + description );
	}

	function assertNameTerminatingCharsHandling( method, character ) {
		var child,
			codepoint = character.charCodeAt( 0 ).toString( 16 ).toUpperCase(),
			description = "U+" + ( "000" + codepoint ).slice( -4 ) + " " + character,
			nodeName = "div" + character + "this-will-be-discarded";

		child = buildChild( method, "<" + nodeName + "></" + nodeName + ">" );
		assert.equal( child.nodeName.toUpperCase(), "DIV",
			method + "(): Paired tag name terminated by " + description );

		child = buildChild( method, "<" + nodeName + ">" );
		assert.equal( child.nodeName.toUpperCase(), "DIV",
			method + "(): Unpaired open tag name terminated by " + description );

		child = buildChild( method, "<" + nodeName + "/>" );
		assert.equal( child.nodeName.toUpperCase(), "DIV",
			method + "(): Self-closing tag name terminated by " + description );
	}
} );

QUnit.test( "IE8 serialization bug", function( assert ) {

	assert.expect( 2 );
	var wrapper = jQuery( "<div></div>" );

	wrapper.html( "<div></div><article></article>" );
	assert.equal( wrapper.children( "article" ).length, 1, "HTML5 elements are insertable with .html()" );

	wrapper.html( "<div></div><link></link>" );
	assert.equal( wrapper.children( "link" ).length, 1, "Link elements are insertable with .html()" );
} );

QUnit.test( "html() object element trac-10324", function( assert ) {

	assert.expect( 1 );

	var object = jQuery( "<object id='object2'><param name='object2test' value='test'></param></object>?" ).appendTo( "#qunit-fixture" ),
		clone = object.clone();

	assert.equal( clone.html(), object.html(), "html() returns correct innerhtml of cloned object elements" );
} );

QUnit.test( "append(xml)", function( assert ) {

	assert.expect( 1 );

	var xmlDoc, xml1, xml2;

	function createXMLDoc() {
		return document.implementation.createDocument( "", "", null );
	}

	xmlDoc = createXMLDoc();
	xml1 = xmlDoc.createElement( "head" );
	xml2 = xmlDoc.createElement( "test" );

	assert.ok( jQuery( xml1 ).append( xml2 ), "Append an xml element to another without raising an exception." );

} );

QUnit.test( "appendTo(String)", function( assert ) {

	assert.expect( 4 );

	var l, defaultText;

	defaultText = "Try them out:";
	jQuery( "<b>buga</b>" ).appendTo( "#first" );
	assert.equal( jQuery( "#first" ).text(), defaultText + "buga", "Check if text appending works" );
	assert.equal( jQuery( "<option value='appendTest'>Append Test</option>" ).appendTo( "#select3" ).parent().find( "option:last-child" ).attr( "value" ), "appendTest", "Appending html options to select element" );

	l = jQuery( "#first" ).children().length + 2;
	jQuery( "<strong>test</strong>" );
	jQuery( "<strong>test</strong>" );
	jQuery( [ jQuery( "<strong>test</strong>" )[ 0 ], jQuery( "<strong>test</strong>" )[ 0 ] ] )
		.appendTo( "#first" );
	assert.equal( jQuery( "#first" ).children().length, l, "Make sure the elements were inserted." );
	assert.equal( jQuery( "#first" ).children().last()[ 0 ].nodeName.toLowerCase(), "strong", "Verify the last element." );
} );

QUnit.test( "appendTo(Element|Array<Element>)", function( assert ) {

	assert.expect( 2 );

	var expected = "This link has class=\"blog\": Timmy Willison's WeblogTry them out:";
	jQuery( document.getElementById( "first" ) ).appendTo( "#sap" );
	assert.equal( jQuery( "#sap" ).text(), expected, "Check for appending of element" );

	expected = "This link has class=\"blog\": Timmy Willison's WeblogTry them out:Yahoo";
	jQuery( [ document.getElementById( "first" ), document.getElementById( "yahoo" ) ] ).appendTo( "#sap" );
	assert.equal( jQuery( "#sap" ).text(), expected, "Check for appending of array of elements" );

} );

QUnit.test( "appendTo(jQuery)", function( assert ) {

	assert.expect( 10 );

	var expected, num, div;
	assert.ok( jQuery( document.createElement( "script" ) ).appendTo( "body" ).length, "Make sure a disconnected script can be appended." );

	expected = "This link has class=\"blog\": Timmy Willison's WeblogYahooTry them out:";
	jQuery( "#yahoo, #first" ).appendTo( "#sap" );
	assert.equal( jQuery( "#sap" ).text(), expected, "Check for appending of jQuery object" );

	jQuery( "#select1" ).appendTo( "#foo" );
	assert.t( "Append select", "#foo select", [ "select1" ] );

	div = jQuery( "<div></div>" ).on( "click", function() {
		assert.ok( true, "Running a cloned click." );
	} );
	div.appendTo( "#qunit-fixture, #moretests" );

	jQuery( "#qunit-fixture div" ).last().trigger( "click" );
	jQuery( "#moretests div" ).last().trigger( "click" );

	div = jQuery( "<div></div>" ).appendTo( "#qunit-fixture, #moretests" );

	assert.equal( div.length, 2, "appendTo returns the inserted elements" );

	div.addClass( "test" );

	assert.ok( jQuery( "#qunit-fixture div" ).last().hasClass( "test" ), "appendTo element was modified after the insertion" );
	assert.ok( jQuery( "#moretests div" ).last().hasClass( "test" ), "appendTo element was modified after the insertion" );

	div = jQuery( "<div></div>" );
	jQuery( "<span>a</span><b>b</b>" ).filter( "span" ).appendTo( div );

	assert.equal( div.children().length, 1, "Make sure the right number of children were inserted." );

	div = jQuery( "#moretests div" );

	num = jQuery( "#qunit-fixture div" ).length;
	div.remove().appendTo( "#qunit-fixture" );

	assert.equal( jQuery( "#qunit-fixture div" ).length, num, "Make sure all the removed divs were inserted." );
} );

QUnit.test( "prepend(String)", function( assert ) {

	assert.expect( 2 );

	var result, expected;
	expected = "Try them out:";
	result = jQuery( "#first" ).prepend( "<b>buga</b>" );
	assert.equal( result.text(), "buga" + expected, "Check if text prepending works" );
	assert.equal( jQuery( "#select3" ).prepend( "<option value='prependTest'>Prepend Test</option>"  ).find( "option:first-child" ).attr( "value" ), "prependTest", "Prepending html options to select element" );
} );

QUnit.test( "prepend(Element)", function( assert ) {

	assert.expect( 1 );

	var expected;
	expected = "Try them out:This link has class=\"blog\": Timmy Willison's Weblog";
	jQuery( "#sap" ).prepend( document.getElementById( "first" ) );
	assert.equal( jQuery( "#sap" ).text(), expected, "Check for prepending of element" );
} );

QUnit.test( "prepend(Array<Element>)", function( assert ) {

	assert.expect( 1 );

	var expected;
	expected = "Try them out:YahooThis link has class=\"blog\": Timmy Willison's Weblog";
	jQuery( "#sap" ).prepend( [ document.getElementById( "first" ), document.getElementById( "yahoo" ) ] );
	assert.equal( jQuery( "#sap" ).text(), expected, "Check for prepending of array of elements" );
} );

QUnit.test( "prepend(jQuery)", function( assert ) {

	assert.expect( 1 );

	var expected;
	expected = "YahooTry them out:This link has class=\"blog\": Timmy Willison's Weblog";
	jQuery( "#sap" ).prepend( jQuery( "#yahoo, #first" ) );
	assert.equal( jQuery( "#sap" ).text(), expected, "Check for prepending of jQuery object" );
} );

QUnit.test( "prepend(Array<jQuery>)", function( assert ) {

	assert.expect( 1 );

	var expected;
	expected = "Try them out:GoogleYahooThis link has class=\"blog\": Timmy Willison's Weblog";
	jQuery( "#sap" ).prepend( [ jQuery( "#first" ), jQuery( "#yahoo, #google" ) ] );
	assert.equal( jQuery( "#sap" ).text(), expected, "Check for prepending of array of jQuery objects" );
} );

QUnit.test( "prepend(Function) with incoming value -- String", function( assert ) {

	assert.expect( 4 );

	var defaultText, old, result;

	defaultText = "Try them out:";
	old = jQuery( "#first" ).html();
	result = jQuery( "#first" ).prepend( function( i, val ) {
		assert.equal( val, old, "Make sure the incoming value is correct." );
		return "<b>buga</b>";
	} );

	assert.equal( result.text(), "buga" + defaultText, "Check if text prepending works" );

	old = jQuery( "#select3" ).html();

	assert.equal( jQuery( "#select3" ).prepend( function( i, val ) {
		assert.equal( val, old, "Make sure the incoming value is correct." );
		return "<option value='prependTest'>Prepend Test</option>";
	} ).find( "option:first-child" ).attr( "value" ), "prependTest", "Prepending html options to select element" );
} );

QUnit.test( "prepend(Function) with incoming value -- Element", function( assert ) {

	assert.expect( 2 );

	var old, expected;
	expected = "Try them out:This link has class=\"blog\": Timmy Willison's Weblog";
	old = jQuery( "#sap" ).html();

	jQuery( "#sap" ).prepend( function( i, val ) {
		assert.equal( val, old, "Make sure the incoming value is correct." );
		return document.getElementById( "first" );
	} );

	assert.equal( jQuery( "#sap" ).text(), expected, "Check for prepending of element" );
} );

QUnit.test( "prepend(Function) with incoming value -- Array<Element>", function( assert ) {

	assert.expect( 2 );

	var old, expected;
	expected = "Try them out:YahooThis link has class=\"blog\": Timmy Willison's Weblog";
	old = jQuery( "#sap" ).html();

	jQuery( "#sap" ).prepend( function( i, val ) {
		assert.equal( val, old, "Make sure the incoming value is correct." );
		return [ document.getElementById( "first" ), document.getElementById( "yahoo" ) ];
	} );

	assert.equal( jQuery( "#sap" ).text(), expected, "Check for prepending of array of elements" );
} );

QUnit.test( "prepend(Function) with incoming value -- jQuery", function( assert ) {

	assert.expect( 2 );

	var old, expected;
	expected = "YahooTry them out:This link has class=\"blog\": Timmy Willison's Weblog";
	old = jQuery( "#sap" ).html();

	jQuery( "#sap" ).prepend( function( i, val ) {
		assert.equal( val, old, "Make sure the incoming value is correct." );
		return jQuery( "#yahoo, #first" );
	} );

	assert.equal( jQuery( "#sap" ).text(), expected, "Check for prepending of jQuery object" );
} );

QUnit.test( "prependTo(String)", function( assert ) {

	assert.expect( 2 );

	var defaultText;

	defaultText = "Try them out:";
	jQuery( "<b>buga</b>" ).prependTo( "#first" );
	assert.equal( jQuery( "#first" ).text(), "buga" + defaultText, "Check if text prepending works" );
	assert.equal( jQuery( "<option value='prependTest'>Prepend Test</option>" ).prependTo( "#select3" ).parent().find( "option:first-child" ).attr( "value" ), "prependTest", "Prepending html options to select element" );

} );

QUnit.test( "prependTo(Element)", function( assert ) {

	assert.expect( 1 );

	var expected;

	expected = "Try them out:This link has class=\"blog\": Timmy Willison's Weblog";
	jQuery( document.getElementById( "first" ) ).prependTo( "#sap" );
	assert.equal( jQuery( "#sap" ).text(), expected, "Check for prepending of element" );
} );

QUnit.test( "prependTo(Array<Element>)", function( assert ) {

	assert.expect( 1 );

	var expected;

	expected = "Try them out:YahooThis link has class=\"blog\": Timmy Willison's Weblog";
	jQuery( [ document.getElementById( "first" ), document.getElementById( "yahoo" ) ] ).prependTo( "#sap" );
	assert.equal( jQuery( "#sap" ).text(), expected, "Check for prepending of array of elements" );
} );

QUnit.test( "prependTo(jQuery)", function( assert ) {

	assert.expect( 1 );

	var expected;

	expected = "YahooTry them out:This link has class=\"blog\": Timmy Willison's Weblog";
	jQuery( "#yahoo, #first" ).prependTo( "#sap" );
	assert.equal( jQuery( "#sap" ).text(), expected, "Check for prepending of jQuery object" );
} );

QUnit.test( "prependTo(Array<jQuery>)", function( assert ) {

	assert.expect( 1 );

	jQuery( "<select id='prependSelect1'></select>" ).prependTo( "#form" );
	jQuery( "<select id='prependSelect2'><option>Test</option></select>" ).prependTo( "#form" );

	assert.t( "Prepend Select", "#prependSelect2, #prependSelect1", [ "prependSelect2", "prependSelect1" ] );
} );

QUnit.test( "before(String)", function( assert ) {

	assert.expect( 1 );

	var expected;

	expected = "This is a normal link: bugaYahoo";
	jQuery( "#yahoo" ).before( manipulationBareObj( "<b>buga</b>" ) );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert String before" );
} );

QUnit.test( "before(Element)", function( assert ) {

	assert.expect( 1 );

	var expected;

	expected = "This is a normal link: Try them out:Yahoo";
	jQuery( "#yahoo" ).before( manipulationBareObj( document.getElementById( "first" ) ) );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert element before" );
} );

QUnit.test( "before(Array<Element>)", function( assert ) {

	assert.expect( 1 );

	var expected;
	expected = "This is a normal link: Try them out:mozillaYahoo";
	jQuery( "#yahoo" ).before( manipulationBareObj( [ document.getElementById( "first" ), document.getElementById( "mozilla" ) ] ) );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert array of elements before" );
} );

QUnit.test( "before(jQuery)", function( assert ) {

	assert.expect( 1 );

	var expected;
	expected = "This is a normal link: mozillaTry them out:Yahoo";
	jQuery( "#yahoo" ).before( manipulationBareObj( jQuery( "#mozilla, #first" ) ) );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert jQuery before" );
} );

QUnit.test( "before(Array<jQuery>)", function( assert ) {

	assert.expect( 1 );

	var expected;
	expected = "This is a normal link: Try them out:GooglemozillaYahoo";
	jQuery( "#yahoo" ).before( manipulationBareObj( [ jQuery( "#first" ), jQuery( "#mozilla, #google" ) ] ) );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert array of jQuery objects before" );
} );

QUnit.test( "before(Function) -- Returns String", function( assert ) {

	assert.expect( 1 );

	var expected;

	expected = "This is a normal link: bugaYahoo";
	jQuery( "#yahoo" ).before( manipulationFunctionReturningObj( "<b>buga</b>" ) );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert String before" );
} );

QUnit.test( "before(Function) -- Returns Element", function( assert ) {

	assert.expect( 1 );

	var expected;

	expected = "This is a normal link: Try them out:Yahoo";
	jQuery( "#yahoo" ).before( manipulationFunctionReturningObj( document.getElementById( "first" ) ) );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert element before" );
} );

QUnit.test( "before(Function) -- Returns Array<Element>", function( assert ) {

	assert.expect( 1 );

	var expected;
	expected = "This is a normal link: Try them out:mozillaYahoo";
	jQuery( "#yahoo" ).before( manipulationFunctionReturningObj( [ document.getElementById( "first" ), document.getElementById( "mozilla" ) ] ) );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert array of elements before" );
} );

QUnit.test( "before(Function) -- Returns jQuery", function( assert ) {

	assert.expect( 1 );

	var expected;
	expected = "This is a normal link: mozillaTry them out:Yahoo";
	jQuery( "#yahoo" ).before( manipulationFunctionReturningObj( jQuery( "#mozilla, #first" ) ) );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert jQuery before" );
} );

QUnit.test( "before(Function) -- Returns Array<jQuery>", function( assert ) {

	assert.expect( 1 );

	var expected;
	expected = "This is a normal link: Try them out:GooglemozillaYahoo";
	jQuery( "#yahoo" ).before( manipulationFunctionReturningObj( [ jQuery( "#first" ), jQuery( "#mozilla, #google" ) ] ) );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert array of jQuery objects before" );
} );

QUnit.test( "before(no-op)", function( assert ) {

	assert.expect( 2 );

	var set;
	set = jQuery( "<div></div>" ).before( "<span>test</span>" );
	assert.equal( set[ 0 ].nodeName.toLowerCase(), "div", "Insert before a disconnected node should be a no-op" );
	assert.equal( set.length, 1, "Insert the element before the disconnected node. should be a no-op" );
} );

QUnit.test( "before and after w/ empty object (trac-10812)", function( assert ) {

	assert.expect( 1 );

	var res;

	res = jQuery( "#notInTheDocument" ).before( "(" ).after( ")" );
	assert.equal( res.length, 0, "didn't choke on empty object" );
} );

QUnit.test( ".before() and .after() disconnected node", function( assert ) {

	assert.expect( 2 );

	assert.equal( jQuery( "<input type='checkbox'/>" ).before( "<div></div>" ).length, 1, "before() on disconnected node is no-op" );
	assert.equal( jQuery( "<input type='checkbox'/>" ).after( "<div></div>" ).length, 1, "after() on disconnected node is no-op" );
} );

QUnit.test( "insert with .before() on disconnected node last", function( assert ) {

	assert.expect( 1 );

	var expectedBefore = "This is a normal link: bugaYahoo";

	jQuery( "#yahoo" ).add( "<span></span>" ).before( "<b>buga</b>" );
	assert.equal( jQuery( "#en" ).text(), expectedBefore, "Insert String before with disconnected node last" );
} );

QUnit.test( "insert with .before() on disconnected node first", function( assert ) {

	assert.expect( 1 );

	var expectedBefore = "This is a normal link: bugaYahoo";

	jQuery( "<span></span>" ).add( "#yahoo" ).before( "<b>buga</b>" );
	assert.equal( jQuery( "#en" ).text(), expectedBefore, "Insert String before with disconnected node first" );
} );

QUnit.test( "insert with .before() on disconnected node last", function( assert ) {

	assert.expect( 1 );

	var expectedAfter = "This is a normal link: Yahoobuga";

	jQuery( "#yahoo" ).add( "<span></span>" ).after( "<b>buga</b>" );
	assert.equal( jQuery( "#en" ).text(), expectedAfter, "Insert String after with disconnected node last" );
} );

QUnit.test( "insert with .before() on disconnected node last", function( assert ) {

	assert.expect( 1 );

	var expectedAfter = "This is a normal link: Yahoobuga";

	jQuery( "<span></span>" ).add( "#yahoo" ).after( "<b>buga</b>" );
	assert.equal( jQuery( "#en" ).text(), expectedAfter, "Insert String after with disconnected node first" );
} );

QUnit.test( "insertBefore(String)", function( assert ) {

	assert.expect( 1 );

	var expected = "This is a normal link: bugaYahoo";
	jQuery( "<b>buga</b>" ).insertBefore( "#yahoo" );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert String before" );
} );

QUnit.test( "insertBefore(Element)", function( assert ) {

	assert.expect( 1 );

	var expected = "This is a normal link: Try them out:Yahoo";
	jQuery( document.getElementById( "first" ) ).insertBefore( "#yahoo" );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert element before" );
} );

QUnit.test( "insertBefore(Array<Element>)", function( assert ) {

	assert.expect( 1 );

	var expected = "This is a normal link: Try them out:mozillaYahoo";
	jQuery( [ document.getElementById( "first" ), document.getElementById( "mozilla" ) ] ).insertBefore( "#yahoo" );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert array of elements before" );
} );

QUnit.test( "insertBefore(jQuery)", function( assert ) {

	assert.expect( 1 );

	var expected = "This is a normal link: mozillaTry them out:Yahoo";
	jQuery( "#mozilla, #first" ).insertBefore( "#yahoo" );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert jQuery before" );
} );

QUnit.test( ".after(String)", function( assert ) {

	assert.expect( 1 );

	var expected = "This is a normal link: Yahoobuga";
	jQuery( "#yahoo" ).after( "<b>buga</b>" );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert String after" );
} );

QUnit.test( ".after(Element)", function( assert ) {

	assert.expect( 1 );

	var expected = "This is a normal link: YahooTry them out:";
	jQuery( "#yahoo" ).after( document.getElementById( "first" ) );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert element after" );
} );

QUnit.test( ".after(Array<Element>)", function( assert ) {

	assert.expect( 1 );

	var expected = "This is a normal link: YahooTry them out:mozilla";
	jQuery( "#yahoo" ).after( [ document.getElementById( "first" ), document.getElementById( "mozilla" ) ] );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert array of elements after" );
} );

QUnit.test( ".after(jQuery)", function( assert ) {

	assert.expect( 1 );

	var expected = "This is a normal link: YahooTry them out:Googlemozilla";
	jQuery( "#yahoo" ).after( [ jQuery( "#first" ), jQuery( "#mozilla, #google" ) ] );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert array of jQuery objects after" );
} );

QUnit.test( ".after(Function) returns String", function( assert ) {

	assert.expect( 1 );

	var expected = "This is a normal link: Yahoobuga",
		val = manipulationFunctionReturningObj;
	jQuery( "#yahoo" ).after( val( "<b>buga</b>" ) );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert String after" );
} );

QUnit.test( ".after(Function) returns Element", function( assert ) {

	assert.expect( 1 );

	var expected = "This is a normal link: YahooTry them out:",
		val = manipulationFunctionReturningObj;
	jQuery( "#yahoo" ).after( val( document.getElementById( "first" ) ) );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert element after" );
} );

QUnit.test( ".after(Function) returns Array<Element>", function( assert ) {

	assert.expect( 1 );

	var expected = "This is a normal link: YahooTry them out:mozilla",
		val = manipulationFunctionReturningObj;
	jQuery( "#yahoo" ).after( val( [ document.getElementById( "first" ), document.getElementById( "mozilla" ) ] ) );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert array of elements after" );
} );

QUnit.test( ".after(Function) returns jQuery", function( assert ) {

	assert.expect( 1 );

	var expected = "This is a normal link: YahooTry them out:Googlemozilla",
		val = manipulationFunctionReturningObj;
	jQuery( "#yahoo" ).after( val( [ jQuery( "#first" ), jQuery( "#mozilla, #google" ) ] ) );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert array of jQuery objects after" );
} );

QUnit.test( ".after(disconnected node)", function( assert ) {

	assert.expect( 2 );

	var set = jQuery( "<div></div>" ).before( "<span>test</span>" );
	assert.equal( set[ 0 ].nodeName.toLowerCase(), "div", "Insert after a disconnected node should be a no-op" );
	assert.equal( set.length, 1, "Insert the element after the disconnected node should be a no-op" );
} );

QUnit.test( "insertAfter(String)", function( assert ) {

	assert.expect( 1 );

	var expected = "This is a normal link: Yahoobuga";
	jQuery( "<b>buga</b>" ).insertAfter( "#yahoo" );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert String after" );
} );

QUnit.test( "insertAfter(Element)", function( assert ) {

	assert.expect( 1 );

	var expected = "This is a normal link: YahooTry them out:";
	jQuery( document.getElementById( "first" ) ).insertAfter( "#yahoo" );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert element after" );
} );

QUnit.test( "insertAfter(Array<Element>)", function( assert ) {

	assert.expect( 1 );

	var expected = "This is a normal link: YahooTry them out:mozilla";
	jQuery( [ document.getElementById( "first" ), document.getElementById( "mozilla" ) ] ).insertAfter( "#yahoo" );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert array of elements after" );
} );

QUnit.test( "insertAfter(jQuery)", function( assert ) {

	assert.expect( 1 );

	var expected = "This is a normal link: YahoomozillaTry them out:";
	jQuery( "#mozilla, #first" ).insertAfter( "#yahoo" );
	assert.equal( jQuery( "#en" ).text(), expected, "Insert jQuery after" );
} );

function testReplaceWith( val, assert ) {

	var tmp, y, child, child2, set, nonExistent, $div,
		expected = 29;

	assert.expect( expected );

	jQuery( "#yahoo" ).replaceWith( val( "<b id='replace'>buga</b>" ) );
	assert.ok( jQuery( "#replace" )[ 0 ], "Replace element with element from string" );
	assert.ok( !jQuery( "#yahoo" )[ 0 ], "Verify that original element is gone, after string" );

	jQuery( "#anchor2" ).replaceWith( val( document.getElementById( "first" ) ) );
	assert.ok( jQuery( "#first" )[ 0 ], "Replace element with element" );
	assert.ok( !jQuery( "#anchor2" )[ 0 ], "Verify that original element is gone, after element" );

	jQuery( "#qunit-fixture" ).append( "<div id='bar'><div id='baz'></div></div>" );
	jQuery( "#baz" ).replaceWith( val( "Baz" ) );
	assert.equal( jQuery( "#bar" ).text(), "Baz", "Replace element with text" );
	assert.ok( !jQuery( "#baz" )[ 0 ], "Verify that original element is gone, after element" );

	jQuery( "#bar" ).replaceWith( "<div id='yahoo'></div>", "...", "<div id='baz'></div>" );
	assert.deepEqual( jQuery( "#yahoo, #baz" ).get(), q( "yahoo", "baz" ),  "Replace element with multiple arguments (trac-13722)" );
	assert.strictEqual( jQuery( "#yahoo" )[ 0 ].nextSibling, jQuery( "#baz" )[ 0 ].previousSibling, "Argument order preserved" );
	assert.deepEqual( jQuery( "#bar" ).get(), [], "Verify that original element is gone, after multiple arguments" );

	jQuery( "#google" ).replaceWith( val( [ document.getElementById( "first" ), document.getElementById( "mozilla" ) ] ) );
	assert.deepEqual( jQuery( "#mozilla, #first" ).get(), q( "first", "mozilla" ),  "Replace element with array of elements" );
	assert.ok( !jQuery( "#google" )[ 0 ], "Verify that original element is gone, after array of elements" );

	jQuery( "#groups" ).replaceWith( val( jQuery( "#mozilla, #first" ) ) );
	assert.deepEqual( jQuery( "#mozilla, #first" ).get(), q( "first", "mozilla" ),  "Replace element with jQuery collection" );
	assert.ok( !jQuery( "#groups" )[ 0 ], "Verify that original element is gone, after jQuery collection" );

	jQuery( "#mozilla, #first" ).replaceWith( val( "<span class='replacement'></span><span class='replacement'></span>" ) );
	assert.equal( jQuery( "#qunit-fixture .replacement" ).length, 4, "Replace multiple elements (trac-12449)" );
	assert.deepEqual( jQuery( "#mozilla, #first" ).get(), [], "Verify that original elements are gone, after replace multiple" );

	tmp = jQuery( "<b>content</b>" )[ 0 ];
	jQuery( "#anchor1" ).contents().replaceWith( val( tmp ) );
	assert.deepEqual( jQuery( "#anchor1" ).contents().get(), [ tmp ], "Replace text node with element" );

	tmp = jQuery( "<div></div>" ).appendTo( "#qunit-fixture" ).on( "click", function() {
		assert.ok( true, "Newly bound click run." );
	} );
	y = jQuery( "<div></div>" ).appendTo( "#qunit-fixture" ).on( "click", function() {
		assert.ok( false, "Previously bound click run." );
	} );
	child = y.append( "<b>test</b>" ).find( "b" ).on( "click", function() {
		assert.ok( true, "Child bound click run." );
		return false;
	} );

	y.replaceWith( val( tmp ) );

	tmp.trigger( "click" );
	y.trigger( "click" ); // Shouldn't be run
	child.trigger( "click" ); // Shouldn't be run

	y = jQuery( "<div></div>" ).appendTo( "#qunit-fixture" ).on( "click", function() {
		assert.ok( false, "Previously bound click run." );
	} );
	child2 = y.append( "<u>test</u>" ).find( "u" ).on( "click", function() {
		assert.ok( true, "Child 2 bound click run." );
		return false;
	} );

	y.replaceWith( val( child2 ) );

	child2.trigger( "click" );

	set = jQuery( "<div></div>" ).replaceWith( val( "<span>test</span>" ) );
	assert.equal( set[ 0 ].nodeName.toLowerCase(), "div", "No effect on a disconnected node." );
	assert.equal( set.length, 1, "No effect on a disconnected node." );
	assert.equal( set[ 0 ].childNodes.length, 0, "No effect on a disconnected node." );

	child = jQuery( "#qunit-fixture" ).children().first();
	$div = jQuery( "<div class='pathological'></div>" ).insertBefore( child );
	$div.replaceWith( $div );
	assert.deepEqual( jQuery( ".pathological", "#qunit-fixture" ).get(), $div.get(),
		"Self-replacement" );
	$div.replaceWith( child );
	assert.deepEqual( jQuery( "#qunit-fixture" ).children().first().get(), child.get(),
		"Replacement with following sibling (trac-13810)" );
	assert.deepEqual( jQuery( ".pathological", "#qunit-fixture" ).get(), [],
		"Replacement with following sibling (context removed)" );

	nonExistent = jQuery( "#does-not-exist" ).replaceWith( val( "<b>should not throw an error</b>" ) );
	assert.equal( nonExistent.length, 0, "Length of non existent element." );

	$div = jQuery( "<div class='replacewith'></div>" ).appendTo( "#qunit-fixture" );
	$div.replaceWith( val( "<div class='replacewith'></div><script>" +
		"QUnit.assert.equal( jQuery('.replacewith').length, 1, 'Check number of elements in page.' );" +
		"</script>" ) );

	jQuery( "#qunit-fixture" ).append( "<div id='replaceWith'></div>" );
	assert.equal( jQuery( "#qunit-fixture" ).find( "div[id=replaceWith]" ).length, 1, "Make sure only one div exists." );
	jQuery( "#replaceWith" ).replaceWith( val( "<div id='replaceWith'></div>" ) );
	assert.equal( jQuery( "#qunit-fixture" ).find( "div[id=replaceWith]" ).length, 1, "Make sure only one div exists after replacement." );
	jQuery( "#replaceWith" ).replaceWith( val( "<div id='replaceWith'></div>" ) );
	assert.equal( jQuery( "#qunit-fixture" ).find( "div[id=replaceWith]" ).length, 1, "Make sure only one div exists after subsequent replacement." );

	return expected;
}

QUnit.test( "replaceWith(String|Element|Array<Element>|jQuery)", function( assert ) {
	testReplaceWith( manipulationBareObj, assert );
} );

QUnit.test( "replaceWith(Function)", function( assert ) {
	assert.expect( testReplaceWith( manipulationFunctionReturningObj, assert ) + 1 );

	var y = jQuery( "#foo" )[ 0 ];

	jQuery( y ).replaceWith( function() {
		assert.equal( this, y, "Make sure the context is coming in correctly." );
	} );
} );

QUnit.test( "replaceWith(string) for more than one element", function( assert ) {

	assert.expect( 3 );

	assert.equal( jQuery( "#foo p" ).length, 3, "ensuring that test data has not changed" );

	jQuery( "#foo p" ).replaceWith( "<span>bar</span>" );
	assert.equal( jQuery( "#foo span" ).length, 3, "verify that all the three original element have been replaced" );
	assert.equal( jQuery( "#foo p" ).length, 0, "verify that all the three original element have been replaced" );
} );

QUnit.test( "Empty replaceWith (trac-13401; trac-13596; gh-2204)", function( assert ) {

	assert.expect( 25 );

	var $el = jQuery( "<div></div><div></div>" ).html( "<p>0</p>" ),
		expectedHTML = $el.html(),
		tests = {
			"empty string": "",
			"empty array": [],
			"array of empty string": [ "" ],
			"empty collection": jQuery( "#nonexistent" ),

			// in case of jQuery(...).replaceWith();
			"undefined": undefined
		};

	jQuery.each( tests, function( label, input ) {
		$el.html( "<a></a>" ).children().replaceWith( input );
		assert.strictEqual( $el.html(), "", "replaceWith(" + label + ")" );
		$el.html( "<b></b>" ).children().replaceWith( function() {
			return input;
		} );
		assert.strictEqual( $el.html(), "", "replaceWith(function returning " + label + ")" );
		$el.html( "<i></i>" ).children().replaceWith( function() {
			return input;
		} );
		assert.strictEqual( $el.html(), "", "replaceWith(other function returning " + label + ")" );
		$el.html( "<p></p>" ).children().replaceWith( function( i ) {
			return i ?
				input :
				jQuery( this ).html( i + "" );
		} );
		assert.strictEqual( $el.eq( 0 ).html(), expectedHTML,
			"replaceWith(function conditionally returning context)" );
		assert.strictEqual( $el.eq( 1 ).html(), "",
			"replaceWith(function conditionally returning " + label + ")" );
	} );
} );

QUnit.test( "replaceAll(String)", function( assert ) {

	assert.expect( 2 );

	jQuery( "<b id='replace'>buga</b>" ).replaceAll( "#yahoo" );
	assert.ok( jQuery( "#replace" )[ 0 ], "Replace element with string" );
	assert.ok( !jQuery( "#yahoo" )[ 0 ], "Verify that original element is gone, after string" );
} );

QUnit.test( "replaceAll(Element)", function( assert ) {

	assert.expect( 2 );

	jQuery( document.getElementById( "first" ) ).replaceAll( "#yahoo" );
	assert.ok( jQuery( "#first" )[ 0 ], "Replace element with element" );
	assert.ok( !jQuery( "#yahoo" )[ 0 ], "Verify that original element is gone, after element" );
} );

QUnit.test( "replaceAll(Array<Element>)", function( assert ) {

	assert.expect( 3 );

	jQuery( [ document.getElementById( "first" ), document.getElementById( "mozilla" ) ] ).replaceAll( "#yahoo" );
	assert.ok( jQuery( "#first" )[ 0 ], "Replace element with array of elements" );
	assert.ok( jQuery( "#mozilla" )[ 0 ], "Replace element with array of elements" );
	assert.ok( !jQuery( "#yahoo" )[ 0 ], "Verify that original element is gone, after array of elements" );
} );

QUnit.test( "replaceAll(jQuery)", function( assert ) {

	assert.expect( 3 );

	jQuery( "#mozilla, #first" ).replaceAll( "#yahoo" );
	assert.ok( jQuery( "#first" )[ 0 ], "Replace element with set of elements" );
	assert.ok( jQuery( "#mozilla" )[ 0 ], "Replace element with set of elements" );
	assert.ok( !jQuery( "#yahoo" )[ 0 ], "Verify that original element is gone, after set of elements" );
} );

QUnit.test( "jQuery.clone() (trac-8017)", function( assert ) {

	assert.expect( 2 );

	assert.ok( jQuery.clone && typeof jQuery.clone === "function", "jQuery.clone() utility exists and is a function." );

	var main = jQuery( "#qunit-fixture" )[ 0 ],
		clone = jQuery.clone( main );

	assert.equal( main.childNodes.length, clone.childNodes.length, "Simple child length to ensure a large dom tree copies correctly" );
} );

QUnit.test( "append to multiple elements (trac-8070)", function( assert ) {

	assert.expect( 2 );

	var selects = jQuery( "<select class='test8070'></select><select class='test8070'></select>" ).appendTo( "#qunit-fixture" );
	selects.append( "<OPTION>1</OPTION><OPTION>2</OPTION>" );

	assert.equal( selects[ 0 ].childNodes.length, 2, "First select got two nodes" );
	assert.equal( selects[ 1 ].childNodes.length, 2, "Second select got two nodes" );
} );

QUnit.test( "table manipulation", function( assert ) {
	assert.expect( 2 );

	var table = jQuery( "<table style='font-size:16px'></table>" ).appendTo( "#qunit-fixture" ).empty(),
		height = table[ 0 ].offsetHeight;

	table.append( "<tr><td>DATA</td></tr>" );
	assert.ok( table[ 0 ].offsetHeight - height >= 15, "appended rows are visible" );

	table.empty();
	height = table[ 0 ].offsetHeight;
	table.prepend( "<tr><td>DATA</td></tr>" );
	assert.ok( table[ 0 ].offsetHeight - height >= 15, "prepended rows are visible" );
} );

QUnit.test( "clone()", function( assert ) {

	assert.expect( 45 );

	var div, clone, form, body;

	assert.equal( jQuery( "#en" ).text(), "This is a normal link: Yahoo", "Assert text for #en" );
	assert.equal( jQuery( "#first" ).append( jQuery( "#yahoo" ).clone() ).text(), "Try them out:Yahoo", "Check for clone" );
	assert.equal( jQuery( "#en" ).text(), "This is a normal link: Yahoo", "Reassert text for #en" );

	jQuery.each( "table thead tbody tfoot tr td div button ul ol li select option textarea iframe".split( " " ), function( i, nodeName ) {
		assert.equal( jQuery( "<" + nodeName + "/>" ).clone()[ 0 ].nodeName.toLowerCase(), nodeName, "Clone a " + nodeName );
	} );
	assert.equal( jQuery( "<input type='checkbox' />" ).clone()[ 0 ].nodeName.toLowerCase(), "input", "Clone a <input type='checkbox' />" );

	// Check cloning non-elements
	assert.equal( jQuery( "#nonnodes" ).contents().clone().length, 3, "Check node,textnode,comment clone works (some browsers delete comments on clone)" );

	// Verify that clones of clones can keep event listeners
	div = jQuery( "<div><ul><li>test</li></ul></div>" ).on( "click", function() {
		assert.ok( true, "Bound event still exists." );
	} );
	clone = div.clone( true ); div.remove();
	div = clone.clone( true ); clone.remove();

	assert.equal( div.length, 1, "One element cloned" );
	assert.equal( div[ 0 ].nodeName.toUpperCase(), "DIV", "DIV element cloned" );
	div.trigger( "click" );

	// Manually clean up detached elements
	div.remove();

	// Verify that cloned children can keep event listeners
	div = jQuery( "<div></div>" ).append( [ document.createElement( "table" ), document.createElement( "table" ) ] );
	div.find( "table" ).on( "click", function() {
		assert.ok( true, "Bound event still exists." );
	} );

	clone = div.clone( true );
	assert.equal( clone.length, 1, "One element cloned" );
	assert.equal( clone[ 0 ].nodeName.toUpperCase(), "DIV", "DIV element cloned" );
	clone.find( "table" ).trigger( "click" );

	// Manually clean up detached elements
	div.remove();
	clone.remove();

	// Make sure that doing .clone() doesn't clone event listeners
	div = jQuery( "<div><ul><li>test</li></ul></div>" ).on( "click", function() {
		assert.ok( false, "Bound event still exists after .clone()." );
	} );
	clone = div.clone();

	clone.trigger( "click" );

	// Manually clean up detached elements
	clone.remove();
	div.remove();

	// Test both html() and clone() for <embed> and <object> types
	div = jQuery( "<div></div>" ).html( "<embed height='355' width='425' src='https://www.youtube.com/v/3KANI2dpXLw&amp;hl=en'></embed>" );

	clone = div.clone( true );
	assert.equal( clone.length, 1, "One element cloned" );
	assert.equal( clone.html(), div.html(), "Element contents cloned" );
	assert.equal( clone[ 0 ].nodeName.toUpperCase(), "DIV", "DIV element cloned" );

	// this is technically an invalid object, but because of the special
	// classid instantiation it is the only kind that IE has trouble with,
	// so let's test with it too.
	div = jQuery( "<div></div>" ).html( "<object height='355' width='425' classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'>  <param name='movie' value='https://www.youtube.com/v/3KANI2dpXLw&amp;hl=en'>  <param name='wmode' value='transparent'> </object>" );

	clone = div.clone( true );
	assert.equal( clone.length, 1, "One element cloned" );
	assert.equal( clone[ 0 ].nodeName.toUpperCase(), "DIV", "DIV element cloned" );
	div = div.find( "object" );
	clone = clone.find( "object" );

	// oldIE adds extra attributes and <param> elements, so just test for existence of the defined set
	jQuery.each( [ "height", "width", "classid" ], function( i, attr ) {
		assert.equal( clone.attr( attr ), div.attr( attr ), "<object> attribute cloned: " + attr );
	} );
	( function() {
		var params = {};

		clone.find( "param" ).each( function( index, param ) {
			params[ param.attributes.name.nodeValue.toLowerCase() ] =
				param.attributes.value.nodeValue.toLowerCase();
		} );

		div.find( "param" ).each( function( index, param ) {
			var key = param.attributes.name.nodeValue.toLowerCase();
			assert.equal( params[ key ], param.attributes.value.nodeValue.toLowerCase(), "<param> cloned: " + key );
		} );
	} )();

	// and here's a valid one.
	div = jQuery( "<div></div>" ).html( "<object height='355' width='425' type='application/x-shockwave-flash' data='https://www.youtube.com/v/3KANI2dpXLw&amp;hl=en'>  <param name='movie' value='https://www.youtube.com/v/3KANI2dpXLw&amp;hl=en'>  <param name='wmode' value='transparent'> </object>" );

	clone = div.clone( true );
	assert.equal( clone.length, 1, "One element cloned" );
	assert.equal( clone.html(), div.html(), "Element contents cloned" );
	assert.equal( clone[ 0 ].nodeName.toUpperCase(), "DIV", "DIV element cloned" );

	div = jQuery( "<div></div>" ).data( { "a": true } );
	clone = div.clone( true );
	assert.equal( clone.data( "a" ), true, "Data cloned." );
	clone.data( "a", false );
	assert.equal( clone.data( "a" ), false, "Ensure cloned element data object was correctly modified" );
	assert.equal( div.data( "a" ), true, "Ensure cloned element data object is copied, not referenced" );

	// manually clean up detached elements
	div.remove();
	clone.remove();

	form = document.createElement( "form" );
	form.action = "/test/";

	div = document.createElement( "div" );
	div.appendChild( document.createTextNode( "test" ) );
	form.appendChild( div );

	assert.equal( jQuery( form ).clone().children().length, 1, "Make sure we just get the form back." );

	body = jQuery( "body" ).clone();
	assert.equal( body.children()[ 0 ].id, "qunit", "Make sure cloning body works" );
	body.remove();
} );

QUnit.test( "clone(script type=non-javascript) (trac-11359)", function( assert ) {

	assert.expect( 3 );

	var src = jQuery( "<script type='text/filler'>Lorem ipsum dolor sit amet</script><q><script type='text/filler'>consectetur adipiscing elit</script></q>" ),
		dest = src.clone();

	assert.equal( dest[ 0 ].text, "Lorem ipsum dolor sit amet", "Cloning preserves script text" );
	assert.equal( dest.last().html(), src.last().html(), "Cloning preserves nested script text" );
	assert.ok( /^\s*<scr.pt\s+type=['"]?text\/filler['"]?\s*>consectetur adipiscing elit<\/scr.pt>\s*$/i.test( dest.last().html() ), "Cloning preserves nested script text" );
	dest.remove();
} );

QUnit.test( "clone(form element) (Bug trac-3879, trac-6655)", function( assert ) {

	assert.expect( 5 );

	var clone, element;

	element = jQuery( "<select><option>Foo</option><option value='selected' selected>Bar</option></select>" );

	assert.equal( element.clone().find( "option" ).filter( function() {
		return this.selected;
	} ).val(), "selected", "Selected option cloned correctly" );

	element = jQuery( "<input type='checkbox' value='foo'>" ).attr( "checked", "checked" );
	clone = element.clone();

	assert.equal( clone.is( ":checked" ), element.is( ":checked" ), "Checked input cloned correctly" );
	assert.equal( clone[ 0 ].defaultValue, "foo", "Checked input defaultValue cloned correctly" );

	element = jQuery( "<input type='text' value='foo'>" );
	clone = element.clone();
	assert.equal( clone[ 0 ].defaultValue, "foo", "Text input defaultValue cloned correctly" );

	element = jQuery( "<textarea>foo</textarea>" );
	clone = element.clone();
	assert.equal( clone[ 0 ].defaultValue, "foo", "Textarea defaultValue cloned correctly" );
} );

QUnit.test( "clone(multiple selected options) (Bug trac-8129)", function( assert ) {

	assert.expect( 1 );

	var element = jQuery( "<select><option>Foo</option><option selected>Bar</option><option selected>Baz</option></select>" );

	function getSelectedOptions( collection ) {
		return collection.find( "option" ).filter( function( option ) {
			return option.selected;
		} );
	}

	assert.equal(
		getSelectedOptions( element.clone() ).length,
		getSelectedOptions( element ).length,
		"Multiple selected options cloned correctly"
	);
} );

QUnit.test( "clone() on XML nodes", function( assert ) {

	assert.expect( 2 );

	var xml = createDashboardXML(),
		root = jQuery( xml.documentElement ).clone(),
		origTab = jQuery( "tab", xml ).eq( 0 ),
		cloneTab = jQuery( "tab", root ).eq( 0 );

	origTab.text( "origval" );
	cloneTab.text( "cloneval" );
	assert.equal( origTab.text(), "origval", "Check original XML node was correctly set" );
	assert.equal( cloneTab.text(), "cloneval", "Check cloned XML node was correctly set" );
} );

QUnit.test( "clone() on local XML nodes with html5 nodename", function( assert ) {

	assert.expect( 2 );

	var $xmlDoc = jQuery( jQuery.parseXML( "<root><meter /></root>" ) ),
		$meter = $xmlDoc.find( "meter" ).clone();

	assert.equal( $meter[ 0 ].nodeName, "meter", "Check if nodeName was not changed due to cloning" );
	assert.equal( $meter[ 0 ].nodeType, 1, "Check if nodeType is not changed due to cloning" );
} );

QUnit.test( "html(undefined)", function( assert ) {

	assert.expect( 1 );

	assert.equal( jQuery( "#foo" ).html( "<i>test</i>" ).html( undefined ).html().toLowerCase(), "<i>test</i>", ".html(undefined) is chainable (trac-5571)" );
} );

QUnit.test( "html() on empty set", function( assert ) {

	assert.expect( 1 );

	assert.strictEqual( jQuery().html(), undefined, ".html() returns undefined for empty sets (trac-11962)" );
} );

function childNodeNames( node ) {
	return jQuery.map( node.childNodes, function( child ) {
		return child.nodeName.toUpperCase();
	} ).join( " " );
}

function testHtml( valueObj, assert ) {
	assert.expect( 40 );

	var actual, expected, tmp,
		div = jQuery( "<div></div>" ),
		fixture = jQuery( "#qunit-fixture" );

	div.html( valueObj( "<div id='parent_1'><div id='child_1'></div></div><div id='parent_2'></div>" ) );
	assert.equal( div.children().length, 2, "Found children" );
	assert.equal( div.children().children().length, 1, "Found grandchild" );

	actual = []; expected = [];
	tmp = jQuery( "<map></map>" ).html( valueObj( "<area alt='area'></area>" ) ).each( function() {
		expected.push( "AREA" );
		actual.push( childNodeNames( this ) );
	} );
	assert.equal( expected.length, 1, "Expecting one parent" );
	assert.deepEqual( actual, expected, "Found the inserted area element" );

	assert.equal( div.html( valueObj( 5 ) ).html(), "5", "Setting a number as html" );
	assert.equal( div.html( valueObj( 0 ) ).html(), "0", "Setting a zero as html" );
	assert.equal( div.html( valueObj( Infinity ) ).html(), "Infinity", "Setting Infinity as html" );
	assert.equal( div.html( valueObj( NaN ) ).html(), "", "Setting NaN as html" );
	assert.equal( div.html( valueObj( 1e2 ) ).html(), "100", "Setting exponential number notation as html" );

	div.html( valueObj( "&#160;&amp;" ) );
	assert.equal(
		div[ 0 ].innerHTML.replace( /\xA0/, "&nbsp;" ),
		"&nbsp;&amp;",
		"Entities are passed through correctly"
	);

	tmp = "&lt;div&gt;hello1&lt;/div&gt;";
	assert.equal( div.html( valueObj( tmp ) ).html().replace( />/g, "&gt;" ), tmp, "Escaped html" );
	tmp = "x" + tmp;
	assert.equal( div.html( valueObj( tmp ) ).html().replace( />/g, "&gt;" ), tmp, "Escaped html, leading x" );
	tmp = " " + tmp.slice( 1 );
	assert.equal( div.html( valueObj( tmp ) ).html().replace( />/g, "&gt;" ), tmp, "Escaped html, leading space" );

	actual = []; expected = []; tmp = {};
	jQuery( "#nonnodes" ).contents().html( valueObj( "<b>bold</b>" ) ).each( function() {
		var html = jQuery( this ).html();
		tmp[ this.nodeType ] = true;
		expected.push( this.nodeType === 1 ? "<b>bold</b>" : undefined );
		actual.push( html ? html.toLowerCase() : html );
	} );
	assert.deepEqual( actual, expected, "Set containing element, text node, comment" );
	assert.ok( tmp[ 1 ], "element" );
	assert.ok( tmp[ 3 ], "text node" );
	assert.ok( tmp[ 8 ], "comment" );

	actual = []; expected = [];
	fixture.children( "div" ).html( valueObj( "<b>test</b>" ) ).each( function() {
		expected.push( "B" );
		actual.push( childNodeNames( this ) );
	} );
	assert.equal( expected.length, 7, "Expecting many parents" );
	assert.deepEqual( actual, expected, "Correct childNodes after setting HTML" );

	actual = []; expected = [];
	fixture.html( valueObj( "<style>.foobar{color:green;}</style>" ) ).each( function() {
		expected.push( "STYLE" );
		actual.push( childNodeNames( this ) );
	} );
	assert.equal( expected.length, 1, "Expecting one parent" );
	assert.deepEqual( actual, expected, "Found the inserted style element" );

	fixture.html( valueObj( "<select></select>" ) );
	jQuery( "#qunit-fixture select" ).html( valueObj( "<option>O1</option><option selected='selected'>O2</option><option>O3</option>" ) );
	assert.equal( jQuery( "#qunit-fixture select" ).val(), "O2", "Selected option correct" );

	tmp = fixture.html(
		valueObj( [
			"<script type='something/else'>QUnit.assert.ok( false, 'evaluated: non-script' );</script>",
			"<script type='text/javascript'>QUnit.assert.ok( true, 'evaluated: text/javascript' );</script>",
			"<script type='text/ecmascript'>QUnit.assert.ok( true, 'evaluated: text/ecmascript' );</script>",
			"<script>QUnit.assert.ok( true, 'evaluated: no type' );</script>",
			"<div>",
				"<script type='something/else'>QUnit.assert.ok( false, 'evaluated: inner non-script' );</script>",
				"<script type='text/javascript'>QUnit.assert.ok( true, 'evaluated: inner text/javascript' );</script>",
				"<script type='text/ecmascript'>QUnit.assert.ok( true, 'evaluated: inner text/ecmascript' );</script>",
				"<script>QUnit.assert.ok( true, 'evaluated: inner no type' );</script>",
			"</div>"
		].join( "" ) )
	).find( "script" );
	assert.equal( tmp.length, 8, "All script tags remain." );
	assert.equal( tmp[ 0 ].type, "something/else", "Non-evaluated type." );
	assert.equal( tmp[ 1 ].type, "text/javascript", "Evaluated type." );

	fixture.html( valueObj( "<script type='text/javascript'>QUnit.assert.ok( true, 'Injection of identical script' );</script>" ) );
	fixture.html( valueObj( "<script type='text/javascript'>QUnit.assert.ok( true, 'Injection of identical script' );</script>" ) );
	fixture.html( valueObj( "<script type='text/javascript'>QUnit.assert.ok( true, 'Injection of identical script' );</script>" ) );
	fixture.html( valueObj( "foo <form><script type='text/javascript'>QUnit.assert.ok( true, 'Injection of identical script (trac-975)' );</script></form>" ) );

	jQuery.scriptorder = 0;
	fixture.html( valueObj( [
		"<script>",
			"QUnit.assert.equal( jQuery('#scriptorder').length, 1,'Execute after html' );",
			"QUnit.assert.equal( jQuery.scriptorder++, 0, 'Script is executed in order' );",
		"</script>",
		"<span id='scriptorder'><script>QUnit.assert.equal( jQuery.scriptorder++, 1, 'Script (nested) is executed in order');</script></span>",
		"<script>QUnit.assert.equal( jQuery.scriptorder++, 2, 'Script (unnested) is executed in order' );</script>"
	].join( "" ) ) );

	fixture.html( valueObj( fixture.text() ) );
	assert.ok( /^[^<]*[^<\s][^<]*$/.test( fixture.html() ), "Replace html with text" );
}

QUnit.test( "html(String|Number)", function( assert ) {
	testHtml( manipulationBareObj, assert  );
} );

QUnit.test( "html(Function)", function( assert ) {
	testHtml( manipulationFunctionReturningObj, assert  );
} );

// Support: IE 9 - 11+
// IE doesn't support modules.
QUnit.testUnlessIE( "html(script type module)", function( assert ) {
	assert.expect( 4 );
	var done = assert.async(),
		$fixture = jQuery( "#qunit-fixture" );

	$fixture.html(
		[
			"<script type='module'>QUnit.assert.ok( true, 'evaluated: module' );</script>",
			"<script type='module' src='" + url( "module.js" ) + "'></script>",
			"<div>",
				"<script type='module'>QUnit.assert.ok( true, 'evaluated: inner module' );</script>",
				"<script type='module' src='" + url( "inner_module.js" ) + "'></script>",
			"</div>"
		].join( "" )
	);

	// Allow asynchronous script execution to generate assertions
	setTimeout( function() {
		done();
	}, 1000 );
} );

QUnit.test( "html(script nomodule)", function( assert ) {

	// `nomodule` scripts should be executed by legacy browsers only.
	assert.expect( QUnit.isIE ? 4 : 0 );
	var done = assert.async(),
		$fixture = jQuery( "#qunit-fixture" );

	$fixture.html(
		[
			"<script nomodule>QUnit.assert.ok( QUnit.isIE, 'evaluated: nomodule script' );</script>",
			"<script nomodule src='" + url( "nomodule.js" ) + "'></script>",
			"<div>",
				"<script nomodule>QUnit.assert.ok( QUnit.isIE, 'evaluated: inner nomodule script' );</script>",
				"<script nomodule src='" + url( "inner_nomodule.js" ) + "'></script>",
			"</div>"
		].join( "" )
	);

	// Allow asynchronous script execution to generate assertions
	setTimeout( function() {
		done();
	}, 1000 );
} );

QUnit.test( "html(self-removing script) (gh-5377)", function( assert ) {
	assert.expect( 2 );

	var $fixture = jQuery( "#qunit-fixture" );

	$fixture.html(
		[
			"<script id='gh5377-1'>",
				"(function removeScript() {",
					"var id = 'gh5377-1';",
					"var script = document.currentScript || document.getElementById(id);",
					"script.parentNode.removeChild( script );",
					"QUnit.assert.ok( true, 'removed document.currentScript' );",
				"})();",
			"</script>",
			"<div>",
				"<script id='gh5377-2'>",
					"(function removeInnerScript() {",
						"var id = 'gh5377-2';",
						"var innerScript = document.currentScript || document.getElementById(id);",
						"innerScript.parentNode.removeChild( innerScript );",
						"QUnit.assert.ok( true, 'removed inner document.currentScript' );",
					"})();",
				"</script>",
			"</div>"
		].join( "\n" )
	);
} );

QUnit.test( "html(Function) with incoming value -- direct selection", function( assert ) {

	assert.expect( 4 );

	var els, actualhtml, pass;

	els = jQuery( "#foo > p" );
	actualhtml = els.map( function() {
		return jQuery( this ).html();
	} );

	els.html( function( i, val ) {
		assert.equal( val, actualhtml[ i ], "Make sure the incoming value is correct." );
		return "<b>test</b>";
	} );

	pass = true;
	els.each( function() {
		if ( this.childNodes.length !== 1 ) {
			pass = false;
		}
	} );
	assert.ok( pass, "Set HTML" );
} );

QUnit.test( "html(Function) with incoming value -- jQuery.contents()", function( assert ) {

	assert.expect( 14 );

	var actualhtml, j, $div, $div2, insert;

	j = jQuery( "#nonnodes" ).contents();
	actualhtml = j.map( function() {
		return jQuery( this ).html();
	} );

	j.html( function( i, val ) {
		assert.equal( val, actualhtml[ i ], "Make sure the incoming value is correct." );
		return "<b>bold</b>";
	} );

	// Handle the case where no comment is in the document
	if ( j.length === 2 ) {
		assert.equal( null, null, "Make sure the incoming value is correct." );
	}

	assert.equal( j.html().replace( / xmlns="[^"]+"/g, "" ).toLowerCase(), "<b>bold</b>", "Check node,textnode,comment with html()" );

	$div = jQuery( "<div></div>" );

	assert.equal( $div.html( function( i, val ) {
		assert.equal( val, "", "Make sure the incoming value is correct." );
		return 5;
	} ).html(), "5", "Setting a number as html" );

	assert.equal( $div.html( function( i, val ) {
		assert.equal( val, "5", "Make sure the incoming value is correct." );
		return 0;
	} ).html(), "0", "Setting a zero as html" );

	$div2 = jQuery( "<div></div>" );
	insert = "&lt;div&gt;hello1&lt;/div&gt;";
	assert.equal( $div2.html( function( i, val ) {
		assert.equal( val, "", "Make sure the incoming value is correct." );
		return insert;
	} ).html().replace( />/g, "&gt;" ), insert, "Verify escaped insertion." );

	assert.equal( $div2.html( function( i, val ) {
		assert.equal( val.replace( />/g, "&gt;" ), insert, "Make sure the incoming value is correct." );
		return "x" + insert;
	} ).html().replace( />/g, "&gt;" ), "x" + insert, "Verify escaped insertion." );

	assert.equal( $div2.html( function( i, val ) {
		assert.equal( val.replace( />/g, "&gt;" ), "x" + insert, "Make sure the incoming value is correct." );
		return " " + insert;
	} ).html().replace( />/g, "&gt;" ), " " + insert, "Verify escaped insertion." );
} );

QUnit.test( "clone()/html() don't expose jQuery/Sizzle expandos (trac-12858)", function( assert ) {

	assert.expect( 2 );

	var $content = jQuery( "<div><b><i>text</i></b></div>" ).appendTo( "#qunit-fixture" ),
		expected = /^<b><i>text<\/i><\/b>$/i;

	// Attach jQuery and Sizzle data (the latter with a non-qSA nth-child)
	try {
		$content.find( ":nth-child(1):lt(4)" ).data( "test", true );

	// But don't break on a non-Sizzle build
	} catch ( e ) {
		$content.find( "*" ).data( "test", true );
	}

	assert.ok( expected.test( $content.clone( false )[ 0 ].innerHTML ), "clone()" );
	assert.ok( expected.test( $content.html() ), "html()" );
} );

QUnit.test( "remove() no filters", function( assert ) {

	assert.expect( 2 );

	var first = jQuery( "#ap" ).children().first();

	first.data( "foo", "bar" );

	jQuery( "#ap" ).children().remove();
	assert.ok( jQuery( "#ap" ).text().length > 10, "Check text is not removed" );
	assert.equal( jQuery( "#ap" ).children().length, 0, "Check remove" );
} );

QUnit.test( "remove() with filters", function( assert ) {

	assert.expect( 8 );

	var markup, div;
	jQuery( "#ap" ).children().remove( "a" );
	assert.ok( jQuery( "#ap" ).text().length > 10, "Check text is not removed" );
	assert.equal( jQuery( "#ap" ).children().length, 1, "Check filtered remove" );

	jQuery( "#ap" ).children().remove( "a, code" );
	assert.equal( jQuery( "#ap" ).children().length, 0, "Check multi-filtered remove" );

	// Positional and relative selectors
	markup = "<div><span>1</span><span>2</span><span>3</span><span>4</span></div>";
	div = jQuery( markup );
	div.children().remove( "span:nth-child(2n)" );
	assert.equal( div.text(), "13", "relative selector in remove" );

	if ( QUnit.jQuerySelectorsPos ) {
		div = jQuery( markup );
		div.children().remove( "span:first" );
		assert.equal( div.text(), "234", "positional selector in remove" );
		div = jQuery( markup );
		div.children().remove( "span:last" );
		assert.equal( div.text(), "123", "positional selector in remove" );
	} else {
		assert.ok( "skip", "Positional selectors are not supported" );
		assert.ok( "skip", "Positional selectors are not supported" );
	}

	// using contents will get comments regular, text, and comment nodes
	// Handle the case where no comment is in the document
	assert.ok( jQuery( "#nonnodes" ).contents().length >= 2, "Check node,textnode,comment remove works" );
	jQuery( "#nonnodes" ).contents().remove();
	assert.equal( jQuery( "#nonnodes" ).contents().length, 0, "Check node,textnode,comment remove works" );
} );

QUnit.test( "remove() event cleaning ", function( assert ) {
	assert.expect( 1 );

	var count, first, cleanUp;

	count = 0;
	first = jQuery( "#ap" ).children().first();
	cleanUp = first.on( "click", function() {
		count++;
	} ).remove().appendTo( "#qunit-fixture" ).trigger( "click" );

	assert.strictEqual( 0, count, "Event handler has been removed" );

	// Clean up detached data
	cleanUp.remove();
} );

QUnit.test( "remove() in document order trac-13779", function( assert ) {
	assert.expect( 1 );

	var last,
		cleanData = jQuery.cleanData;

	jQuery.cleanData = function( nodes ) {
		last = jQuery.text( nodes[ 0 ] );
		cleanData.call( this, nodes );
	};

	jQuery( "#qunit-fixture" ).append(
		jQuery.parseHTML(
			"<div class='removal-fixture'>1</div>" +
			"<div class='removal-fixture'>2</div>" +
			"<div class='removal-fixture'>3</div>"
		)
	);

	jQuery( ".removal-fixture" ).remove();

	assert.equal( last, 3, "The removal fixtures were removed in document order" );

	jQuery.cleanData = cleanData;
} );

QUnit.test( "detach() no filters", function( assert ) {

	assert.expect( 3 );

	var first = jQuery( "#ap" ).children().first();

	first.data( "foo", "bar" );

	jQuery( "#ap" ).children().detach();
	assert.ok( jQuery( "#ap" ).text().length > 10, "Check text is not removed" );
	assert.equal( jQuery( "#ap" ).children().length, 0, "Check remove" );

	assert.equal( first.data( "foo" ), "bar" );
	first.remove();

} );

QUnit.test( "detach() with filters", function( assert ) {

	assert.expect( 8 );

	var markup, div;
	jQuery( "#ap" ).children().detach( "a" );
	assert.ok( jQuery( "#ap" ).text().length > 10, "Check text is not removed" );
	assert.equal( jQuery( "#ap" ).children().length, 1, "Check filtered remove" );

	jQuery( "#ap" ).children().detach( "a, code" );
	assert.equal( jQuery( "#ap" ).children().length, 0, "Check multi-filtered remove" );

	// Positional and relative selectors
	markup = "<div><span>1</span><span>2</span><span>3</span><span>4</span></div>";
	div = jQuery( markup );
	div.children().detach( "span:nth-child(2n)" );
	assert.equal( div.text(), "13", "relative selector in detach" );

	if ( QUnit.jQuerySelectorsPos ) {
		div = jQuery( markup );
		div.children().detach( "span:first" );
		assert.equal( div.text(), "234", "positional selector in detach" );
		div = jQuery( markup );
		div.children().detach( "span:last" );
		assert.equal( div.text(), "123", "positional selector in detach" );
	} else {
		assert.ok( "skip", "Positional selectors are not supported" );
		assert.ok( "skip", "Positional selectors are not supported" );
	}

	// using contents will get comments regular, text, and comment nodes
	// Handle the case where no comment is in the document
	assert.ok( jQuery( "#nonnodes" ).contents().length >= 2, "Check node,textnode,comment remove works" );
	jQuery( "#nonnodes" ).contents().detach();
	assert.equal( jQuery( "#nonnodes" ).contents().length, 0, "Check node,textnode,comment remove works" );
} );

QUnit.test( "detach() event cleaning ", function( assert ) {
	assert.expect( 1 );

	var count, first, cleanUp;

	count = 0;
	first = jQuery( "#ap" ).children().first();
	cleanUp = first.on( "click", function() {
		count++;
	} ).detach().appendTo( "#qunit-fixture" ).trigger( "click" );

	assert.strictEqual( 1, count, "Event handler has not been removed" );

	// Clean up detached data
	cleanUp.remove();
} );

QUnit.test( "empty()", function( assert ) {

	assert.expect( 3 );

	assert.equal( jQuery( "#ap" ).children().empty().text().length, 0, "Check text is removed" );
	assert.equal( jQuery( "#ap" ).children().length, 4, "Check elements are not removed" );

	// using contents will get comments regular, text, and comment nodes
	var j = jQuery( "#nonnodes" ).contents();
	j.empty();
	assert.equal( j.html(), "", "Check node,textnode,comment empty works" );
} );

QUnit.test( "jQuery.cleanData", function( assert ) {

	assert.expect( 14 );

	var type, pos, div, child;

	type = "remove";

	// Should trigger 4 remove event
	div = getDiv().remove();

	// Should both do nothing
	pos = "Outer";
	div.trigger( "click" );

	pos = "Inner";
	div.children().trigger( "click" );

	type = "empty";
	div = getDiv();
	child = div.children();

	// Should trigger 2 remove event
	div.empty();

	// Should trigger 1
	pos = "Outer";
	div.trigger( "click" );

	// Should do nothing
	pos = "Inner";
	child.trigger( "click" );

	// Should trigger 2
	div.remove();

	type = "html";

	div = getDiv();
	child = div.children();

	// Should trigger 2 remove event
	div.html( "<div></div>" );

	// Should trigger 1
	pos = "Outer";
	div.trigger( "click" );

	// Should do nothing
	pos = "Inner";
	child.trigger( "click" );

	// Should trigger 2
	div.remove();

	function getDiv() {
		var div = jQuery( "<div class='outer'><div class='inner'></div></div>" ).on( "click", function() {
			assert.ok( true, type + " " + pos + " Click event fired." );
		} ).on( "focus", function() {
			assert.ok( true, type + " " + pos + " Focus event fired." );
		} ).find( "div" ).on( "click", function() {
			assert.ok( false, type + " " + pos + " Click event fired." );
		} ).on( "focus", function() {
			assert.ok( false, type + " " + pos + " Focus event fired." );
		} ).end().appendTo( "body" );

		div[ 0 ].detachEvent = div[ 0 ].removeEventListener = function( t ) {
			assert.ok( true, type + " Outer " + t + " event unbound" );
		};

		div[ 0 ].firstChild.detachEvent = div[ 0 ].firstChild.removeEventListener = function( t ) {
			assert.ok( true, type + " Inner " + t + " event unbound" );
		};

		return div;
	}
} );

QUnit.test( "jQuery.cleanData eliminates all private data (gh-2127)", function( assert ) {
	assert.expect( 3 );

	var div = jQuery( "<div></div>" ).appendTo( "#qunit-fixture" );

	jQuery._data( div[ 0 ], "gh-2127", "testing" );

	assert.ok( !jQuery.isEmptyObject( jQuery._data( div[ 0 ] ) ),  "Ensure some private data exists" );

	div.remove();

	assert.ok( !jQuery.hasData( div[ 0 ] ), "Removed element hasData should return false" );

	assert.ok( jQuery.isEmptyObject( jQuery._data( div[ 0 ] ) ),
		"Private data is empty after node is removed" );

	div.remove();
} );

QUnit.test( "jQuery.cleanData eliminates all public data", function( assert ) {
	assert.expect( 3 );

	var key,
		div = jQuery( "<div></div>" );
	div.data( "some", "data" );
	assert.ok( !jQuery.isEmptyObject( jQuery.data( div[ 0 ] ) ),  "Ensure some public data exists" );

	div.remove();

	assert.ok( !jQuery.hasData( div[ 0 ] ), "Removed element hasData should return false" );

	// Make sure the expando is gone
	for ( key in div[ 0 ] ) {
		if ( /^jQuery/.test( key ) ) {
			assert.strictEqual( div[ 0 ][ key ], undefined, "Expando was not removed when there was no more data" );
		}
	}
} );

QUnit.test( "domManip plain-text caching (trac-6779)", function( assert ) {

	assert.expect( 1 );

	// DOM manipulation fails if added text matches an Object method
	var i,
		$f = jQuery( "<div></div>" ).appendTo( "#qunit-fixture" ),
		bad = [ "start-", "toString", "hasOwnProperty", "append", "here&there!", "-end" ];

	for ( i = 0; i < bad.length; i++ ) {
		try {
			$f.append( bad[ i ] );
		} catch ( e ) {}
	}
	assert.equal( $f.text(), bad.join( "" ), "Cached strings that match Object properties" );
	$f.remove();
} );

QUnit.test( "domManip executes scripts containing html comments or CDATA (trac-9221)", function( assert ) {

	assert.expect( 3 );

	jQuery( [
		"<script type='text/javascript'>",
		"<!--",
		"QUnit.assert.ok( true, '<!-- handled' );",
		"//-->",
		"</script>"
	].join( "\n" ) ).appendTo( "#qunit-fixture" );

	// This test requires XHTML mode as CDATA is not recognized in HTML.
	// jQuery( [
	// 	"<script type='text/javascript'>",
	// 	"<![CDATA[",
	// 	"QUnit.assert.ok( true, '<![CDATA[ handled' );",
	// 	"//]]>",
	// 	"</script>"
	// ].join( "\n" ) ).appendTo( "#qunit-fixture" );

	jQuery( [
		"<script type='text/javascript'>",
		"<!--//--><![CDATA[//><!--",
		"QUnit.assert.ok( true, '<!--//--><![CDATA[//><!-- (Drupal case) handled' );",
		"//--><!]]>",
		"</script>"
	].join( "\n" ) ).appendTo( "#qunit-fixture" );

	// ES2015 in Annex B requires HTML-style comment delimiters (`<!--` & `-->`) to act as
	// single-line comment delimiters; i.e. they should be treated as `//`.
	// See gh-4904
	jQuery( [
		"<script type='text/javascript'>",
		"<!-- Same-line HTML comment",
		"QUnit.assert.ok( true, '<!-- Same-line HTML comment' );",
		"-->",
		"</script>"
	].join( "\n" ) ).appendTo( "#qunit-fixture" );
} );

testIframe(
	"domManip tolerates window-valued document[0] in IE9/10 (trac-12266)",
	"manipulation/iframe-denied.html",
	function( assert, jQuery, window, document, test ) {
		assert.expect( 1 );
		assert.ok( test.status, test.description );
	}
);

testIframe(
	"domManip executes scripts in iframes in the iframes' context",
	"manipulation/scripts-context.html",
	function( assert, framejQuery, frameWindow, frameDocument ) {
		assert.expect( 2 );
		jQuery( frameDocument.body ).append( "<script>window.scriptTest = true;<\x2fscript>" );
		assert.ok( !window.scriptTest, "script executed in iframe context" );
		assert.ok( frameWindow.scriptTest, "script executed in iframe context" );
	}
);

testIframe(
	"domManip executes external scripts in iframes in the iframes' context",
	"manipulation/scripts-context.html",
	function( assert, framejQuery, frameWindow, frameDocument ) {
		assert.expect( 2 );

		Globals.register( "finishTest" );

		return new Promise( function( resolve ) {
			window.finishTest = resolve;
			jQuery( frameDocument.body ).append(
				"<script src='" + url( "manipulation/set-global-scripttest.js" ) + "'></script>" );
			assert.ok( !window.scriptTest, "script executed in iframe context" );
			assert.ok( frameWindow.scriptTest, "script executed in iframe context" );
		} );
	},

	// The AJAX module is needed for jQuery._evalUrl.
	QUnit[ includesModule( "ajax" ) ? "test" : "skip" ]
);


// We need to simulate cross-domain requests with the feature that
// both 127.0.0.1 and localhost point to the mock http server.
// Skip the the test if we are not in localhost but make sure we run
// it in Karma.
QUnit[
	includesModule( "ajax" ) && location.hostname === "localhost" ?
		"test" :
		"skip"
]( "jQuery.append with crossorigin attribute", function( assert ) {
	assert.expect( 1 );

	var done = assert.async(),
		timeout;

	Globals.register( "corsCallback" );
	window.corsCallback = function( response ) {
		assert.ok( typeof response.headers.origin === "string", "Origin header sent" );
		window.clearTimeout( timeout );
		done();
	};

	var src = baseURL + "mock.php?action=script&cors=1&callback=corsCallback";
	src = src.replace( "localhost", "127.0.0.1" );
	var html = "<script type=\"text/javascript\" src=\"" + src + "\" crossorigin=\"anonymous\"><\/script>";

	jQuery( document.body ).append( html );
	timeout = window.setTimeout( function() {
		assert.ok( false, "Origin header should have been sent" );
		done();
	}, 2000 );
} );

QUnit.test( "jQuery.clone - no exceptions for object elements trac-9587", function( assert ) {

	assert.expect( 1 );

	try {
		jQuery( "#no-clone-exception" ).clone();
		assert.ok( true, "cloned with no exceptions" );
	} catch ( e ) {
		assert.ok( false, e.message );
	}
} );

QUnit.test( "Cloned, detached HTML5 elems (trac-10667, trac-10670)", function( assert ) {

	assert.expect( 7 );

	var $clone,
		$section = jQuery( "<section>" ).appendTo( "#qunit-fixture" );

	// First clone
	$clone = $section.clone();

	// This branch tests a known behavior in modern browsers that should never fail.
	// Included for expected test count symmetry (expecting 1)
	assert.equal( $clone[ 0 ].nodeName, "SECTION", "detached clone nodeName matches 'SECTION'" );

	// Bind an event
	$section.on( "click", function() {
		assert.ok( true, "clone fired event" );
	} );

	// Second clone (will have an event bound)
	$clone = $section.clone( true );

	// Trigger an event from the first clone
	$clone.trigger( "click" );
	$clone.off( "click" );

	// Add a child node with text to the original
	$section.append( "<p>Hello</p>" );

	// Third clone (will have child node and text)
	$clone = $section.clone( true );

	assert.equal( $clone.find( "p" ).text(), "Hello", "Assert text in child of clone" );

	// Trigger an event from the third clone
	$clone.trigger( "click" );
	$clone.off( "click" );

	// Add attributes to copy
	$section.attr( {
		"class": "foo bar baz",
		"title": "This is a title"
	} );

	// Fourth clone (will have newly added attributes)
	$clone = $section.clone( true );

	assert.equal( $clone.attr( "class" ), $section.attr( "class" ), "clone and element have same class attribute" );
	assert.equal( $clone.attr( "title" ), $section.attr( "title" ), "clone and element have same title attribute" );

	// Remove the original
	$section.remove();

	// Clone the clone
	$section = $clone.clone( true );

	// Remove the clone
	$clone.remove();

	// Trigger an event from the clone of the clone
	$section.trigger( "click" );

	// Unbind any remaining events
	$section.off( "click" );
	$clone.off( "click" );
} );

QUnit.test( "Guard against exceptions when clearing safeChildNodes", function( assert ) {

	assert.expect( 1 );

	var div;

	try {
		div = jQuery( "<div></div><hr/><code></code><b></b>" );
	} catch ( e ) {}

	assert.ok( div && div.jquery, "Created nodes safely, guarded against exceptions on safeChildNodes[ -1 ]" );
} );

QUnit.test( "Ensure oldIE creates a new set on appendTo (trac-8894)", function( assert ) {

	assert.expect( 5 );

	assert.strictEqual( jQuery( "<div></div>" ).clone().addClass( "test" ).appendTo( "<div></div>" ).end().end().hasClass( "test" ), false, "Check jQuery.fn.appendTo after jQuery.clone" );
	assert.strictEqual( jQuery( "<div></div>" ).find( "p" ).end().addClass( "test" ).appendTo( "<div></div>" ).end().end().hasClass( "test" ), false, "Check jQuery.fn.appendTo after jQuery.fn.find" );
	assert.strictEqual( jQuery( "<div></div>" ).text( "test" ).addClass( "test" ).appendTo( "<div></div>" ).end().end().hasClass( "test" ), false, "Check jQuery.fn.appendTo after jQuery.fn.text" );
	assert.strictEqual( jQuery( "<bdi></bdi>" ).clone().addClass( "test" ).appendTo( "<div></div>" ).end().end().hasClass( "test" ), false, "Check jQuery.fn.appendTo after clone html5 element" );
	assert.strictEqual( jQuery( "<p></p>" ).appendTo( "<div></div>" ).end().length, jQuery( "<p>test</p>" ).appendTo( "<div></div>" ).end().length, "Elements created with createElement and with createDocumentFragment should be treated alike" );
} );

QUnit.test( "html() - script exceptions bubble (trac-11743)", function( assert ) {
	assert.expect( 2 );
	var done = assert.async(),
		onerror = window.onerror;

	setTimeout( function() {
		window.onerror = onerror;

		done();
	}, 1000 );

	window.onerror = function() {
		assert.ok( true, "Exception thrown" );

		if ( includesModule( "ajax" ) ) {
			window.onerror = function() {
				assert.ok( true, "Exception thrown in remote script" );
			};

			jQuery( "#qunit-fixture" ).html( "<script src='" + baseURL + "badcall.js'></script>" );
			assert.ok( true, "Exception ignored" );
		} else {
			assert.ok( true, "No jQuery.ajax" );
		}
	};

	jQuery( "#qunit-fixture" ).html( "<script>undefined();</script>" );
} );

QUnit.test( "checked state is cloned with clone()", function( assert ) {

	assert.expect( 2 );

	var elem = jQuery.parseHTML( "<input type='checkbox' checked='checked'/>" )[ 0 ];
	elem.checked = false;
	assert.equal( jQuery( elem ).clone().attr( "id", "clone" )[ 0 ].checked, false, "Checked false state correctly cloned" );

	elem = jQuery.parseHTML( "<input type='checkbox'/>" )[ 0 ];
	elem.checked = true;
	assert.equal( jQuery( elem ).clone().attr( "id", "clone" )[ 0 ].checked, true, "Checked true state correctly cloned" );
} );

QUnit.test( "manipulate mixed jQuery and text (trac-12384, trac-12346)", function( assert ) {

	assert.expect( 2 );

	var div = jQuery( "<div>a</div>" ).append( "&nbsp;", jQuery( "<span>b</span>" ), "&nbsp;", jQuery( "<span>c</span>" ) ),
		nbsp = String.fromCharCode( 160 );

	assert.equal( div.text(), "a" + nbsp + "b" + nbsp + "c", "Appending mixed jQuery with text nodes" );

	div = jQuery( "<div><div></div></div>" )
		.find( "div" )
		.after( "<p>a</p>", "<p>b</p>" )
		.parent();
	assert.equal( div.find( "*" ).length, 3, "added 2 paragraphs after inner div" );
} );

QUnit.test( "script evaluation (trac-11795)", function( assert ) {

	assert.expect( 13 );

	var scriptsIn, scriptsOut,
		fixture = jQuery( "#qunit-fixture" ).empty(),
		objGlobal = ( function() {
			return this;
		} )(),
		isOk = objGlobal.ok,
		notOk = function() {
			var args = arguments;
			args[ 0 ] = !args[ 0 ];
			return isOk.apply( this, args );
		};

	objGlobal.ok = notOk;
	scriptsIn = jQuery( [
		"<script type='something/else'>QUnit.assert.ok( false, 'evaluated: non-script' );</script>",
		"<script type='text/javascript'>QUnit.assert.ok( true, 'evaluated: text/javascript' );</script>",
		"<script type='text/ecmascript'>QUnit.assert.ok( true, 'evaluated: text/ecmascript' );</script>",
		"<script>QUnit.assert.ok( true, 'evaluated: no type' );</script>",
		"<div>",
			"<script type='something/else'>QUnit.assert.ok( false, 'evaluated: inner non-script' );</script>",
			"<script type='text/javascript'>QUnit.assert.ok( true, 'evaluated: inner text/javascript' );</script>",
			"<script type='text/ecmascript'>QUnit.assert.ok( true, 'evaluated: inner text/ecmascript' );</script>",
			"<script>QUnit.assert.ok( true, 'evaluated: inner no type' );</script>",
		"</div>"
	].join( "" ) );
	scriptsIn.appendTo( jQuery( "<div class='detached'></div>" ) );
	objGlobal.ok = isOk;

	scriptsOut = fixture.append( scriptsIn ).find( "script" );
	assert.equal( scriptsOut[ 0 ].type, "something/else", "Non-evaluated type." );
	assert.equal( scriptsOut[ 1 ].type, "text/javascript", "Evaluated type." );
	assert.deepEqual( scriptsOut.get(), fixture.find( "script" ).get(), "All script tags remain." );

	objGlobal.ok = notOk;
	scriptsOut = scriptsOut.add( scriptsOut.clone() ).appendTo( fixture.find( "div" ) );
	assert.deepEqual( fixture.find( "div script" ).get(), scriptsOut.get(), "Scripts cloned without reevaluation" );
	fixture.append( scriptsOut.detach() );
	assert.deepEqual( fixture.children( "script" ).get(), scriptsOut.get(), "Scripts detached without reevaluation" );
	objGlobal.ok = isOk;

	if ( includesModule( "ajax" ) ) {
		Globals.register( "testBar" );
		jQuery( "#qunit-fixture" ).append( "<script src='" + url( "mock.php?action=testbar" ) + "'></script>" );
		assert.strictEqual( window.testBar, "bar", "Global script evaluation" );
	} else {
		assert.ok( true, "No jQuery.ajax" );
		assert.ok( true, "No jQuery.ajax" );
	}
} );

QUnit[ includesModule( "ajax" ) ? "test" : "skip" ]( "jQuery._evalUrl (trac-12838)", function( assert ) {

	assert.expect( 5 );

	var message, expectedArgument,
		ajax = jQuery.ajax,
		evalUrl = jQuery._evalUrl;

	message = "jQuery.ajax implementation";
	expectedArgument = 1;
	jQuery.ajax = function( input ) {
		assert.equal( ( input.url || input ).slice( -1 ), expectedArgument, message );
		expectedArgument++;
	};
	jQuery( "#qunit-fixture" ).append( "<script src='1'></script><script src='2'></script>" );
	assert.equal( expectedArgument, 3, "synchronous execution" );

	message = "custom implementation";
	expectedArgument = 3;
	jQuery._evalUrl = jQuery.ajax;
	jQuery.ajax = function( options ) {
		assert.strictEqual( options, {}, "Unexpected call to jQuery.ajax" );
	};
	jQuery( "#qunit-fixture" ).append( "<script src='3'></script><script src='4'></script>" );

	jQuery.ajax = ajax;
	jQuery._evalUrl = evalUrl;
} );

QUnit.test( "jQuery.htmlPrefilter (gh-1747)", function( assert ) {

	assert.expect( 5 );

	var expectedArgument,
		invocations = 0,
		done = assert.async(),
		htmlPrefilter = jQuery.htmlPrefilter,
		fixture = jQuery( "<div></div>" ).appendTo( "#qunit-fixture" ),
		poison = "<script>jQuery.htmlPrefilter.assert.ok( false, 'script not executed' );</script>";

	jQuery.htmlPrefilter = function( html ) {
		invocations++;
		assert.equal( html, expectedArgument, "Expected input" );

		// Remove <script> and <del> elements
		return htmlPrefilter.apply( this, arguments )
			.replace( /<(script|del)(?=[\s>])[\w\W]*?<\/\1\s*>/ig, "" );
	};
	jQuery.htmlPrefilter.assert = assert;

	expectedArgument = "A-" + poison + "B-" + poison + poison + "C-";
	fixture.html( expectedArgument );

	expectedArgument = "D-" + poison + "E-" + "<del></del><div>" + poison + poison + "</div>" + "F-";
	fixture.append( expectedArgument );

	expectedArgument = poison;
	fixture.find( "div" ).replaceWith( expectedArgument );

	assert.equal( invocations, 3, "htmlPrefilter invoked for all DOM manipulations" );
	assert.equal( fixture.html(), "A-B-C-D-E-F-", "htmlPrefilter modified HTML" );

	// Allow asynchronous script execution to generate assertions
	setTimeout( function() {
		jQuery.htmlPrefilter = htmlPrefilter;
		done();
	}, 100 );
} );

QUnit.test( "insertAfter, insertBefore, etc do not work when destination is original element. Element is removed (trac-4087)", function( assert ) {

	assert.expect( 10 );

	jQuery.each( [
		"appendTo",
		"prependTo",
		"insertBefore",
		"insertAfter",
		"replaceAll"
	], function( index, name ) {
		jQuery( [
			"<ul id='test4087-complex'><li class='test4087'><div>c1</div>h1</li><li><div>c2</div>h2</li></ul>",
			"<div id='test4087-simple'><div class='test4087-1'>1<div class='test4087-2'>2</div><div class='test4087-3'>3</div></div></div>",
			"<div id='test4087-multiple'><div class='test4087-multiple'>1</div><div class='test4087-multiple'>2</div></div>"
		].join( "" ) ).appendTo( "#qunit-fixture" );

		// complex case based on https://jsfiddle.net/pbramos/gZ7vB/
		jQuery( "#test4087-complex div" )[ name ]( "#test4087-complex li:last-child div:last-child" );
		assert.equal( jQuery( "#test4087-complex li:last-child div" ).length, name === "replaceAll" ? 1 : 2, name + " a node to itself, complex case." );

		// simple case
		jQuery( ".test4087-1" )[ name ]( ".test4087-1" );
		assert.equal( jQuery( ".test4087-1" ).length, 1, name + " a node to itself, simple case." );

		// clean for next test
		jQuery( "#test4087-complex" ).remove();
		jQuery( "#test4087-simple" ).remove();
		jQuery( "#test4087-multiple" ).remove();
	} );
} );

QUnit.test( "Index for function argument should be received (trac-13094)", function( assert ) {
	assert.expect( 2 );

	var i = 0;

	jQuery( "<div></div><div></div>" ).before( function( index ) {
		assert.equal( index, i++, "Index should be correct" );
	} );

} );

QUnit.test( "Make sure jQuery.fn.remove can work on elements in documentFragment", function( assert ) {
	assert.expect( 1 );

	var fragment = document.createDocumentFragment(),
		div = fragment.appendChild( document.createElement( "div" ) );

	jQuery( div ).remove();

	assert.equal( fragment.childNodes.length, 0, "div element was removed from documentFragment" );
} );

QUnit.test( "Make sure specific elements with content created correctly (trac-13232)", function( assert ) {
	assert.expect( 20 );

	var results = [],
		args = [],
		elems = {
			thead: "<tr><td>thead</td></tr>",
			tbody: "<tr><td>tbody</td></tr>",
			tfoot: "<tr><td>tfoot</td></tr>",
			colgroup: "<col span='5'></col>",
			caption: "caption",
			tr: "<td>tr</td>",
			th: "th",
			td: "<div>td</div>",
			optgroup: "<option>optgroup</option>",
			option: "option"
		};

	jQuery.each( elems, function( name, value ) {
		var html = "<" + name + ">" + value + "</" + name + ">";
		assert.strictEqual(
			jQuery.parseHTML( "<" + name + ">" + value + "</" + name + ">" )[ 0 ].nodeName.toLowerCase(),
			name,
			name + " is created correctly"
		);

		results.push( name );
		args.push( html );
	} );

	jQuery.fn.append.apply( jQuery( "<div></div>" ), args ).children().each( function( i ) {
		assert.strictEqual( this.nodeName.toLowerCase(), results[ i ] );
	} );
} );

QUnit.test( "Validate creation of multiple quantities of certain elements (trac-13818)", function( assert ) {
	assert.expect( 22 );

	var tags = [ "thead", "tbody", "tfoot", "colgroup", "col", "caption", "tr", "th", "td", "optgroup", "option" ];

	jQuery.each( tags, function( index, tag ) {
		jQuery( "<" + tag + "></" + tag + "><" + tag + "></" + tag + ">" ).each( function() {
			assert.ok( this.nodeName.toLowerCase() === tag, tag + " elements created correctly" );
		} );
	} );
} );

QUnit.test( "Make sure tr element will be appended to tbody element of table when present", function( assert ) {
	assert.expect( 1 );

	var html,
		table = document.createElement( "table" );

	table.appendChild( document.createElement( "tbody" ) );
	document.getElementById( "qunit-fixture" ).appendChild( table );

	jQuery( table ).append( "<tr><td>test</td></tr>" );

	// Lowercase and replace spaces to remove possible browser inconsistencies
	html = table.innerHTML.toLowerCase().replace( /\s/g, "" );

	assert.strictEqual( html, "<tbody><tr><td>test</td></tr></tbody>" );
} );

QUnit.test( "Make sure tr elements will be appended to tbody element of table when present", function( assert ) {
	assert.expect( 1 );

	var html,
		table = document.createElement( "table" );

	table.appendChild( document.createElement( "tbody" ) );
	document.getElementById( "qunit-fixture" ).appendChild( table );

	jQuery( table ).append( "<tr><td>1</td></tr><tr><td>2</td></tr>" );

	// Lowercase and replace spaces to remove possible browser inconsistencies
	html = table.innerHTML.toLowerCase().replace( /\s/g, "" );

	assert.strictEqual( html, "<tbody><tr><td>1</td></tr><tr><td>2</td></tr></tbody>" );
} );

QUnit.test( "Make sure tfoot element will not be appended to tbody element of table when present", function( assert ) {
	assert.expect( 1 );

	var html,
		table = document.createElement( "table" );

	table.appendChild( document.createElement( "tbody" ) );
	document.getElementById( "qunit-fixture" ).appendChild( table );

	jQuery( table ).append( "<tfoot></tfoot>" );

	// Lowercase and replace spaces to remove possible browser inconsistencies
	html = table.innerHTML.toLowerCase().replace( /\s/g, "" );

	assert.strictEqual( html, "<tbody></tbody><tfoot></tfoot>" );
} );

QUnit.test( "Make sure document fragment will be appended to tbody element of table when present", function( assert ) {
	assert.expect( 1 );

	var html,
		fragment = document.createDocumentFragment(),
		table = document.createElement( "table" ),
		tr = document.createElement( "tr" ),
		td = document.createElement( "td" );

	table.appendChild( document.createElement( "tbody" ) );
	document.getElementById( "qunit-fixture" ).appendChild( table );

	fragment.appendChild( tr );
	tr.appendChild( td );
	td.innerHTML = "test";

	jQuery( table ).append( fragment );

	// Lowercase and replace spaces to remove possible browser inconsistencies
	html = table.innerHTML.toLowerCase().replace( /\s/g, "" );

	assert.strictEqual( html, "<tbody><tr><td>test</td></tr></tbody>" );
} );

QUnit.test( "Make sure col element is appended correctly", function( assert ) {
	assert.expect( 1 );

	var table = jQuery( "<table cellpadding='0'><tr><td>test</td></tr></table>" );

	jQuery( table ).appendTo( "#qunit-fixture" );

	jQuery( "<col width='150'></col>" ).prependTo( table );

	assert.strictEqual( table.find( "td" ).width(), 150 );
} );

QUnit.test( "Make sure tr is not appended to the wrong tbody (gh-3439)", function( assert ) {
	assert.expect( 1 );

	var htmlOut,
		htmlIn =
			"<thead><tr><td>" +
				"<table><tbody><tr><td>nested</td></tr></tbody></table>" +
			"</td></tr></thead>",
		newRow = "<tr><td>added</td></tr>",
		htmlExpected = htmlIn.replace( "</thead>", "</thead>" + newRow ),
		table = supportjQuery( "<table></table>" ).html( htmlIn ).appendTo( "#qunit-fixture" )[ 0 ];

	jQuery( table ).append( newRow );

	// Lowercase and replace spaces to remove possible browser inconsistencies
	htmlOut = table.innerHTML.toLowerCase().replace( /\s/g, "" );

	assert.strictEqual( htmlOut, htmlExpected );
} );

[ true, false ].forEach( function( adoptedCase ) {
	QUnit.testUnlessIE(
		"Manip within <template /> content moved back & forth doesn't throw - " + (
			adoptedCase ? "explicitly adopted" : "not explicitly adopted"
		) + " (gh-5147)",
		function( assert ) {
			assert.expect( 1 );

			var fragment, diva, divb,
				div = jQuery( "" +
					"<div>\n" +
					"	<div><div class='a'></div></div>\n" +
					"	<div><div class='b'></div></div>\n" +
					"</div>" +
					"" ),
				template = jQuery( "<template></template>" );

			jQuery( "#qunit-fixture" )
				.append( div )
				.append( template );

			fragment = template[ 0 ].content;
			diva = div.find( ".a" );
			divb = div.find( ".b" );

			if ( adoptedCase ) {
				document.adoptNode( fragment );
			}

			fragment.appendChild( div.children()[ 0 ] );
			fragment.appendChild( div.children()[ 0 ] );

			diva.insertBefore( divb );

			assert.strictEqual( diva.siblings( ".b" ).length, 1,
				"Insertion worked" );
		}
	);
} );

QUnit.test( "Make sure tags with single-character names are found (gh-4124)", function( assert ) {
	assert.expect( 1 );

	var htmlOut,
		htmlIn = "<p>foo<!--<td>--></p>",
		$el = jQuery( "<div></div>" );

	$el.html( htmlIn );

	// Lowercase and replace spaces to remove possible browser inconsistencies
	htmlOut = $el[ 0 ].innerHTML.toLowerCase().replace( /\s/g, "" );

	assert.strictEqual( htmlOut, htmlIn );
} );

// The AJAX module is needed for jQuery._evalUrl.
QUnit[ includesModule( "ajax" ) ? "test" : "skip" ]( "Insert script with data-URI (gh-1887)", function( assert ) {
	assert.expect( 1 );

	Globals.register( "testFoo" );
	Globals.register( "testSrcFoo" );

	var script = document.createElement( "script" ),
		fixture = document.getElementById( "qunit-fixture" ),
		done = assert.async();

	script.src = "data:text/javascript,testSrcFoo = 'foo';";

	fixture.appendChild( script );

	jQuery( fixture ).append( "<script src=\"data:text/javascript,testFoo = 'foo';\"></script>" );

	setTimeout( function() {
		if ( window.testSrcFoo === "foo" ) {
			assert.strictEqual( window.testFoo, window.testSrcFoo, "data-URI script executed" );

		} else {
			assert.ok( true, "data-URI script is not supported by this environment" );
		}

		done();
	}, 100 );
} );

QUnit.test( "Ignore content from unsuccessful responses (gh-4126)", function( assert ) {
	assert.expect( 1 );

	var globalEval = jQuery.globalEval;
	jQuery.globalEval = function( _code ) {
		assert.ok( false, "no attempt to evaluate code from an unsuccessful response" );
	};

	try {
		jQuery( "#qunit-fixture" ).append(
			"<script src='" + url( "mock.php?action=error" ) + "'></script>" );
		assert.ok( true, "no error thrown from embedding script with unsuccessful-response src" );
	} catch ( e ) {
		throw e;
	} finally {
		jQuery.globalEval = globalEval;
	}
} );

testIframe(
	"Check if CSP nonce is preserved",
	"mock.php?action=cspNonce",
	function( assert ) {
		var done = assert.async();

		assert.expect( 1 );

		supportjQuery.get( baseURL + "support/csp.log" ).done( function( data ) {
			assert.equal( data, "", "No log request should be sent" );
			supportjQuery.get( baseURL + "mock.php?action=cspClean" ).done( done );
		} );
	}
);

testIframe(
	"Check if CSP nonce is preserved for external scripts with src attribute",
	"mock.php?action=cspNonce&test=external",
	function( assert ) {
		var done = assert.async();

		assert.expect( 1 );

		supportjQuery.get( baseURL + "support/csp.log" ).done( function( data ) {
			assert.equal( data, "", "No log request should be sent" );
			supportjQuery.get( baseURL + "mock.php?action=cspClean" ).done( done );
		} );
	},

	// The AJAX module is needed for jQuery._evalUrl.
	QUnit[ includesModule( "ajax" ) ? "test" : "skip" ]
);

testIframe(
	"jQuery.globalEval supports nonce",
	"mock.php?action=cspNonce&test=globaleval",
	function( assert ) {
		var done = assert.async();

		assert.expect( 1 );

		supportjQuery.get( baseURL + "support/csp.log" ).done( function( data ) {
			assert.equal( data, "", "No log request should be sent" );
			supportjQuery.get( baseURL + "mock.php?action=cspClean" ).done( done );
		} );
	}
);

QUnit.test( "Sanitized HTML doesn't get unsanitized", function( assert ) {

	var container,
		counter = 0,
		assertCount = 13,
		done = assert.async( assertCount );

	assert.expect( assertCount );

	Globals.register( "xss" );
	window.xss = sinon.spy();

	container = jQuery( "<div></div>" );
	container.appendTo( "#qunit-fixture" );

	function test( htmlString ) {
		var currCounter = counter,
			div = jQuery( "<div></div>" );

		counter++;

		div.appendTo( container );
		div.html( htmlString );

		setTimeout( function() {
			assert.ok( window.xss.withArgs( currCounter ).notCalled,
				"Insecure code wasn't executed, input: " + htmlString );
			done();
		}, 1000 );
	}

	// Note: below test cases need to invoke the xss function with consecutive
	// decimal parameters for the assertion messages to be correct.
	// Thanks to Masato Kinugawa from Cure53 for providing the following test cases.
	test( "<img alt=\"<x\" title=\"/><img src=url404 onerror=xss(0)>\">" );
	test( "<img alt=\"\n<x\" title=\"/>\n<img src=url404 onerror=xss(1)>\">" );
	test( "<style><style/><img src=url404 onerror=xss(2)>" );
	test( "<xmp><xmp/><img src=url404 onerror=xss(3)>" );
	test( "<title><title /><img src=url404 onerror=xss(4)>" );
	test( "<iframe><iframe/><img src=url404 onerror=xss(5)>" );
	test( "<noframes><noframes/><img src=url404 onerror=xss(6)>" );
	test( "<noscript><noscript/><img src=url404 onerror=xss(7)>" );
	test( "<foo\" alt=\"\" title=\"/><img src=url404 onerror=xss(8)>\">" );
	test( "<img alt=\"<x\" title=\"\" src=\"/><img src=url404 onerror=xss(9)>\">" );
	test( "<noscript/><img src=url404 onerror=xss(10)>" );

	test( "<option><style></option></select><img src=url404 onerror=xss(11)></style>" );

	test( "<noembed><noembed/><img src=url404 onerror=xss(12)>" );
} );

QUnit.test( "Works with invalid attempts to close the table wrapper", function( assert ) {
	assert.expect( 3 );

	// This test case attempts to close the tags which wrap input
	// based on matching done in wrapMap which should be ignored.
	var elem = jQuery( "<td></td></tr></tbody></table><td></td>" );
	assert.strictEqual( elem.length, 2, "Two elements created" );
	assert.strictEqual( elem[ 0 ].nodeName.toLowerCase(), "td", "First element is td" );
	assert.strictEqual( elem[ 1 ].nodeName.toLowerCase(), "td", "Second element is td" );
} );

// Test trustedTypes support in browsers where they're supported (currently Chrome 83+).
// Browsers with no TrustedHTML support still run tests on object wrappers with
// a proper `toString` function.
testIframe(
	"Basic TrustedHTML support (gh-4409)",
	"mock.php?action=trustedHtml",
	function( assert, jQuery, window, document, test ) {

		assert.expect( 5 );

		test.forEach( function( result ) {
			assert.deepEqual( result.actual, result.expected, result.message );
		} );
	}
);

QUnit.test( "should handle node removal in event's remove hook (gh-5214)", function( assert ) {

	assert.expect( 4 );

	jQuery(
		"<div id='container'>" +
		"	<div class='guarded removeself' data-elt='one'>" +
		"		Guarded 1" +
		"	</div>" +
		"	<div class='guarded' data-elt='two'>" +
		"		Guarded 2" +
		"	</div>" +
		"	<div class='guarded' data-elt='three'>" +
		"		Guarded 3" +
		"	</div>" +
		"</div>"
	).appendTo( "#qunit-fixture" );

	// Define the custom event handler
	jQuery.event.special.removeondestroy = {
		remove: function( ) {
			var $t = jQuery( this );
			assert.step( $t.data( "elt" ) );
			if ( $t.is( ".removeself" ) ) {
				$t.remove();
			}
		}
	};

	// Attach an empty handler to trigger the `remove`
	// logic for the custom event when the element is removed.
	jQuery( ".guarded" ).on( "removeondestroy", function( ) { } );

	// Trigger the event's removal logic by emptying the container
	jQuery( "#container" ).empty();

	assert.verifySteps( [ "one", "two", "three" ], "All elements were processed in order" );
} );