From 5f20a9fc239abb18dc1c9a984d3a0426eb32c3c2 Mon Sep 17 00:00:00 2001 From: Estelle Weyl Date: Thu, 23 Mar 2023 19:15:37 -0700 Subject: [PATCH] remove type() from prefixed code. --- images/image-set-type.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/images/image-set-type.html b/images/image-set-type.html index eadae1de..ad8d35e6 100644 --- a/images/image-set-type.html +++ b/images/image-set-type.html @@ -17,8 +17,8 @@ .box { background-image: -webkit-image-set( - url("large-balloons.avif") type("image/avif"), - url("large-balloons.jpg") type("image/jpeg")); + url("large-balloons.avif"), + url("large-balloons.jpg")); background-image: image-set( url("large-balloons.avif") type("image/avif"), url("large-balloons.jpg") type("image/jpeg")); @@ -34,8 +34,8 @@