This file is indexed.

/usr/share/javascript/mathjax/test/index-images.html is in libjs-mathjax 2.7.0-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
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<head>
<title>MathJax Test Page</title>
<!-- Copyright (c) 2009-2016 The MathJax Consortium -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1">

<script type="text/x-mathjax-config">
//
//  Do NOT use this page as a template for your own pages.  It includes 
//  code that is needed for testing your site's installation of MathJax,
//  and that should not be used in normal web pages.  Use sample.html as
//  the example for how to call MathJax in your own pages.
//
  MathJax.HTML.Cookie.Set("menu",{});
  MathJax.Hub.Config({
    extensions: ["tex2jax.js"],
    jax: ["input/TeX","output/HTML-CSS"],
    "HTML-CSS": {
      availableFonts:[], preferredFont: null, webFont: null,
      styles: {".MathJax_Preview": {visibility: "hidden"}}
    } 
  });

(function (HUB) {
  
  var MINVERSION = {
    Firefox: 3.0,
    Opera: 9.52,
    MSIE: 6.0,
    Chrome: 0.3,
    Safari: 2.0,
    Konqueror: 4.0,
    Unknown: 10000.0 // always disable unknown browsers
  };
  
  if (!HUB.Browser.versionAtLeast(MINVERSION[HUB.Browser]||0.0)) {
    HUB.Config({
      jax: [],                   // don't load any Jax
      extensions: [],            // don't load any extensions
      "v1.0-compatible": false   // skip warning message due to no jax
    });
    setTimeout('document.getElementById("badBrowser").style.display = ""',0);
  }

  if (HUB.Browser.isMSIE && !HUB.Browser.versionAtLeast("7.0")) {
    setTimeout('document.getElementById("MSIE6").style.display = ""');
  }
  
})(MathJax.Hub);

</script>
<script type="text/javascript" src="../MathJax.js"></script>

<style>
.warning {
  color: #800020;
  background-color: #FFF8F8;
  border: 2px solid red;
  margin: 1em 5em;
  padding: 1em;
}
</style>
</head>
<body>

<noscript>
<div style="color:#CC0000; text-align:center">
<b>Warning: <a href="http://www.mathjax.org/">MathJax</a>
requires JavaScript to process the mathematics on this page.<br />
If your browser supports JavaScript, be sure it is enabled.</b>
</div>
<hr>
</noscript>

<blockquote>

<h1>MathJax Test Page</h1>

<p>
If you see typeset mathematics below, then MathJax is working.  If you see
TeX code instead, MathJax is not working for you.
</p>
<!------------------------------------------------------------------------>
<hr>

<p>
\[
\frac{-b\pm\sqrt{b^2-4ac}}{2a}
\]
</p>

<div style="color:green">
<div style="text-align:center; color:red; font-size:120%" class="MathJax_Preview">
MathJax is not working!
</div><script type="math/tex; mode=display">
\bf MathJax\ Image\ Fonts\ Appear\ to\ be\ Working!
</script>
</div>

<hr>

<!------------------------------------------------------------------------>

<div id="badBrowser" style="display:none">
<div class="warning">
<b>WARNING</b>: The browser you are using does not appear to support
MathJax, so we can't test if MathJax is working.  Please try a different
browser, or a newer version of your browser in order to test MathJax.
</div>
<hr>
</div>

<!------------------------------------------------------------------------>

<div id="MSIE6" style="display:none">
<div class="warning">
<b>WARNING</b>: Internet Explorer 6 does not display images with
alpha-channel transparency very well, so this test will not look good.
But in practice, IE6 will use web-based fonts rather than image fonts
(unless the page forces images, as this one does) so the poor quality
rendering on this test page does not indicate a problem with MathJax.
</div>
<hr>
</div>

<!------------------------------------------------------------------------>

If the mathematics does not show up properly, you may not have not
installed the MathJax web fonts correctly.  Follow the steps in the 
<a href="../docs/html/installation.html">installation instructions</a>.
<p>

</blockquote>

</body>
</html>