This file is indexed.

/usr/share/kde4/apps/plasma/dashboard/AppleClasses/AppleInfoButton.js is in plasma-scriptengine-webkit 4:4.11.8-0ubuntu6.

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
 
function AppleInfoButton( placeElement, unknown, colorA, colorB, clickHandler){

var b = document.createElement("button");
  b.appendChild(document.createTextNode("i"));
  b.onclick = clickHandler;
  placeElement.appendChild(b);

}