OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../js/resources/js-test-pre.js"></script> | 4 <script src="../../resources/js-test.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <script> | 7 <script> |
8 description("This tests checks that all of the input values for obje
ct-position parse correctly."); | 8 description("This tests checks that all of the input values for obje
ct-position parse correctly."); |
9 | 9 |
10 function test(value) | 10 function test(value) |
11 { | 11 { |
12 var div = document.createElement("div"); | 12 var div = document.createElement("div"); |
13 div.setAttribute("style", value); | 13 div.setAttribute("style", value); |
14 document.body.appendChild(div); | 14 document.body.appendChild(div); |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 shouldBeNull('test("object-position: initial initial;")'); | 70 shouldBeNull('test("object-position: initial initial;")'); |
71 shouldBeNull('test("object-position: -webkit-fill-available;")'); | 71 shouldBeNull('test("object-position: -webkit-fill-available;")'); |
72 shouldBeNull('test("object-position: min-content;")'); | 72 shouldBeNull('test("object-position: min-content;")'); |
73 shouldBeNull('test("object-position: intrinsic;")'); | 73 shouldBeNull('test("object-position: intrinsic;")'); |
74 shouldBeNull('test("object-position: auto;")'); | 74 shouldBeNull('test("object-position: auto;")'); |
75 shouldBeNull('test("object-position: none;")'); | 75 shouldBeNull('test("object-position: none;")'); |
76 shouldBeNull('test("object-position: fill;")'); | 76 shouldBeNull('test("object-position: fill;")'); |
77 </script> | 77 </script> |
78 </body> | 78 </body> |
79 </html> | 79 </html> |
OLD | NEW |