This file is indexed.

/usr/lib/ruby/vendor_ruby/capybara/spec/views/with_hover.erb is in ruby-capybara 2.5.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
  <head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
    <title>with_hover</title>
  </head>

  <body id="with_hover">
    <style type="text/css">
      .hidden_until_hover {display: none;}
      .wrapper:hover .hidden_until_hover { display: block }
    </style>
    <div class="wrapper">
      Some text here so the wrapper has size
      <div class="hidden_until_hover">Here I am</div>
    </div>
  </body>
</html>