aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
Diffstat (limited to 'actionview')
-rw-r--r--actionview/lib/action_view/helpers/sanitize_helper/sanitizers.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/actionview/lib/action_view/helpers/sanitize_helper/sanitizers.rb b/actionview/lib/action_view/helpers/sanitize_helper/sanitizers.rb
index eb353d79e2..21d13412c1 100644
--- a/actionview/lib/action_view/helpers/sanitize_helper/sanitizers.rb
+++ b/actionview/lib/action_view/helpers/sanitize_helper/sanitizers.rb
@@ -72,13 +72,6 @@ module ActionView
Loofah::HTML5::Scrub.scrub_css style_string
end
- def remove_xpaths(html, xpaths)
- html = Loofah.fragment(html) unless html.is_a? Nokogiri::XML::DocumentFragment
- xpaths.each do |xpath|
- html.xpath(xpath).each { |subtree| subtree.remove }
- end
- end
-
def protocol_separator
self.class.protocol_separator
end