diff --git a/feature-queries/or.html b/feature-queries/or.html
index 4e8af4bf..aaa1851f 100644
--- a/feature-queries/or.html
+++ b/feature-queries/or.html
@@ -12,7 +12,7 @@
border: 4px solid blue;
color: blue;
}
- @supports (font-smooth: always) or (-webkit-font-smoothing: always) {
+ @supports (font-smooth: always) or (-webkit-font-smoothing: antialiased) {
.box {
border: 4px dashed darkgreen;
color: darkgreen;
@@ -24,8 +24,7 @@
- If your browser supports font smoothing, the text
- and border will be green.
+ The text and border will be green if your browser supports font smoothing.
@@ -34,7 +33,7 @@
border: 4px solid blue;
color: blue;
}
-@supports (font-smooth: always) or (-webkit-font-smoothing: always) {
+@supports (font-smooth: always) or (-webkit-font-smoothing: antialiased) {
.box {
border: 4px dashed darkgreen;
color: darkgreen;
@@ -44,7 +43,7 @@