OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE HTML> |
| 2 <html> |
| 3 <head> |
| 4 <script src="../../resources/js-test.js"></script> |
| 5 </head> |
| 6 <body> |
| 7 <script> |
| 8 description("Test deprectaed list style types"); |
| 9 |
| 10 shouldBeTrue('CSS.supports("list-style-type", "decimal")'); |
| 11 |
| 12 shouldBeFalse('CSS.supports("list-style-type", "binary")'); |
| 13 shouldBeFalse('CSS.supports("list-style-type", "lower-hexadecimal")'); |
| 14 shouldBeFalse('CSS.supports("list-style-type", "octal")'); |
| 15 shouldBeFalse('CSS.supports("list-style-type", "upper-hexadecimal")'); |
| 16 shouldBeFalse('CSS.supports("list-style-type", "afar")'); |
| 17 shouldBeFalse('CSS.supports("list-style-type", "ethiopic-halehame-aa-et")'); |
| 18 shouldBeFalse('CSS.supports("list-style-type", "ethiopic-halehame-aa-er")'); |
| 19 shouldBeFalse('CSS.supports("list-style-type", "amharic")'); |
| 20 shouldBeFalse('CSS.supports("list-style-type", "ethiopic-halehame-am-et")'); |
| 21 shouldBeFalse('CSS.supports("list-style-type", "ethiopic-halehame-gez")'); |
| 22 shouldBeFalse('CSS.supports("list-style-type", "ethiopic-abegede")'); |
| 23 shouldBeFalse('CSS.supports("list-style-type", "ethiopic-abegede-gez")'); |
| 24 shouldBeFalse('CSS.supports("list-style-type", "amharic-abegede")'); |
| 25 shouldBeFalse('CSS.supports("list-style-type", "ethiopic-abegede-am-et")'); |
| 26 shouldBeFalse('CSS.supports("list-style-type", "oromo")'); |
| 27 shouldBeFalse('CSS.supports("list-style-type", "ethiopic-halehame-om-et")'); |
| 28 shouldBeFalse('CSS.supports("list-style-type", "sidama")'); |
| 29 shouldBeFalse('CSS.supports("list-style-type", "ethiopic-halehame-sid-et")')
; |
| 30 shouldBeFalse('CSS.supports("list-style-type", "somali")'); |
| 31 shouldBeFalse('CSS.supports("list-style-type", "ethiopic-halehame-so-et")'); |
| 32 shouldBeFalse('CSS.supports("list-style-type", "tigre")'); |
| 33 shouldBeFalse('CSS.supports("list-style-type", "ethiopic-halehame-tig")'); |
| 34 shouldBeFalse('CSS.supports("list-style-type", "tigrinya-er")'); |
| 35 shouldBeFalse('CSS.supports("list-style-type", "tigrinya-er-abegede")'); |
| 36 shouldBeFalse('CSS.supports("list-style-type", "ethiopic-abegede-ti-er")'); |
| 37 shouldBeFalse('CSS.supports("list-style-type", "tigrinya-et")'); |
| 38 shouldBeFalse('CSS.supports("list-style-type", "tigrinya-et-abegede")'); |
| 39 shouldBeFalse('CSS.supports("list-style-type", "ethiopic-abegede-ti-et")'); |
| 40 shouldBeFalse('CSS.supports("list-style-type", "lower-norwegian")'); |
| 41 shouldBeFalse('CSS.supports("list-style-type", "upper-greek")'); |
| 42 shouldBeFalse('CSS.supports("list-style-type", "upper-norwegian")'); |
| 43 shouldBeFalse('CSS.supports("list-style-type", "asterisks")'); |
| 44 shouldBeFalse('CSS.supports("list-style-type", "footnotes")'); |
| 45 </script> |
| 46 </head> |
| 47 </html> |
OLD | NEW |