Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / jquery / resources / test / data / testsuite.css
blobcffaaa46ab307c507a5441beb534e7303fe4ace7
1 /* for testing opacity set in styles in IE */
2 ol#empty { opacity: 0; filter:Alpha(opacity=0); }
4 div#fx-tests h4 {
5 background: red;
8 div#fx-tests h4.pass {
9 background: green;
12 div#fx-tests div.box {
13 background: red;
14 overflow: hidden;
15 border: 2px solid #000;
18 div#fx-tests div.overflow {
19 overflow: visible;
22 div.inline {
23 display: inline;
26 div.autoheight {
27 height: auto;
30 div.autowidth {
31 width: auto;
34 div.autoopacity {
35 opacity: auto;
38 div.largewidth {
39 width: 100px;
42 div.largeheight {
43 height: 100px;
46 div.largeopacity {
47 filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
50 div.medwidth {
51 width: 50px;
54 div.medheight {
55 height: 50px;
58 div.medopacity {
59 opacity: 0.5;
60 filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
63 div.nowidth {
64 width: 0px;
67 div.noheight {
68 height: 0px;
71 div.noopacity {
72 opacity: 0;
73 filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
76 div.hidden {
77 display: none;
80 div#fx-tests div.widewidth {
81 background-repeat: repeat-x;
84 div#fx-tests div.wideheight {
85 background-repeat: repeat-y;
88 div#fx-tests div.widewidth.wideheight {
89 background-repeat: repeat;
92 div#fx-tests div.noback {
93 background-image: none;
96 div.chain, div.chain div { width: 100px; height: 20px; position: relative; float: left; }
97 div.chain div { position: absolute; top: 0px; left: 0px; }
99 div.chain.test { background: red; }
100 div.chain.test div { background: green; }
102 div.chain.out { background: green; }
103 div.chain.out div { background: red; display: none; }
105 /* tests to ensure jQuery can determine the native display mode of elements
106 that have been set as display: none in stylesheets */
107 div#show-tests * { display: none; }
109 #nothiddendiv { font-size: 16px; }
110 #nothiddendivchild.em { font-size: 2em; }
111 #nothiddendivchild.prct { font-size: 150%; }