Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / select / menulist-disabled-option.html
blobb4c60e38606e30553aaf6d8aed1ed9b7a24795fd
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <h1>Webkit Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=74270">74270</a></h1>
5 <select name="three">
6 <option value="1" disabled>Fail</option>
7 <option value="2" disabled>Fail</option>
8 <option value="3">Pass</option>
9 <option value="4">Fail</option>
10 </select>
11 <br />
12 <select name="two">
13 <option value="1" disabled>Fail</option>
14 <option value="2" disabled selected>Pass</option>
15 <option value="3">Fail</option>
16 <option value="4">Fail</option>
17 </select>
18 <br />
20 <!-- crbug.com/229259 -->
21 <style>
22 #option1:checked {
23 color: red;
25 </style>
26 <select>
27 <option id="option1" disabled>Fail</option>
28 <option>Pass</option>
29 </select>
30 <br />
32 <select id="select4">
33 <option id="option2">Pass</option>
34 <option>Fail</option>
35 </select>
36 <script>
37 document.getElementById('option2').disabled = true;
38 document.getElementById('select4').appendChild(document.createElement('option'));
39 </script>
40 </body>
41 </html>