This file is indexed.

/usr/share/javascript/ie7/ie7-squish.js is in libjs-ie7 2.1~beta4-2.

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
/* ---------------------------------------------------------------------

  Squish some IE bugs!

  Some of these bug fixes may have adverse effects so they are
  not included in the standard library. Add your own if you want.

--------------------------------------------------------------------- */// NOTE: IE7.Layout.boxSizing is the same as the "Holly Hack"
IE7.loaded&&IE7.appVersion<7&&(IE7.CSS.addFix(/(float\s*:\s*(left|right))/,"display:inline;$1"),IE7.appVersion>=6&&IE7.CSS.addRecalc("float","(left|right)",function(e){IE7.Layout.boxSizing(e.parentElement),e.style.display="inline"}),IE7.CSS.addRecalc("position","absolute|fixed",function(e){e.offsetParent&&e.offsetParent.currentStyle.position==="relative"&&IE7.Layout.boxSizing(e.offsetParent)}));