OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <script src="../js/resources/js-test-pre.js"></script> | 2 <script src="../../resources/js-test.js"></script> |
3 <style> | 3 <style> |
4 :-webkit-any(h1), | 4 :-webkit-any(h1), |
5 :-webkit-any( #div1, b ), | 5 :-webkit-any( #div1, b ), |
6 :-webkit-any(.foo, #bar), | 6 :-webkit-any(.foo, #bar), |
7 :-webkit-any(i,p,:link,span:focus) { | 7 :-webkit-any(i,p,:link,span:focus) { |
8 background-color: blue; | 8 background-color: blue; |
9 } | 9 } |
10 | 10 |
11 #test-last-child :-webkit-any(:last-child), | 11 #test-last-child :-webkit-any(:last-child), |
12 :-webkit-any(:link:focus), | 12 :-webkit-any(:link:focus), |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 | 154 |
155 assertWhite("s"); | 155 assertWhite("s"); |
156 assertBlue("div span"); | 156 assertBlue("div span"); |
157 assertBlue("div ~ q"); | 157 assertBlue("div ~ q"); |
158 assertBlue("q+q"); | 158 assertBlue("q+q"); |
159 assertBlue("q>span"); | 159 assertBlue("q>span"); |
160 | 160 |
161 assertBlue("#test-last-child :first-child"); | 161 assertBlue("#test-last-child :first-child"); |
162 assertGreen("#test-last-child :last-child"); | 162 assertGreen("#test-last-child :last-child"); |
163 </script> | 163 </script> |
OLD | NEW |