Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / select-max-length-expected.txt
blob0a8b40e8495cf2a77ddc54b8881cb438bd4821cd
1 CONSOLE WARNING: Blocked to expand the option list to 20000 items.  The maximum list length is 10000.
2 CONSOLE WARNING: Blocked to expand the option list and set an option at index=20000.  The maximum list length is 10000.
3 CONSOLE WARNING: Blocked to expand the option list and set an option at index=20000.  The maximum list length is 10000.
4 This test that setting HTMLSelectElement.length is capped to 10,000, but that you can add additional Option elements by calling add.
6 PASS sel.length is 0
7 Trying: - sel.length = 20000;
8 PASS sel.length is 0
9 Trying: - sel.add(new Option, 0);
10 PASS sel.length is 1
11 Trying: - sel.length = 0;
12 PASS sel.length is 0
13 Index setter:
14 PASS sel[20000] = new Option(); sel.length is 0
15 PASS sel.options[20000] = new Option(); sel.length is 0
16 PASS successfullyParsed is true
18 TEST COMPLETE