| 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="../js/resources/js-test-pre.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) |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 shouldBeNull('test("object-position: top 33px;")'); | 68 shouldBeNull('test("object-position: top 33px;")'); |
| 69 shouldBeNull('test("object-position: inherit inherit;")'); | 69 shouldBeNull('test("object-position: inherit inherit;")'); |
| 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 <script src="../js/resources/js-test-post.js"></script> | |
| 79 </body> | 78 </body> |
| 80 </html> | 79 </html> |
| OLD | NEW |