Skip to content

Commit fc050f9

Browse files
committed
[css-typed-om] Use USVString for urls.
(Addresses w3c#244)
1 parent 2de5444 commit fc050f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

css-typed-om/Overview.bs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1509,9 +1509,9 @@ interface CSSImageValue : CSSResourceValue {
15091509
readonly attribute double? intrinsicRatio;
15101510
};
15111511

1512-
[Constructor(DOMString url)]
1512+
[Constructor(USVString url)]
15131513
interface CSSURLImageValue : CSSImageValue {
1514-
readonly attribute DOMString url;
1514+
readonly attribute USVString url;
15151515
};
15161516

15171517
</pre>

0 commit comments

Comments
 (0)