1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/* eslint-disable mozilla/no-arbitrary-setTimeout */
// This test tests <select> in a child process. This is different than
// single-process as a <menulist> is used to implement the dropdown list.
requestLongerTimeout(2);
const XHTML_DTD =
'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">';
const PAGECONTENT =
"<html xmlns='http://www.w3.org/1999/xhtml'>" +
"<body onload='gChangeEvents = 0;gInputEvents = 0; gClickEvents = 0; document.getElementById(\"select\").focus();'>" +
"<select id='select' oninput='gInputEvents++' onchange='gChangeEvents++' onclick='if (event.target == this) gClickEvents++'>" +
" <optgroup label='First Group'>" +
" <option value='One'>One</option>" +
" <option value='Two'>Two</option>" +
" </optgroup>" +
" <option value='Three'>Three</option>" +
" <optgroup label='Second Group' disabled='true'>" +
" <option value='Four'>Four</option>" +
" <option value='Five'>Five</option>" +
" </optgroup>" +
" <option value='Six' disabled='true'>Six</option>" +
" <optgroup label='Third Group'>" +
" <option value='Seven'> Seven </option>" +
" <option value='Eight'> Eight </option>" +
" </optgroup></select><input />Text" +
"</body></html>";
const PAGECONTENT_XSLT =
"<?xml-stylesheet type='text/xml' href='#style1'?>" +
"<xsl:stylesheet id='style1'" +
" version='1.0'" +
" xmlns:xsl='http://www.w3.org/1999/XSL/Transform'" +
" xmlns:html='http://www.w3.org/1999/xhtml'>" +
"<xsl:template match='xsl:stylesheet'>" +
PAGECONTENT +
"</xsl:template>" +
"</xsl:stylesheet>";
const PAGECONTENT_SMALL =
"<html>" +
"<body><select id='one'>" +
" <option value='One'>One</option>" +
" <option value='Two'>Two</option>" +
"</select><select id='two'>" +
" <option value='Three'>Three</option>" +
" <option value='Four'>Four</option>" +
"</select><select id='three'>" +
" <option value='Five'>Five</option>" +
" <option value='Six'>Six</option>" +
"</select></body></html>";
const PAGECONTENT_GROUPS =
"<html>" +
"<body><select id='one'>" +
" <optgroup label='Group 1'>" +
" <option value='G1 O1'>G1 O1</option>" +
" <option value='G1 O2'>G1 O2</option>" +
" <option value='G1 O3'>G1 O3</option>" +
" </optgroup>" +
" <optgroup label='Group 2'>" +
" <option value='G2 O1'>G2 O4</option>" +
" <option value='G2 O2'>G2 O5</option>" +
" <option value='Hidden' style='display: none;'>Hidden</option>" +
" </optgroup>" +
"</select></body></html>";
const PAGECONTENT_SOMEHIDDEN =
"<html><head><style>.hidden { display: none; }</style></head>" +
"<body><select id='one'>" +
" <option value='One' style='display: none;'>OneHidden</option>" +
" <option value='Two' class='hidden'>TwoHidden</option>" +
" <option value='Three'>ThreeVisible</option>" +
" <option value='Four'style='display: table;'>FourVisible</option>" +
" <option value='Five'>FiveVisible</option>" +
" <optgroup label='GroupHidden' class='hidden'>" +
" <option value='Four'>Six.OneHidden</option>" +
" <option value='Five' style='display: block;'>Six.TwoHidden</option>" +
" </optgroup>" +
" <option value='Six' class='hidden' style='display: block;'>SevenVisible</option>" +
"</select></body></html>";
const PAGECONTENT_TRANSLATED =
"<html><body>" +
"<div id='div'>" +
"<iframe id='frame' width='320' height='295' style='border: none;'" +
" src='data:text/html,<select id=select><option>he he he</option><option>boo boo</option><option>baz baz</option></select>'" +
"</iframe>" +
"</div></body></html>";
function openSelectPopup(
selectPopup,
mode = "key",
selector = "select",
win = window
) {
let popupShownPromise = BrowserTestUtils.waitForEvent(
selectPopup,
"popupshown"
);
if (mode == "click" || mode == "mousedown") {
let mousePromise;
if (mode == "click") {
mousePromise = BrowserTestUtils.synthesizeMouseAtCenter(
selector,
{},
win.gBrowser.selectedBrowser
);
} else {
mousePromise = BrowserTestUtils.synthesizeMouse(
selector,
5,
5,
{ type: "mousedown" },
win.gBrowser.selectedBrowser
);
}
return Promise.all([popupShownPromise, mousePromise]);
}
EventUtils.synthesizeKey("KEY_ArrowDown", { altKey: true }, win);
return popupShownPromise;
}
function getInputEvents() {
return SpecialPowers.spawn(gBrowser.selectedBrowser, [], function() {
return content.wrappedJSObject.gInputEvents;
});
}
function getChangeEvents() {
return SpecialPowers.spawn(gBrowser.selectedBrowser, [], function() {
return content.wrappedJSObject.gChangeEvents;
});
}
function getClickEvents() {
return SpecialPowers.spawn(gBrowser.selectedBrowser, [], function() {
return content.wrappedJSObject.gClickEvents;
});
}
async function doSelectTests(contentType, content) {
const pageUrl = "data:" + contentType + "," + encodeURIComponent(content);
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, pageUrl);
let menulist = document.getElementById("ContentSelectDropdown");
let selectPopup = menulist.menupopup;
await openSelectPopup(selectPopup);
let isWindows = navigator.platform.includes("Win");
is(menulist.selectedIndex, 1, "Initial selection");
is(
selectPopup.firstElementChild.localName,
"menucaption",
"optgroup is caption"
);
is(
selectPopup.firstElementChild.getAttribute("label"),
"First Group",
"optgroup label"
);
is(selectPopup.children[1].localName, "menuitem", "option is menuitem");
is(selectPopup.children[1].getAttribute("label"), "One", "option label");
EventUtils.synthesizeKey("KEY_ArrowDown");
is(menulist.activeChild, menulist.getItemAtIndex(2), "Select item 2");
is(menulist.selectedIndex, isWindows ? 2 : 1, "Select item 2 selectedIndex");
EventUtils.synthesizeKey("KEY_ArrowDown");
is(menulist.activeChild, menulist.getItemAtIndex(3), "Select item 3");
is(menulist.selectedIndex, isWindows ? 3 : 1, "Select item 3 selectedIndex");
EventUtils.synthesizeKey("KEY_ArrowDown");
// On Windows, one can navigate on disabled menuitems
is(
menulist.activeChild,
menulist.getItemAtIndex(9),
"Skip optgroup header and disabled items select item 7"
);
is(
menulist.selectedIndex,
isWindows ? 9 : 1,
"Select or skip disabled item selectedIndex"
);
for (let i = 0; i < 10; i++) {
is(
menulist.getItemAtIndex(i).disabled,
i >= 4 && i <= 7,
"item " + i + " disabled"
);
}
EventUtils.synthesizeKey("KEY_ArrowUp");
is(menulist.activeChild, menulist.getItemAtIndex(3), "Select item 3 again");
is(menulist.selectedIndex, isWindows ? 3 : 1, "Select item 3 selectedIndex");
is(await getInputEvents(), 0, "Before closed - number of input events");
is(await getChangeEvents(), 0, "Before closed - number of change events");
is(await getClickEvents(), 0, "Before closed - number of click events");
EventUtils.synthesizeKey("a", { accelKey: true });
await SpecialPowers.spawn(gBrowser.selectedBrowser, [{ isWindows }], function(
args
) {
Assert.equal(
String(content.getSelection()),
args.isWindows ? "Text" : "",
"Select all while popup is open"
);
});
// Backspace should not go back
let handleKeyPress = function(event) {
ok(false, "Should not get keypress event");
};
window.addEventListener("keypress", handleKeyPress);
EventUtils.synthesizeKey("KEY_Backspace");
window.removeEventListener("keypress", handleKeyPress);
await hideSelectPopup(selectPopup);
is(menulist.selectedIndex, 3, "Item 3 still selected");
is(await getInputEvents(), 1, "After closed - number of input events");
is(await getChangeEvents(), 1, "After closed - number of change events");
is(await getClickEvents(), 0, "After closed - number of click events");
// Opening and closing the popup without changing the value should not fire a change event.
await openSelectPopup(selectPopup, "click");
await hideSelectPopup(selectPopup, "escape");
is(
await getInputEvents(),
1,
"Open and close with no change - number of input events"
);
is(
await getChangeEvents(),
1,
"Open and close with no change - number of change events"
);
is(
await getClickEvents(),
1,
"Open and close with no change - number of click events"
);
EventUtils.synthesizeKey("KEY_Tab");
EventUtils.synthesizeKey("KEY_Tab", { shiftKey: true });
is(
await getInputEvents(),
1,
"Tab away from select with no change - number of input events"
);
is(
await getChangeEvents(),
1,
"Tab away from select with no change - number of change events"
);
is(
await getClickEvents(),
1,
"Tab away from select with no change - number of click events"
);
await openSelectPopup(selectPopup, "click");
EventUtils.synthesizeKey("KEY_ArrowDown");
await hideSelectPopup(selectPopup, "escape");
is(
await getInputEvents(),
isWindows ? 2 : 1,
"Open and close with change - number of input events"
);
is(
await getChangeEvents(),
isWindows ? 2 : 1,
"Open and close with change - number of change events"
);
is(
await getClickEvents(),
2,
"Open and close with change - number of click events"
);
EventUtils.synthesizeKey("KEY_Tab");
EventUtils.synthesizeKey("KEY_Tab", { shiftKey: true });
is(
await getInputEvents(),
isWindows ? 2 : 1,
"Tab away from select with change - number of input events"
);
is(
await getChangeEvents(),
isWindows ? 2 : 1,
"Tab away from select with change - number of change events"
);
is(
await getClickEvents(),
2,
"Tab away from select with change - number of click events"
);
is(
selectPopup.lastElementChild.previousElementSibling.label,
"Seven",
"Spaces collapsed"
);
is(
selectPopup.lastElementChild.label,
"\xA0\xA0Eight\xA0\xA0",
"Non-breaking spaces not collapsed"
);
BrowserTestUtils.removeTab(tab);
}
add_task(async function setup() {
await SpecialPowers.pushPrefEnv({
set: [
["dom.select_popup_in_parent.enabled", true],
["dom.forms.select.customstyling", true],
],
});
});
add_task(async function() {
await doSelectTests("text/html", PAGECONTENT);
});
add_task(async function() {
await doSelectTests("application/xhtml+xml", XHTML_DTD + "\n" + PAGECONTENT);
});
add_task(async function() {
await doSelectTests("application/xml", XHTML_DTD + "\n" + PAGECONTENT_XSLT);
});
// This test opens a select popup and removes the content node of a popup while
// The popup should close if its node is removed.
add_task(async function() {
const pageUrl = "data:text/html," + escape(PAGECONTENT_SMALL);
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, pageUrl);
let menulist = document.getElementById("ContentSelectDropdown");
let selectPopup = menulist.menupopup;
// First, try it when a different <select> element than the one that is open is removed
await openSelectPopup(selectPopup, "click", "#one");
await SpecialPowers.spawn(gBrowser.selectedBrowser, [], function() {
content.document.body.removeChild(content.document.getElementById("two"));
});
// Wait a bit just to make sure the popup won't close.
await new Promise(resolve => setTimeout(resolve, 1000));
is(selectPopup.state, "open", "Different popup did not affect open popup");
await hideSelectPopup(selectPopup);
// Next, try it when the same <select> element than the one that is open is removed
await openSelectPopup(selectPopup, "click", "#three");
let popupHiddenPromise = BrowserTestUtils.waitForEvent(
selectPopup,
"popuphidden"
);
await SpecialPowers.spawn(gBrowser.selectedBrowser, [], function() {
content.document.body.removeChild(content.document.getElementById("three"));
});
await popupHiddenPromise;
ok(true, "Popup hidden when select is removed");
// Finally, try it when the tab is closed while the select popup is open.
await openSelectPopup(selectPopup, "click", "#one");
popupHiddenPromise = BrowserTestUtils.waitForEvent(
selectPopup,
"popuphidden"
);
BrowserTestUtils.removeTab(tab);
await popupHiddenPromise;
ok(true, "Popup hidden when tab is closed");
});
// This test opens a select popup that is isn't a frame and has some translations applied.
add_task(async function() {
const pageUrl = "data:text/html," + escape(PAGECONTENT_TRANSLATED);
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, pageUrl);
// We need to explicitly call Element.focus() since dataURL is treated as
// cross-origin, thus autofocus doesn't work there.
const iframe = await SpecialPowers.spawn(tab.linkedBrowser, [], () => {
return content.document.querySelector("iframe").browsingContext;
});
await SpecialPowers.spawn(iframe, [], async () => {
const input = content.document.getElementById("select");
const focusPromise = new Promise(resolve => {
input.addEventListener("focus", resolve, { once: true });
});
input.focus();
await focusPromise;
});
let menulist = document.getElementById("ContentSelectDropdown");
let selectPopup = menulist.menupopup;
// First, get the position of the select popup when no translations have been applied.
await openSelectPopup(selectPopup);
let rect = selectPopup.getBoundingClientRect();
let expectedX = rect.left;
let expectedY = rect.top;
await hideSelectPopup(selectPopup);
// Iterate through a set of steps which each add more translation to the select's expected position.
let steps = [
["div", "transform: translateX(7px) translateY(13px);", 7, 13],
[
"frame",
"border-top: 5px solid green; border-left: 10px solid red; border-right: 35px solid blue;",
10,
5,
],
[
"frame",
"border: none; padding-left: 6px; padding-right: 12px; padding-top: 2px;",
-4,
-3,
],
["select", "margin: 9px; transform: translateY(-3px);", 9, 6],
];
for (let stepIndex = 0; stepIndex < steps.length; stepIndex++) {
let step = steps[stepIndex];
await SpecialPowers.spawn(gBrowser.selectedBrowser, [step], async function(
contentStep
) {
return new Promise(resolve => {
let changedWin = content;
let elem;
if (contentStep[0] == "select") {
changedWin = content.document.getElementById("frame").contentWindow;
elem = changedWin.document.getElementById("select");
} else {
elem = content.document.getElementById(contentStep[0]);
}
changedWin.addEventListener(
"MozAfterPaint",
function() {
resolve();
},
{ once: true }
);
elem.style = contentStep[1];
elem.getBoundingClientRect();
});
});
await openSelectPopup(selectPopup);
expectedX += step[2];
expectedY += step[3];
let popupRect = selectPopup.getBoundingClientRect();
is(popupRect.left, expectedX, "step " + (stepIndex + 1) + " x");
is(popupRect.top, expectedY, "step " + (stepIndex + 1) + " y");
await hideSelectPopup(selectPopup);
}
BrowserTestUtils.removeTab(tab);
});
// Test that we get the right events when a select popup is changed.
add_task(async function test_event_order() {
const URL = "data:text/html," + escape(PAGECONTENT_SMALL);
await BrowserTestUtils.withNewTab(
{
gBrowser,
url: URL,
},
async function(browser) {
let menulist = document.getElementById("ContentSelectDropdown");
let selectPopup = menulist.menupopup;
// According to https://html.spec.whatwg.org/#the-select-element,
// we want to fire input, change, and then click events on the
// <select> (in that order) when it has changed.
let expectedEnter = [
{
type: "input",
cancelable: false,
targetIsOption: false,
composed: false,
},
{
type: "change",
cancelable: false,
targetIsOption: false,
composed: false,
},
];
let expectedClick = [
{
type: "mousedown",
cancelable: true,
targetIsOption: true,
composed: true,
},
{
type: "mouseup",
cancelable: true,
targetIsOption: true,
composed: true,
},
{
type: "input",
cancelable: false,
targetIsOption: false,
composed: false,
},
{
type: "change",
cancelable: false,
targetIsOption: false,
composed: false,
},
{
type: "click",
cancelable: true,
targetIsOption: true,
composed: true,
},
];
for (let mode of ["enter", "click"]) {
let expected = mode == "enter" ? expectedEnter : expectedClick;
await openSelectPopup(
selectPopup,
"click",
mode == "enter" ? "#one" : "#two"
);
let eventsPromise = SpecialPowers.spawn(
browser,
[[mode, expected]],
async function([contentMode, contentExpected]) {
return new Promise(resolve => {
function onEvent(event) {
select.removeEventListener(event.type, onEvent);
Assert.ok(
contentExpected.length,
"Unexpected event " + event.type
);
let expectation = contentExpected.shift();
Assert.equal(
event.type,
expectation.type,
"Expected the right event order"
);
Assert.ok(event.bubbles, "All of these events should bubble");
Assert.equal(
event.cancelable,
expectation.cancelable,
"Cancellation property should match"
);
Assert.equal(
event.target.localName,
expectation.targetIsOption ? "option" : "select",
"Target matches"
);
Assert.equal(
event.composed,
expectation.composed,
"Composed property should match"
);
if (!contentExpected.length) {
resolve();
}
}
let select = content.document.getElementById(
contentMode == "enter" ? "one" : "two"
);
for (let event of [
"input",
"change",
"mousedown",
"mouseup",
"click",
]) {
select.addEventListener(event, onEvent);
}
});
}
);
EventUtils.synthesizeKey("KEY_ArrowDown");
await hideSelectPopup(selectPopup, mode);
await eventsPromise;
}
}
);
});
async function performLargePopupTests(win) {
let browser = win.gBrowser.selectedBrowser;
await SpecialPowers.spawn(browser, [], async function() {
let doc = content.document;
let select = doc.getElementById("one");
for (var i = 0; i < 180; i++) {
select.add(new content.Option("Test" + i));
}
select.options[60].selected = true;
select.focus();
});
let selectPopup = win.document.getElementById("ContentSelectDropdown")
.menupopup;
let browserRect = browser.getBoundingClientRect();
// Check if a drag-select works and scrolls the list.
await openSelectPopup(selectPopup, "mousedown", "select", win);
let getScrollPos = () => selectPopup.scrollBox.scrollbox.scrollTop;
let scrollPos = getScrollPos();
let popupRect = selectPopup.getBoundingClientRect();
// First, check that scrolling does not occur when the mouse is moved over the
// anchor button but not the popup yet.
EventUtils.synthesizeMouseAtPoint(
popupRect.left + 5,
popupRect.top - 10,
{
type: "mousemove",
buttons: 1,
},
win
);
is(
getScrollPos(),
scrollPos,
"scroll position after mousemove over button should not change"
);
EventUtils.synthesizeMouseAtPoint(
popupRect.left + 20,
popupRect.top + 10,
{
type: "mousemove",
buttons: 1,
},
win
);
// Dragging above the popup scrolls it up.
let scrolledPromise = BrowserTestUtils.waitForEvent(
selectPopup,
"scroll",
false,
() => getScrollPos() < scrollPos - 5
);
EventUtils.synthesizeMouseAtPoint(
popupRect.left + 20,
popupRect.top - 20,
{
type: "mousemove",
buttons: 1,
},
win
);
await scrolledPromise;
ok(true, "scroll position at drag up");
// Dragging below the popup scrolls it down.
scrollPos = getScrollPos();
scrolledPromise = BrowserTestUtils.waitForEvent(
selectPopup,
"scroll",
false,
() => getScrollPos() > scrollPos + 5
);
EventUtils.synthesizeMouseAtPoint(
popupRect.left + 20,
popupRect.bottom + 20,
{
type: "mousemove",
buttons: 1,
},
win
);
await scrolledPromise;
ok(true, "scroll position at drag down");
// Releasing the mouse button and moving the mouse does not change the scroll position.
scrollPos = getScrollPos();
EventUtils.synthesizeMouseAtPoint(
popupRect.left + 20,
popupRect.bottom + 25,
{ type: "mouseup" },
win
);
is(getScrollPos(), scrollPos, "scroll position at mouseup should not change");
EventUtils.synthesizeMouseAtPoint(
popupRect.left + 20,
popupRect.bottom + 20,
{ type: "mousemove" },
win
);
is(
getScrollPos(),
scrollPos,
"scroll position at mousemove after mouseup should not change"
);
// Now check dragging with a mousedown on an item
let menuRect = selectPopup.children[51].getBoundingClientRect();
EventUtils.synthesizeMouseAtPoint(
menuRect.left + 5,
menuRect.top + 5,
{ type: "mousedown" },
win
);
// Dragging below the popup scrolls it down.
scrolledPromise = BrowserTestUtils.waitForEvent(
selectPopup,
"scroll",
false,
() => getScrollPos() > scrollPos + 5
);
EventUtils.synthesizeMouseAtPoint(
popupRect.left + 20,
popupRect.bottom + 20,
{
type: "mousemove",
buttons: 1,
},
win
);
await scrolledPromise;
ok(true, "scroll position at drag down from option");
// Dragging above the popup scrolls it up.
scrolledPromise = BrowserTestUtils.waitForEvent(
selectPopup,
"scroll",
false,
() => getScrollPos() < scrollPos - 5
);
EventUtils.synthesizeMouseAtPoint(
popupRect.left + 20,
popupRect.top - 20,
{
type: "mousemove",
buttons: 1,
},
win
);
await scrolledPromise;
ok(true, "scroll position at drag up from option");
scrollPos = getScrollPos();
EventUtils.synthesizeMouseAtPoint(
popupRect.left + 20,
popupRect.bottom + 25,
{ type: "mouseup" },
win
);
is(
getScrollPos(),
scrollPos,
"scroll position at mouseup from option should not change"
);
EventUtils.synthesizeMouseAtPoint(
popupRect.left + 20,
popupRect.bottom + 20,
{ type: "mousemove" },
win
);
is(
getScrollPos(),
scrollPos,
"scroll position at mousemove after mouseup should not change"
);
await hideSelectPopup(selectPopup, "escape", win);
let positions = [
"margin-top: 300px;",
"position: fixed; bottom: 200px;",
"width: 100%; height: 9999px;",
];
let position;
while (positions.length) {
await openSelectPopup(selectPopup, "key", "select", win);
let rect = selectPopup.getBoundingClientRect();
ok(
rect.top >= browserRect.top,
"Popup top position in within browser area"
);
ok(
rect.bottom <= browserRect.bottom,
"Popup bottom position in within browser area"
);
// Don't check the scroll position for the last step as the popup will be cut off.
if (positions.length) {
let cs = win.getComputedStyle(selectPopup);
let csArrow = win.getComputedStyle(selectPopup.scrollBox);
let bpBottom =
parseFloat(cs.paddingBottom) +
parseFloat(cs.borderBottomWidth) +
parseFloat(csArrow.paddingBottom) +
parseFloat(csArrow.borderBottomWidth);
let selectedOption = 60;
if (Services.prefs.getBoolPref("dom.forms.selectSearch")) {
// Use option 61 instead of 60, as the 60th option element is actually the
// 61st child, since the first child is now the search input field.
selectedOption = 61;
}
// Some of the styles applied to the menuitems are percentages, meaning
// that the final layout calculations returned by getBoundingClientRect()
// might return floating point values. We don't care about sub-pixel
// accuracy, and only care about the final pixel value, so we add a
// fuzz-factor of 1.
SimpleTest.isfuzzy(
selectPopup.children[selectedOption].getBoundingClientRect().bottom,
selectPopup.getBoundingClientRect().bottom - bpBottom,
1,
"Popup scroll at correct position " + bpBottom
);
}
await hideSelectPopup(selectPopup, "enter", win);
position = positions.shift();
let contentPainted = BrowserTestUtils.waitForContentEvent(
browser,
"MozAfterPaint"
);
await SpecialPowers.spawn(browser, [position], async function(
contentPosition
) {
let select = content.document.getElementById("one");
select.setAttribute("style", contentPosition || "");
select.getBoundingClientRect();
});
await contentPainted;
}
if (navigator.platform.indexOf("Mac") == 0) {
await SpecialPowers.spawn(browser, [], async function() {
let doc = content.document;
doc.body.style = "padding-top: 400px;";
let select = doc.getElementById("one");
select.options[41].selected = true;
select.focus();
});
await openSelectPopup(selectPopup, "key", "select", win);
ok(
selectPopup.getBoundingClientRect().top >
browser.getBoundingClientRect().top,
"select popup appears over selected item"
);
await hideSelectPopup(selectPopup, "escape", win);
}
}
// This test checks select elements with a large number of options to ensure that
// the popup appears within the browser area.
add_task(async function test_large_popup() {
const pageUrl = "data:text/html," + escape(PAGECONTENT_SMALL);
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, pageUrl);
await performLargePopupTests(window);
BrowserTestUtils.removeTab(tab);
});
// This test checks the same as the previous test but in a new, vertically smaller window.
add_task(async function test_large_popup_in_small_window() {
let newWin = await BrowserTestUtils.openNewBrowserWindow();
let resizePromise = BrowserTestUtils.waitForEvent(
newWin,
"resize",
false,
e => {
info(`Got resize event (innerHeight: ${newWin.innerHeight})`);
return newWin.innerHeight <= 450;
}
);
newWin.resizeTo(600, 450);
await resizePromise;
const pageUrl = "data:text/html," + escape(PAGECONTENT_SMALL);
let browserLoadedPromise = BrowserTestUtils.browserLoaded(
newWin.gBrowser.selectedBrowser
);
BrowserTestUtils.loadURI(newWin.gBrowser.selectedBrowser, pageUrl);
await browserLoadedPromise;
newWin.gBrowser.selectedBrowser.focus();
await performLargePopupTests(newWin);
await BrowserTestUtils.closeWindow(newWin);
});
async function performSelectSearchTests(win) {
let browser = win.gBrowser.selectedBrowser;
await SpecialPowers.spawn(browser, [], async function() {
let doc = content.document;
let select = doc.getElementById("one");
for (var i = 0; i < 40; i++) {
select.add(new content.Option("Test" + i));
}
select.options[1].selected = true;
select.focus();
});
let selectPopup = win.document.getElementById("ContentSelectDropdown")
.menupopup;
await openSelectPopup(selectPopup, false, "select", win);
let searchElement = selectPopup.querySelector(
".contentSelectDropdown-searchbox"
);
searchElement.focus();
EventUtils.synthesizeKey("O", {}, win);
is(selectPopup.children[2].hidden, false, "First option should be visible");
is(selectPopup.children[3].hidden, false, "Second option should be visible");
EventUtils.synthesizeKey("3", {}, win);
is(selectPopup.children[2].hidden, true, "First option should be hidden");
is(selectPopup.children[3].hidden, true, "Second option should be hidden");
is(selectPopup.children[4].hidden, false, "Third option should be visible");
EventUtils.synthesizeKey("Z", {}, win);
is(selectPopup.children[4].hidden, true, "Third option should be hidden");
is(
selectPopup.children[1].hidden,
true,
"First group header should be hidden"
);
EventUtils.synthesizeKey("KEY_Backspace", {}, win);
is(selectPopup.children[4].hidden, false, "Third option should be visible");
EventUtils.synthesizeKey("KEY_Backspace", {}, win);
is(
selectPopup.children[5].hidden,
false,
"Second group header should be visible"
);
EventUtils.synthesizeKey("KEY_Backspace", {}, win);
EventUtils.synthesizeKey("O", {}, win);
EventUtils.synthesizeKey("5", {}, win);
is(
selectPopup.children[5].hidden,
false,
"Second group header should be visible"
);
is(
selectPopup.children[1].hidden,
true,
"First group header should be hidden"
);
EventUtils.synthesizeKey("KEY_Backspace", {}, win);
is(
selectPopup.children[1].hidden,
false,
"First group header should be shown"
);
EventUtils.synthesizeKey("KEY_Backspace", {}, win);
is(
selectPopup.children[8].hidden,
true,
"Option hidden by content should remain hidden"
);
await hideSelectPopup(selectPopup, "escape", win);
}
// This test checks the functionality of search in select elements with groups
// and a large number of options.
add_task(async function test_select_search() {
await SpecialPowers.pushPrefEnv({
set: [["dom.forms.selectSearch", true]],
});
const pageUrl = "data:text/html," + escape(PAGECONTENT_GROUPS);
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, pageUrl);
await performSelectSearchTests(window);
BrowserTestUtils.removeTab(tab);
await SpecialPowers.popPrefEnv();
});
// This test checks that a mousemove event is fired correctly at the menu and
// not at the browser, ensuring that any mouse capture has been cleared.
add_task(async function test_mousemove_correcttarget() {
const pageUrl = "data:text/html," + escape(PAGECONTENT_SMALL);
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, pageUrl);
let selectPopup = document.getElementById("ContentSelectDropdown").menupopup;
let popupShownPromise = BrowserTestUtils.waitForEvent(
selectPopup,
"popupshown"
);
await BrowserTestUtils.synthesizeMouseAtCenter(
"#one",
{ type: "mousedown" },
gBrowser.selectedBrowser
);
await popupShownPromise;
await new Promise(resolve => {
window.addEventListener(
"mousemove",
function(event) {
is(event.target.localName.indexOf("menu"), 0, "mouse over menu");
resolve();
},
{ capture: true, once: true }
);
EventUtils.synthesizeMouseAtCenter(selectPopup.firstElementChild, {
type: "mousemove",
buttons: 1,
});
});
await BrowserTestUtils.synthesizeMouseAtCenter(
"#one",
{ type: "mouseup" },
gBrowser.selectedBrowser
);
await hideSelectPopup(selectPopup);
// The popup should be closed when fullscreen mode is entered or exited.
for (let steps = 0; steps < 2; steps++) {
await openSelectPopup(selectPopup, "click");
let popupHiddenPromise = BrowserTestUtils.waitForEvent(
selectPopup,
"popuphidden"
);
let sizeModeChanged = BrowserTestUtils.waitForEvent(
window,
"sizemodechange"
);
BrowserFullScreen();
await sizeModeChanged;
await popupHiddenPromise;
}
BrowserTestUtils.removeTab(tab);
});
// This test checks when a <select> element has some options with altered display values.
add_task(async function test_somehidden() {
const pageUrl = "data:text/html," + escape(PAGECONTENT_SOMEHIDDEN);
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, pageUrl);
let selectPopup = document.getElementById("ContentSelectDropdown").menupopup;
let popupShownPromise = BrowserTestUtils.waitForEvent(
selectPopup,
"popupshown"
);
await BrowserTestUtils.synthesizeMouseAtCenter(
"#one",
{ type: "mousedown" },
gBrowser.selectedBrowser
);
await popupShownPromise;
// The exact number is not needed; just ensure the height is larger than 4 items to accomodate any popup borders.
ok(
selectPopup.getBoundingClientRect().height >=
selectPopup.lastElementChild.getBoundingClientRect().height * 4,
"Height contains at least 4 items"
);
ok(
selectPopup.getBoundingClientRect().height <
selectPopup.lastElementChild.getBoundingClientRect().height * 5,
"Height doesn't contain 5 items"
);
// The label contains the substring 'Visible' for items that are visible.
// Otherwise, it is expected to be display: none.
is(selectPopup.parentNode.itemCount, 9, "Correct number of items");
let child = selectPopup.firstElementChild;
let idx = 1;
while (child) {
is(
getComputedStyle(child).display,
child.label.indexOf("Visible") > 0 ? "-moz-box" : "none",
"Item " + idx++ + " is visible"
);
child = child.nextElementSibling;
}
await hideSelectPopup(selectPopup, "escape");
BrowserTestUtils.removeTab(tab);
});
// This test checks that the popup is closed when the select element is blurred.
add_task(async function test_blur_hides_popup() {
const pageUrl = "data:text/html," + escape(PAGECONTENT_SMALL);
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, pageUrl);
await SpecialPowers.spawn(tab.linkedBrowser, [], async function() {
content.addEventListener(
"blur",
function(event) {
event.preventDefault();
event.stopPropagation();
},
true
);
content.document.getElementById("one").focus();
});
let menulist = document.getElementById("ContentSelectDropdown");
let selectPopup = menulist.menupopup;
await openSelectPopup(selectPopup);
let popupHiddenPromise = BrowserTestUtils.waitForEvent(
selectPopup,
"popuphidden"
);
await SpecialPowers.spawn(tab.linkedBrowser, [], async function() {
content.document.getElementById("one").blur();
});
await popupHiddenPromise;
ok(true, "Blur closed popup");
BrowserTestUtils.removeTab(tab);
});
// Test zoom handling.
add_task(async function test_zoom() {
const pageUrl = "data:text/html," + escape(PAGECONTENT_SMALL);
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, pageUrl);
let menulist = document.getElementById("ContentSelectDropdown");
let selectPopup = menulist.menupopup;
info("Opening the popup");
await openSelectPopup(selectPopup, "click");
info("Opened the popup");
let nonZoomedFontSize = parseFloat(
getComputedStyle(selectPopup.querySelector("menuitem")).fontSize,
10
);
info("font-size is " + nonZoomedFontSize);
await hideSelectPopup(selectPopup);
info("Hid the popup");
for (let i = 0; i < 2; ++i) {
info("Testing with full zoom: " + ZoomManager.useFullZoom);
// This is confusing, but does the right thing.
FullZoom.setZoom(2.0, tab.linkedBrowser);
info("Opening popup again");
await openSelectPopup(selectPopup, "click");
let zoomedFontSize = parseFloat(
getComputedStyle(selectPopup.querySelector("menuitem")).fontSize,
10
);
info("Zoomed font-size is " + zoomedFontSize);
ok(
Math.abs(zoomedFontSize - nonZoomedFontSize * 2.0) < 0.01,
`Zoom should affect menu popup size, got ${zoomedFontSize}, ` +
`expected ${nonZoomedFontSize * 2.0}`
);
await hideSelectPopup(selectPopup);
info("Hid the popup again");
ZoomManager.toggleZoom();
}
FullZoom.setZoom(1.0, tab.linkedBrowser); // make sure the zoom level is reset
BrowserTestUtils.removeTab(tab);
});
function getIsHandlingUserInput(browser, elementId, eventName) {
return SpecialPowers.spawn(browser, [[elementId, eventName]], async function([
contentElementId,
contentEventName,
]) {
let element = content.document.getElementById(contentElementId);
let isHandlingUserInput = false;
await ContentTaskUtils.waitForEvent(element, contentEventName, false, e => {
isHandlingUserInput = content.window.windowUtils.isHandlingUserInput;
return true;
});
return isHandlingUserInput;
});
}
// This test checks if the change/click event is considered as user input event.
add_task(async function test_handling_user_input() {
const pageUrl = "data:text/html," + escape(PAGECONTENT_SMALL);
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, pageUrl);
let menulist = document.getElementById("ContentSelectDropdown");
let selectPopup = menulist.menupopup;
// Test onchange event when changing value via keyboard.
await openSelectPopup(selectPopup, "click", "#one");
let getPromise = getIsHandlingUserInput(tab.linkedBrowser, "one", "change");
EventUtils.synthesizeKey("KEY_ArrowDown");
await hideSelectPopup(selectPopup);
is(await getPromise, true, "isHandlingUserInput should be true");
// Test onchange event when changing value via mouse click
await openSelectPopup(selectPopup, "click", "#two");
getPromise = getIsHandlingUserInput(tab.linkedBrowser, "two", "change");
EventUtils.synthesizeMouseAtCenter(selectPopup.lastElementChild, {});
is(await getPromise, true, "isHandlingUserInput should be true");
// Test onclick event fired from clicking select popup.
await openSelectPopup(selectPopup, "click", "#three");
getPromise = getIsHandlingUserInput(tab.linkedBrowser, "three", "click");
EventUtils.synthesizeMouseAtCenter(selectPopup.firstElementChild, {});
is(await getPromise, true, "isHandlingUserInput should be true");
BrowserTestUtils.removeTab(tab);
});
// Test that input and change events are dispatched consistently (bug 1561882).
add_task(async function test_event_destroys_popup() {
const PAGE_CONTENT = `
<!doctype html>
<select>
<option>a</option>
<option>b</option>
</select>
<script>
gChangeEvents = 0;
gInputEvents = 0;
let select = document.querySelector("select");
select.addEventListener("input", function() {
gInputEvents++;
this.style.display = "none";
this.getBoundingClientRect();
})
select.addEventListener("change", function() {
gChangeEvents++;
})
</script>`;
const pageUrl = "data:text/html," + escape(PAGE_CONTENT);
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, pageUrl);
let menulist = document.getElementById("ContentSelectDropdown");
let selectPopup = menulist.menupopup;
// Test change and input events get handled consistently
await openSelectPopup(selectPopup, "click");
EventUtils.synthesizeKey("KEY_ArrowDown");
await hideSelectPopup(selectPopup);
is(
await getChangeEvents(),
1,
"Should get change and input events consistently"
);
is(
await getInputEvents(),
1,
"Should get change and input events consistently (input)"
);
BrowserTestUtils.removeTab(tab);
});
add_task(async function test_label_not_text() {
const PAGE_CONTENT = `
<!doctype html>
<select>
<option label="Some nifty Label">Some Element Text Instead</option>
<option label="">Element Text</option>
</select>
`;
const pageUrl = "data:text/html," + escape(PAGE_CONTENT);
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, pageUrl);
let menulist = document.getElementById("ContentSelectDropdown");
let selectPopup = menulist.menupopup;
await openSelectPopup(selectPopup, "click");
is(
selectPopup.children[0].label,
"Some nifty Label",
"Use the label not the text."
);
is(
selectPopup.children[1].label,
"Element Text",
"Uses the text if the label is empty, like HTMLOptionElement::GetRenderedLabel."
);
BrowserTestUtils.removeTab(tab);
});
|