OLD | NEW |
---|---|
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../../http/tests/inspector/inspector-test.js"></script> | 3 <script src="../../http/tests/inspector/inspector-test.js"></script> |
4 <script src="../../http/tests/inspector/console-test.js"></script> | 4 <script src="../../http/tests/inspector/console-test.js"></script> |
5 | 5 |
6 <style> | 6 <style> |
7 x {} | 7 x {} |
8 | 8 |
9 x { | 9 x { |
10 # | 10 # |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
68 | 68 |
69 /* To be ignored. */ | 69 /* To be ignored. */ |
70 -webkit-invalidproperty: blue; | 70 -webkit-invalidproperty: blue; |
71 -vendor-specific-property: blue; | 71 -vendor-specific-property: blue; |
72 scrollbar-arrow-color: fail; | 72 scrollbar-arrow-color: fail; |
73 SCROLLBAR-ARROW-COLOR: fail; | 73 SCROLLBAR-ARROW-COLOR: fail; |
74 } | 74 } |
75 | 75 |
76 x { | 76 x { |
77 background: invalid-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,1 ) 100%) ; | 77 background: invalid-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,1 ) 100%) ; |
78 background: linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,1) 100%) ; | |
PhistucK
2013/06/21 21:13:10
This test is problematic. While linear-gradient is
| |
78 background: IE-hack ignored \9 ; | 79 background: IE-hack ignored \9 ; |
80 background: IE-hack ignored \0 ; | |
81 background: IE-hack ignored\0/ ; | |
82 animation: 3s slidein; | |
83 font-size-adjust: none; | |
84 transform: translateZ(0); | |
85 user-select: none; | |
86 -webkit-text-size-adjust: 100%; | |
79 } | 87 } |
80 | 88 |
81 x, { | 89 x, { |
82 } | 90 } |
83 | 91 |
84 @supports (display: #) { /* No warning expected. */ | 92 @supports (display: #) { /* No warning expected. */ |
85 } | 93 } |
86 | 94 |
87 @supports (#) { | 95 @supports (#) { |
88 } | 96 } |
89 | 97 |
90 @supports #; | 98 @supports #; |
91 | 99 |
92 @supports (display: none) # (display: block) { | 100 @supports (display: none) # (display: block) { |
93 } | 101 } |
94 | 102 |
95 @xxx; | 103 @xxx; |
96 @xxx {} | 104 @xxx {} |
97 | 105 |
98 @namespace "xxx" %; | 106 @namespace "xxx" %; |
99 @namespace %; | 107 @namespace %; |
100 @namespace; | 108 @namespace; |
101 | 109 |
102 @media %%%; | 110 @media %%%; |
103 | 111 |
104 @keyframes; | 112 @keyframes; |
113 @keyframes { } | |
114 @-moz-keyframes { } | |
105 | 115 |
106 @page; | 116 @page; |
107 @page xxx; | 117 @page xxx; |
108 | 118 |
109 @font-face; | 119 @font-face; |
110 @font-face xxx; | 120 @font-face xxx; |
111 | 121 |
112 @host; | 122 @host; |
113 @host xxx; | 123 @host xxx; |
114 | 124 |
(...skipping 26 matching lines...) Expand all Loading... | |
141 InspectorTest.completeTest(); | 151 InspectorTest.completeTest(); |
142 } | 152 } |
143 | 153 |
144 </script> | 154 </script> |
145 </head> | 155 </head> |
146 | 156 |
147 <body onload="runTest()"> | 157 <body onload="runTest()"> |
148 <p id="p">Tests CSS warnings are properly exposed.</p> | 158 <p id="p">Tests CSS warnings are properly exposed.</p> |
149 </body> | 159 </body> |
150 </html> | 160 </html> |
OLD | NEW |