module Loofah::HTML5::Scrub

def scrub_css_attribute(node)

Experimental RBS support (using type sampling data from the type_fusion project).

def scrub_css_attribute: (Nokogiri::XML::Element node) -> nil

This signature was generated using 21 samples from 1 application.

def scrub_css_attribute(node)
  style = node.attributes["style"]
  style.value = scrub_css(style.value) if style
end