1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287
|
<!DOCTYPE html>
<title>Custom Functions: Evaluating a <dashed-function></title>
<link rel="help" href="https://drafts.csswg.org/css-mixins-1/#substitute-a-dashed-function">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/utils.js"></script>
<div id=parent>
<div id=target></div>
</div>
<div id=main></div>
<!-- To pass, a test must produce matching computed values for --actual and
--expected on #target. -->
<!-- Return value -->
<template data-name="Literal result">
<style>
@function --f() {
result: 12px;
}
#target {
--actual: --f();
--expected: 12px;
}
</style>
</template>
<template data-name="Literal result, typed return">
<style>
@function --f() returns <length> {
result: 12px;
}
#target {
--actual: --f();
--expected: 12px;
}
</style>
</template>
<template data-name="Literal result, typed return, calc">
<style>
@function --f() returns <length> {
result: calc(12px + 1px);
}
#target {
--actual: --f();
--expected: 13px;
}
</style>
</template>
<template data-name="Literal result, typed return, mismatch">
<style>
@function --f() returns <length> {
result: 12s;
}
#target {
--actual: --f();
/* --expected: <guaranteed-invalid> */
}
</style>
</template>
<template data-name="Missing result descriptor">
<style>
@function --f() {
}
#target {
--actual: --f();
/* --expected: <guaranteed-invalid> */
}
</style>
</template>
<template data-name="Literal result, empty">
<style>
@function --f() {
result:;
}
#target {
--actual: --f();
--expected:;
}
</style>
</template>
<template data-name="result cascading behavior">
<style>
@function --f() returns <length> {
result: 12px;
result: 24px; /* Overwrites previous */
}
#target {
--actual: --f();
--expected: 24px;
}
</style>
</template>
<template data-name="Another dashed-function in result">
<style>
@function --f() {
result: --g();
}
@function --g() {
result: 12px;
}
#target {
--actual: --f();
--expected: 12px;
}
</style>
</template>
<!-- Parameters / Arguments -->
<template data-name="Unused argument">
<style>
@function --f(--x) {
result: 12px;
}
#target {
--actual: --f(100px);
--expected: 12px;
}
</style>
</template>
<template data-name="Single parameter">
<style>
@function --f(--x) {
result: var(--x);
}
#target {
--actual: --f(100px);
--expected: 100px;
}
</style>
</template>
<template data-name="Multiple parameters">
<style>
@function --f(--x, --y, --z) {
result: var(--x) var(--y) var(--z);
}
#target {
--actual: --f(100px, auto, red);
--expected: 100px auto red;
}
</style>
</template>
<template data-name="Single parameter, typed">
<style>
@function --f(--x <length>) {
result: var(--x);
}
#target {
--actual: --f(100px);
--expected: 100px;
}
</style>
</template>
<template data-name="Typed parameter with calc()">
<style>
@function --f(--x <length>) {
result: var(--x);
}
#target {
--actual: --f(calc(100px + 1px));
--expected: 101px;
}
</style>
</template>
<template data-name="Untyped parameter with calc()">
<style>
@function --f(--x type(*)) {
result: var(--x);
}
#target {
--actual: --f(calc(100px + 1px));
--expected: calc(100px + 1px);
}
</style>
</template>
<template data-name="Various typed parameters">
<style>
@function --f(--x <length>, --y <angle>, --z <time>) {
result: var(--x) var(--y) var(--z);
}
#target {
--actual: --f(calc(100px + 1px), 1turn, 1000ms);
--expected: 101px 360deg 1s;
}
</style>
</template>
<template data-name="Parameter with complex type (auto)">
<style>
@function --f(--x type(<length> | auto)) {
result: var(--x);
}
#target {
--actual: --f(auto);
--expected: auto;
}
</style>
</template>
<template data-name="Parameter with complex type (px)">
<style>
@function --f(--x type(<length> | auto)) {
result: var(--x);
}
#target {
--actual: --f(10px);
--expected: 10px;
}
</style>
</template>
<template data-name="Passing argument to inner function">
<style>
@function --f(--x) {
result: --g(var(--x));
}
@function --g(--y) {
result: var(--y);
}
#target {
--actual: --f(12px);
--expected: 12px;
}
</style>
</template>
<!-- Arguments + var() -->
<template data-name="var() in argument resolved before call">
<style>
@function --f(--x) {
--one: FAIL;
result: var(--x);
}
#target {
--one: 1px;
--actual: --f(calc(100px + var(--one)));
--expected: calc(100px + 1px);
}
</style>
</template>
<template data-name="var() in argument resolved before call, typed">
<style>
@function --f(--x <length>) {
--one: FAIL;
result: var(--x);
}
#target {
--one: 1px;
--actual: --f(calc(100px + var(--one)));
--expected: 101px;
}
</style>
</template>
<template data-name="Argument captures IACVT due to invalid var()">
<style>
@function --f(--x) {
result: var(--x, PASS);
}
#target {
--actual: --f(var(--unknown));
--expected: PASS;
}
</style>
</template>
<template data-name="Argument captures IACVT due to invalid var(), typed">
<style>
@function --f(--x <length>) {
result: var(--x, PASS);
}
#target {
--actual: --f(var(--unknown));
--expected: PASS;
}
</style>
</template>
<template data-name="Argument captures IACVT due to type mismatch">
<style>
@function --f(--x <length>) {
result: var(--x, PASS);
}
#target {
--actual: --f(red);
--expected: PASS;
}
</style>
</template>
<!-- Defaults -->
<template data-name="Single parameter with default value">
<style>
@function --f(--x: PASS) {
result: var(--x);
}
#target {
--actual: --f();
--expected: PASS;
}
</style>
</template>
<template data-name="Multiple parameters with defaults">
<style>
@function --f(--x, --y: 2px, --z: 3px) {
result: var(--x) var(--y) var(--z);
}
#target {
--actual: --f(1px, 5px);
--expected: 1px 5px 3px;
}
</style>
</template>
<template data-name="Multiple parameters with defaults, typed">
<style>
@function --f(--x, --y <length>: 2px, --z <length>: 3px) {
result: var(--x) var(--y) var(--z);
}
#target {
--actual: --f(1px, 5px);
--expected: 1px 5px 3px;
}
</style>
</template>
<template data-name="Default referencing another parameter">
<style>
@function --f(--x, --y: var(--x)) {
result: var(--x) var(--y);
}
#target {
--x: FAIL;
--y: FAIL;
--actual: --f(5px);
--expected: 5px 5px;
}
</style>
</template>
<template data-name="Default referencing another parameter, local interference">
<style>
@function --f(--x, --y: var(--x)) {
--x: 17px;
result: var(--x) var(--y);
}
#target {
--x: FAIL;
--y: FAIL;
--actual: --f(5px);
--expected: 17px 5px;
}
</style>
</template>
<template data-name="Default referencing another defaulted parameter">
<style>
@function --f(--x: 5px, --y: var(--x)) {
result: var(--x) var(--y);
}
#target {
--x: FAIL;
--y: FAIL;
--actual: --f();
--expected: 5px 5px;
}
</style>
</template>
<template data-name="Typed default with reference">
<style>
@function --f(--x: 5px, --y <length>: calc(var(--x) + 1px)) {
result: var(--x) var(--y);
}
#target {
--x: FAIL;
--y: FAIL;
--actual: --f();
--expected: 5px 6px;
}
</style>
</template>
<template data-name="IACVT arguments are defaulted">
<style>
@function --f(--x: 1, --y, --z: 3) {
result: var(--x) var(--y) var(--z);
}
#target {
--actual: --f(var(--unknown), 2, var(--unknown));
--expected: 1 2 3;
}
</style>
</template>
<template data-name="IACVT arguments are defaulted, typed">
<style>
@function --f(--x <number>: 1, --y <number>, --z <number>: 3) {
result: var(--x) var(--y) var(--z);
}
#target {
--actual: --f(var(--unknown), 2, var(--unknown));
--expected: 1 2 3;
}
</style>
</template>
<template data-name="Arguments are defaulted on type mismatch">
<style>
@function --f(--x <number>: 1, --y <number>, --z <number>: 3) {
result: var(--x) var(--y) var(--z);
}
#target {
--actual: --f(red, 2, 360deg);
--expected: 1 2 3;
}
</style>
</template>
<!-- Locals -->
<template data-name="Unused local">
<style>
@function --f() {
--x: 10px;
result: 1px;
}
#target {
--actual: --f();
--expected: 1px;
}
</style>
</template>
<template data-name="Local does not affect outer scope">
<style>
@function --f() {
--x: 10px;
result: 1px;
}
#target {
--x: 20px;
--actual: --f() var(--x);
--expected: 1px 20px;
}
</style>
</template>
<template data-name="Substituting local in result">
<style>
@function --f() {
--x: 10px;
result: var(--x);
}
#target {
--actual: --f();
--expected: 10px;
}
</style>
</template>
<template data-name="Substituting multiple locals in result">
<style>
@function --f() {
--x: 10px;
--y: 17px;
result: var(--x) var(--y);
}
#target {
--actual: --f();
--expected: 10px 17px;
}
</style>
</template>
<template data-name="Local referring to another local">
<style>
@function --f() {
--x: 10px;
--y: var(--x);
result: var(--y);
}
#target {
--actual: --f();
--expected: 10px;
}
</style>
</template>
<template data-name="Locals appearing after result">
<style>
@function --f() {
result: var(--y);
--x: 10px;
--y: var(--x);
}
#target {
--actual: --f();
--expected: 10px;
}
</style>
</template>
<template data-name="Locals cascading behavior">
<style>
@function --f() {
--x: 10px;
--y: var(--x);
result: var(--y);
--x: 20px; /* Surprise! */
}
#target {
--actual: --f();
--expected: 20px;
}
</style>
</template>
<!-- Scoping -->
<template data-name="Custom properties are visible inside function">
<style>
@function --f() {
result: var(--x);
}
#target {
--x: 10px;
--actual: --f();
--expected: 10px;
}
</style>
</template>
<template data-name="Substitute local from outer scope">
<style>
@function --f() {
--x: PASS;
result: --g();
}
@function --g() {
result: var(--x);
}
#target {
--x: FAIL;
--actual: --f();
--expected: PASS;
}
</style>
</template>
<template data-name="Substitute argument from outer scope">
<style>
@function --f(--x) {
result: --g();
}
@function --g() {
result: var(--x);
}
#target {
--x: FAIL;
--actual: --f(PASS);
--expected: PASS;
}
</style>
</template>
<template data-name="Inner argument shadowing outer argument">
<style>
@function --f(--x) {
result: --g(PASS);
}
@function --g(--x) {
result: var(--x);
}
#target {
--x: FAIL;
--actual: --f(FAIL);
--expected: PASS;
}
</style>
</template>
<template data-name="Inner argument shadowing outer local">
<style>
@function --f() {
--x: FAIL;
result: --g(PASS);
}
@function --g(--x) {
result: var(--x);
}
#target {
--x: FAIL;
--actual: --f();
--expected: PASS;
}
</style>
</template>
<template data-name="Inner local shadowing outer argument">
<style>
@function --f(--x) {
result: --g();
}
@function --g() {
--x: PASS;
result: var(--x);
}
#target {
--x: FAIL;
--actual: --f(FAIL);
--expected: PASS;
}
</style>
</template>
<template data-name="Inner local shadowing outer local">
<style>
@function --f() {
--x: FAIL;
result: --g();
}
@function --g() {
--x: PASS;
result: var(--x);
}
#target {
--x: FAIL;
--actual: --f();
--expected: PASS;
}
</style>
</template>
<template data-name="Referencing outer local containing var()">
<style>
@function --f() {
--y: 1;
--x: var(--y);
result: --g();
}
@function --g() {
--y: 0;
result: var(--x);
}
#target {
--y: 0;
--x: FAIL;
--actual: --f();
--expected: 1;
}
</style>
</template>
<template data-name="Referencing outer typed argument">
<style>
@function --f(--l <length>: 10.00px) {
result: --g();
}
@function --g() {
result: var(--l);
}
#target {
--actual: --f();
--expected: 10px;
}
</style>
</template>
<template data-name="Same function with different scopes">
<style>
@function --one() {
--x: 1;
result: --f();
}
@function --two() {
--x: 2;
result: --f();
}
@function --three() {
--x: 3;
result: --f();
}
@function --f() {
result: var(--x);
}
#target {
--x: 0;
--actual: --one() --two() --three() --f();
--expected: 1 2 3 0;
}
</style>
</template>
<template data-name="Referencing local two frames up">
<style>
@function --a() {
--x: 1;
result: --b();
}
@function --b() {
result: --c();
}
@function --c() {
result: var(--x);
}
#target {
--x: 0;
--actual: --a();
--expected: 1;
}
</style>
</template>
<template data-name="IACVT outer local shadows property">
<style>
@function --a() {
--x: var(--unknown);
result: --b();
}
@function --b() {
result: var(--x, PASS);
}
#target {
--x: FAIL;
--actual: --a();
--expected: PASS;
}
</style>
</template>
<template data-name="Inner function call should see resolved outer locals">
<style>
@function --a() {
--x: --b();
--y: var(--px);
result: var(--x);
}
@function --b() {
result: var(--y, FAIL);
}
#target {
--px: 10px;
--actual: --a();
--expected: 10px;
}
</style>
</template>
<!--
This the same test as the one above, but the *values* of --x and --y
are flipped, as are the references to those vars. If there is a bug
related to this behavior, it may be masked by "lucky" ordering of items
in a hash backing. Testing both ways ensures that at least one test
fails.
-->
<template data-name="Inner function call should see resolved outer locals (reverse)">
<style>
@function --a() {
--x: var(--px);
--y: --b();
result: var(--y);
}
@function --b() {
result: var(--x, FAIL);
}
#target {
--px: 10px;
--actual: --a();
--expected: 10px;
}
</style>
</template>
<!-- Shadowing -->
<template data-name="Parameter shadows custom property">
<style>
@function --f(--x) {
result: var(--x);
}
#target {
--x: FAIL;
--actual: --f(PASS);
--expected: PASS;
}
</style>
</template>
<template data-name="Local shadows parameter">
<style>
@function --f(--x) {
--x: PASS;
result: var(--x);
}
#target {
--x: FAIL1;
--actual: --f(FAIL2);
--expected: PASS;
}
</style>
</template>
<template data-name="IACVT argument shadows outer scope">
<style>
@function --f(--x) {
result: var(--x, PASS);
}
#target {
--x: FAIL;
--actual: --f(var(--unknown));
--expected: PASS;
}
</style>
</template>
<template data-name="IACVT argument shadows outer scope, typed">
<style>
@function --f(--x <length>) {
result: var(--x, PASS);
}
#target {
--x: FAIL;
--actual: --f(var(--unknown));
--expected: PASS;
}
</style>
</template>
<template data-name="IACVT argument shadows outer scope, type mismatch">
<style>
@function --f(--x <length>) {
result: var(--x, PASS);
}
#target {
--x: FAIL;
--actual: --f(red);
--expected: PASS;
}
</style>
</template>
<!-- Invalid invocations -->
<template data-name="Missing only argument">
<style>
@function --f(--x) {
result: 10px;
}
#target {
--actual: --f();
/* --expected: <guaranteed-invalid> */
}
</style>
</template>
<template data-name="Missing one argument of several">
<style>
@function --f(--x, --y, --z) {
result: 10px;
}
#target {
--actual: --f(1, 2);
/* --expected: <guaranteed-invalid> */
}
</style>
</template>
<!--
{}-wrappers.
https://drafts.csswg.org/css-values-5/#component-function-commas
-->
<template data-name="Passing list as only argument">
<style>
@function --f(--x) {
result: var(--x);
}
#target {
--actual: --f({1px,2px});
--expected: 1px,2px;
}
</style>
</template>
<template data-name="Passing list as first argument">
<style>
@function --f(--x, --y) {
result: var(--x) | var(--y);
}
#target {
--actual: --f({1px, 2px}, 3px);
--expected: 1px, 2px | 3px;
}
</style>
</template>
<template data-name="Passing list as second argument">
<style>
@function --f(--x, --y) {
result: var(--x) | var(--y);
}
#target {
--actual: --f(1px, {2px, 3px});
--expected: 1px | 2px, 3px;
}
</style>
</template>
<template data-name="Passing comma as argument">
<style>
@function --f(--x) {
result: var(--x);
}
#target {
--actual: --f({,});
--expected: ,;
}
</style>
</template>
<template data-name="Passing {} as argument">
<style>
@function --f(--x) {
result: var(--x);
}
#target {
--actual: --f({{}});
--expected: {};
}
</style>
</template>
<template data-name="Passing non-whole-value {} as argument">
<style>
@function --f(--x) {
result: var(--x);
}
#target {
--actual: --f({foo{}});
--expected: foo{};
}
</style>
</template>
<!-- CSS-wide keywords -->
<!-- initial -->
<template data-name="Local variable with initial keyword">
<style>
@function --f(--x: FAIL1) {
--x: FAIL2;
--x: initial;
result: var(--x);
}
#target {
--actual: --f(PASS);
--expected: PASS;
}
</style>
</template>
<template data-name="Local variable with initial keyword, defaulted">
<style>
@function --f(--x: PASS) {
--x: FAIL;
--x: initial;
result: var(--x);
}
#target {
--actual: --f();
--expected: PASS;
}
</style>
</template>
<template data-name="Local variable with initial keyword, no value via IACVT-capture">
<style>
@function --f(--x) {
--x: FAIL;
--x: initial;
result: var(--x, PASS);
}
#target {
--actual: --f(var(--unknown));
--expected: PASS;
}
</style>
</template>
<template data-name="Default with initial keyword">
<style>
@function --f(--x: initial) {
result: var(--x, PASS);
}
#target {
--actual: --f();
--expected: PASS;
}
</style>
</template>
<template data-name="initial appearing via fallback">
<style>
@function --f(--x: PASS) {
--x: var(--unknown, initial);
result: var(--x);
}
#target {
--actual: --f();
--expected: PASS;
}
</style>
</template>
<!-- inherit -->
<template data-name="Local variable with inherit keyword">
<style>
@function --f(--x: FAIL1) {
--x: FAIL2;
--x: inherit;
result: var(--x);
}
#target {
--x: PASS;
--actual: --f(FAIL3);
--expected: PASS;
}
</style>
</template>
<template data-name="Local variable with inherit keyword (nested)">
<style>
@function --f(--x: FAIL1) {
--x: FAIL2;
--x: inherit;
result: var(--x);
}
@function --g(--x) {
--x: PASS;
result: --f(FAIL3);
}
#target {
--actual: --g(FAIL4);
--expected: PASS;
}
</style>
</template>
<template data-name="Inheriting an invalid value">
<style>
@function --f(--x) {
--x: FAIL2;
--x: inherit;
result: var(--x, PASS);
}
@function --g() {
--x: var(--unknown);
result: --f(FAIL1);
}
#target {
--actual: --g();
--expected: PASS;
}
</style>
</template>
<template data-name="Default with inherit keyword">
<style>
@function --f(--x: inherit) {
result: var(--x);
}
#target {
--x: PASS1;
--actual: --f() --f(PASS2);
--expected: PASS1 PASS2;
}
</style>
</template>
<template data-name="Default with inherit keyword (nested)">
<style>
@function --f(--x: inherit) {
result: var(--x);
}
@function --g() {
--x: PASS1;
result: --f() --f(PASS2);
}
#target {
--x: FAIL;
--actual: --g();
--expected: PASS1 PASS2;
}
</style>
</template>
<!-- Other CSS-wide keywords (invalid in locals) -->
<template data-name="Local with the unset keyword">
<style>
@function --f() {
--x: unset;
result: var(--x, PASS);
}
#target {
--actual: --f();
--expected: PASS;
}
</style>
</template>
<template data-name="Local with the revert keyword">
<style>
@function --f() {
--x: revert;
result: var(--x, PASS);
}
#target {
--actual: --f();
--expected: PASS;
}
</style>
</template>
<template data-name="Local with the revert-layer keyword">
<style>
@function --f() {
--x: revert-layer;
result: var(--x, PASS);
}
#target {
--actual: --f();
--expected: PASS;
}
</style>
</template>
<!-- Keywords in 'result' descriptor -->
<template data-name="initial keyword left unresolved on result descriptor">
<style>
@function --f() {
result: initial;
}
#target {
--tmp: --f();
--actual: var(--tmp, PASS);
--expected: PASS;
}
</style>
</template>
<template data-name="inherit keyword left unresolved on result descriptor">
<style>
@function --f() {
result: inherit;
}
#parent {
--tmp: PASS;
}
#target {
--tmp: --f();
--actual: var(--tmp, FAIL);
--expected: PASS;
}
</style>
</template>
<template data-name="unset keyword left unresolved on result descriptor">
<style>
@function --f() {
result: unset;
}
#parent {
--tmp: PASS;
}
#target {
--tmp: --f();
--actual: var(--tmp, FAIL);
--expected: PASS;
}
</style>
</template>
<template data-name="revert keyword left unresolved on result descriptor">
<style>
@function --f() {
result: revert;
}
#parent {
--tmp: PASS;
}
#target {
--tmp: --f();
--actual: var(--tmp, FAIL);
--expected: PASS;
}
</style>
</template>
<template data-name="revert-layer keyword left unresolved on result descriptor">
<style>
@function --f() {
result: revert-layer;
}
@layer one {
#target {
--tmp: PASS;
}
}
@layer two {
#target {
--tmp: --f();
--actual: var(--tmp, FAIL);
--expected: PASS;
}
}
</style>
</template>
<template data-name="Keyword can be returned from function into local variable">
<style>
@function --f() {
result: initial;
}
@function --g(--x: PASS) {
--x: FAIL1;
--x: --f();
result: var(--x, FAIL2);
}
#target {
--actual: --g();
--expected: PASS;
}
</style>
</template>
<template data-name="Can not return CSS-wide keyword as length">
<style>
@function --f() returns <length> {
result: revert-layer;
}
@layer one {
#target {
--tmp: FAIL;
}
}
@layer two {
#target {
--tmp: --f();
--actual: var(--tmp, PASS);
--expected: PASS;
}
}
</style>
</template>
<script>
test_all_templates();
</script>
|