Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / indeterminate.html
blobb3d55c7af09b6b1e84392f4eb4d4559ae5b36989
1 <html>
2 <head>
3 <style>
4 input:indeterminate {
5 opacity: 0.5;
8 input:checked {
9 opacity: 1.0;
11 </style>
12 </head>
13 <body>
14 <input type=checkbox id="one"> This checkbox should look 50% transparent and should
15 be in the mixed state.
16 <script>
17 document.getElementById('one').indeterminate = true
18 </script>
19 </body>
20 </html>