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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/lists/w3-css3-list-styles-deprecated.html
diff --git a/LayoutTests/fast/lists/w3-css3-list-styles-deprecated.html b/LayoutTests/fast/lists/w3-css3-list-styles-deprecated.html
new file mode 100644
index 0000000000000000000000000000000000000000..1bae556aec342dd6885eb550580bd1541925f0ed
--- /dev/null
+++ b/LayoutTests/fast/lists/w3-css3-list-styles-deprecated.html
@@ -0,0 +1,47 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+<script src="../../resources/js-test.js"></script>
+</head>
+<body>
+<script>
+ description("Test deprectaed list style types");
+
+ shouldBeTrue('CSS.supports("list-style-type", "decimal")');
+
+ shouldBeFalse('CSS.supports("list-style-type", "binary")');
+ shouldBeFalse('CSS.supports("list-style-type", "lower-hexadecimal")');
+ shouldBeFalse('CSS.supports("list-style-type", "octal")');
+ shouldBeFalse('CSS.supports("list-style-type", "upper-hexadecimal")');
+ shouldBeFalse('CSS.supports("list-style-type", "afar")');
+ shouldBeFalse('CSS.supports("list-style-type", "ethiopic-halehame-aa-et")');
+ shouldBeFalse('CSS.supports("list-style-type", "ethiopic-halehame-aa-er")');
+ shouldBeFalse('CSS.supports("list-style-type", "amharic")');
+ shouldBeFalse('CSS.supports("list-style-type", "ethiopic-halehame-am-et")');
+ shouldBeFalse('CSS.supports("list-style-type", "ethiopic-halehame-gez")');
+ shouldBeFalse('CSS.supports("list-style-type", "ethiopic-abegede")');
+ shouldBeFalse('CSS.supports("list-style-type", "ethiopic-abegede-gez")');
+ shouldBeFalse('CSS.supports("list-style-type", "amharic-abegede")');
+ shouldBeFalse('CSS.supports("list-style-type", "ethiopic-abegede-am-et")');
+ shouldBeFalse('CSS.supports("list-style-type", "oromo")');
+ shouldBeFalse('CSS.supports("list-style-type", "ethiopic-halehame-om-et")');
+ shouldBeFalse('CSS.supports("list-style-type", "sidama")');
+ shouldBeFalse('CSS.supports("list-style-type", "ethiopic-halehame-sid-et")');
+ shouldBeFalse('CSS.supports("list-style-type", "somali")');
+ shouldBeFalse('CSS.supports("list-style-type", "ethiopic-halehame-so-et")');
+ shouldBeFalse('CSS.supports("list-style-type", "tigre")');
+ shouldBeFalse('CSS.supports("list-style-type", "ethiopic-halehame-tig")');
+ shouldBeFalse('CSS.supports("list-style-type", "tigrinya-er")');
+ shouldBeFalse('CSS.supports("list-style-type", "tigrinya-er-abegede")');
+ shouldBeFalse('CSS.supports("list-style-type", "ethiopic-abegede-ti-er")');
+ shouldBeFalse('CSS.supports("list-style-type", "tigrinya-et")');
+ shouldBeFalse('CSS.supports("list-style-type", "tigrinya-et-abegede")');
+ shouldBeFalse('CSS.supports("list-style-type", "ethiopic-abegede-ti-et")');
+ shouldBeFalse('CSS.supports("list-style-type", "lower-norwegian")');
+ shouldBeFalse('CSS.supports("list-style-type", "upper-greek")');
+ shouldBeFalse('CSS.supports("list-style-type", "upper-norwegian")');
+ shouldBeFalse('CSS.supports("list-style-type", "asterisks")');
+ shouldBeFalse('CSS.supports("list-style-type", "footnotes")');
+</script>
+</head>
+</html>

Powered by Google App Engine
This is Rietveld 408576698