Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(245)

Side by Side Diff: LayoutTests/fast/lists/w3-css3-list-styles-deprecated.html

Issue 1152763006: Remove outdated list style types (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix sorting Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698