Fix "passess" typo in css-color causing test failures (#8438)

Because greentext-ref.html did not have this typo, a number of tests
were failing because of this, discovered when trying to import when into
Chromium. Fix the typo everywhere.
diff --git a/css/css-color/blacktext-ref.html b/css/css-color/blacktext-ref.html
index 7db2c1f..ddfa910 100644
--- a/css/css-color/blacktext-ref.html
+++ b/css/css-color/blacktext-ref.html
@@ -5,5 +5,5 @@
     .test { color: #000000}
 </style>
 <body>
-    <p class="test">Test passess if this text is black</p>
+    <p class="test">Test passes if this text is black</p>
 </body>
diff --git a/css/css-color/color-001.html b/css/css-color/color-001.html
index 5d93d5e..580307b 100644
--- a/css/css-color/color-001.html
+++ b/css/css-color/color-001.html
@@ -9,5 +9,5 @@
     .test {color: green}
 </style>
 <body>
-    <p class="test">Test passess if this text is green</p>
+    <p class="test">Test passes if this text is green</p>
 </body>
diff --git a/css/css-color/color-002.html b/css/css-color/color-002.html
index 8b53b68..7d2f5b3 100644
--- a/css/css-color/color-002.html
+++ b/css/css-color/color-002.html
@@ -9,5 +9,5 @@
     .test {color: initial}
 </style>
 <body>
-    <p class="test">Test passess if this text is black</p>
+    <p class="test">Test passes if this text is black</p>
 </body>
diff --git a/css/css-color/color-003.html b/css/css-color/color-003.html
index df01b0a..6652277 100644
--- a/css/css-color/color-003.html
+++ b/css/css-color/color-003.html
@@ -10,5 +10,5 @@
 	.inner {color: currentcolor;}
 </style>
 <body>
-    <p class="outer"><span class="inner">Test passess if this text is green</span></p>
+    <p class="outer"><span class="inner">Test passes if this text is green</span></p>
 </body>
diff --git a/css/css-color/hex-001.html b/css/css-color/hex-001.html
index b3c1093..4ff5cdb 100644
--- a/css/css-color/hex-001.html
+++ b/css/css-color/hex-001.html
@@ -9,5 +9,5 @@
     .test {color: #008000}
 </style>
 <body>
-    <p class="test">Test passess if this text is green</p>
+    <p class="test">Test passes if this text is green</p>
 </body>
diff --git a/css/css-color/hex-002.html b/css/css-color/hex-002.html
index 5348098..5e0d48a 100644
--- a/css/css-color/hex-002.html
+++ b/css/css-color/hex-002.html
@@ -9,5 +9,5 @@
     .test {color: #008000FF}
 </style>
 <body>
-    <p class="test">Test passess if this text is green</p>
+    <p class="test">Test passes if this text is green</p>
 </body>
diff --git a/css/css-color/hex-003.html b/css/css-color/hex-003.html
index 13889e3..68ed648 100644
--- a/css/css-color/hex-003.html
+++ b/css/css-color/hex-003.html
@@ -8,6 +8,6 @@
     .test {color: #070}
 </style>
 <body>
-    <p class="test">Test passess if this text is green</p>
+    <p class="test">Test passes if this text is green</p>
 	<!-- #007700, not #008000, but visually similar. Thus, no reftest -->
 </body>
diff --git a/css/css-color/hex-004.html b/css/css-color/hex-004.html
index e51a8d9..d2f37fb 100644
--- a/css/css-color/hex-004.html
+++ b/css/css-color/hex-004.html
@@ -8,6 +8,6 @@
     .test {color: #070F}
 </style>
 <body>
-    <p class="test">Test passess if this text is green</p>
+    <p class="test">Test passes if this text is green</p>
 	<!-- #007700, not #008000, but visually similar. Thus, no reftest -->
 </body>
diff --git a/css/css-color/lab-001.html b/css/css-color/lab-001.html
index b8b2a23..ba76ae5 100644
--- a/css/css-color/lab-001.html
+++ b/css/css-color/lab-001.html
@@ -9,5 +9,5 @@
     .test {color: lab(46.277 -47.562 48.583)} 	// green (sRGB #008000) converted to Lab
 </style>
 <body>
-    <p class="test">Test passess if this text is green</p>
+    <p class="test">Test passes if this text is green</p>
 </body>
diff --git a/css/css-color/lab-002.html b/css/css-color/lab-002.html
index 5927408..19318b6 100644
--- a/css/css-color/lab-002.html
+++ b/css/css-color/lab-002.html
@@ -10,5 +10,5 @@
     .test { color: lab(0 0 0)} 	// black (sRGB #000000) converted to Lab
 </style>
 <body>
-    <p class="test">Test passess if this text is black</p>
+    <p class="test">Test passes if this text is black</p>
 </body>
diff --git a/css/css-color/lab-003.html b/css/css-color/lab-003.html
index 672c5da..236b078 100644
--- a/css/css-color/lab-003.html
+++ b/css/css-color/lab-003.html
@@ -10,5 +10,5 @@
     .test {	color: lab(100 0 0);} 	// white (sRGB #FFFFFF) converted to Lab
 </style>
 <body>
-    <p class="test">Test passess if this text is white</p>
+    <p class="test">Test passes if this text is white</p>
 </body>
diff --git a/css/css-color/lch-001.html b/css/css-color/lch-001.html
index 9d82404..e06408c 100644
--- a/css/css-color/lch-001.html
+++ b/css/css-color/lch-001.html
@@ -9,5 +9,5 @@
     .test {color: lab(46.277 -67.989 134.391)} 	// green (sRGB #008000) converted to LCH
 </style>
 <body>
-    <p class="test">Test passess if this text is green</p>
+    <p class="test">Test passes if this text is green</p>
 </body>
diff --git a/css/css-color/lch-002.html b/css/css-color/lch-002.html
index ae845ac..e86cec7 100644
--- a/css/css-color/lch-002.html
+++ b/css/css-color/lch-002.html
@@ -10,5 +10,5 @@
     .test { color: lch(0 0 0)} 	// black (sRGB #000000) converted to LCH
 </style>
 <body>
-    <p class="test">Test passess if this text is black</p>
+    <p class="test">Test passes if this text is black</p>
 </body>
diff --git a/css/css-color/lch-003.html b/css/css-color/lch-003.html
index 55a35cf..0e2f926 100644
--- a/css/css-color/lch-003.html
+++ b/css/css-color/lch-003.html
@@ -10,5 +10,5 @@
     .test {	color: lch(100 0 0);} 	// white (sRGB #FFFFFF) converted to LCH
 </style>
 <body>
-    <p class="test">Test passess if this text is white</p>
+    <p class="test">Test passes if this text is white</p>
 </body>
diff --git a/css/css-color/whitetext-ref.html b/css/css-color/whitetext-ref.html
index 5cb0997..0237a81 100644
--- a/css/css-color/whitetext-ref.html
+++ b/css/css-color/whitetext-ref.html
@@ -5,5 +5,5 @@
     .test { color: #FFFFFF; background-color: #333; padding: 3px}
 </style>
 <body>
-    <p class="test">Test passess if this text is white</p>
+    <p class="test">Test passes if this text is white</p>
 </body>