Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Identify relative protocol asset URLs #83

Merged
merged 1 commit into from
Mar 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/propshaft/compilers/css_asset_urls.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class Propshaft::Compilers::CssAssetUrls
attr_reader :assembly

ASSET_URL_PATTERN = /url\(\s*["']?(?!(?:\#|data|http))([^"'\s?#)]+)([#?][^"']+)?\s*["']?\)/
ASSET_URL_PATTERN = /url\(\s*["']?(?!(?:\#|data|http|\/\/))([^"'\s?#)]+)([#?][^"']+)?\s*["']?\)/

def initialize(assembly)
@assembly = assembly
Expand Down
5 changes: 5 additions & 0 deletions test/propshaft/compilers/css_asset_urls_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,11 @@ class Propshaft::Compilers::CssAssetUrlsTest < ActiveSupport::TestCase
assert_match "{ background: url('https://rubyonrails.org/images/rails-logo.svg'); }", compiled
end

test "relative protocol url" do
compiled = compile_asset_with_content(%({ background: url('//rubyonrails.org/images/rails-logo.svg'); }))
assert_match "{ background: url('//rubyonrails.org/images/rails-logo.svg'); }", compiled
end

test "data" do
compiled = compile_asset_with_content(%({ background: url(data:image/png;base64,iRxVB0); }))
assert_match "{ background: url(data:image/png;base64,iRxVB0); }", compiled
Expand Down