mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 03:48:18 -07:00
21 lines
416 B
Plaintext
21 lines
416 B
Plaintext
|
url(foo.png)
|
||
|
url('foo.png')
|
||
|
url("foo.png")
|
||
|
url('foo\
|
||
|
bar.png')
|
||
|
url("foo\
|
||
|
bar.png")
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
[
|
||
|
["url", "url(foo.png)"],
|
||
|
["url", "url('foo.png')"],
|
||
|
["url", "url(\"foo.png\")"],
|
||
|
["url", "url('foo\\\r\nbar.png')"],
|
||
|
["url", "url(\"foo\\\r\nbar.png\")"]
|
||
|
]
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
Checks for url(), unquoted, single-quoted and double-quoted.
|