We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd9812a commit 8be70f5Copy full SHA for 8be70f5
1 file changed
org/w3c/css/values/CssURL.java
@@ -93,7 +93,7 @@ public void set(String s, ApplContext ac, URL base)
93
if (!urlHeading.startsWith("url"))
94
throw new InvalidParamException("url", s, ac);
95
// special case for data url...
96
- if (urlname.startsWith("data:")) {
+ if (urlname.contains("data:")) {
97
// no more processing.
98
value = checkDataURL(urlname);
99
return;
0 commit comments