Skip to content

Commit

Permalink
Identify relative protocol asset URLs (rails#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
barrywoolgar authored Mar 7, 2022
1 parent 24ecd7d commit 5d325d7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
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

0 comments on commit 5d325d7

Please sign in to comment.