summaryrefslogtreecommitdiffstats
path: root/parser/htmlparser/tests/mochitest/test_bug396568.html
blob: d4152e797141f26a3fc6ce7640420a712dfad888 (plain)
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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=396568
-->
<head>
  <title>Test for Bug 396568</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  <!--These script tags are part of the test, complete with indentation!-->
  <script language="javascript"






       
          type="text/javascript"></script>
  <script language="javascript"
          type="text/javascript"></script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=396568">Mozilla Bug 396568</a>
<p id="display"></p>
<div id="content" style="display: none">
  
</div>
<pre id="test">
<script class="testbody" type="text/javascript">

/** Test for Bug 396568 **/

 var reached = false;
 try {
   // eslint-disable-next-line no-undef
   noSuchIdentifier;
   reached = true;
 } catch (e) {
   is(e.lineNumber, 37, "Unexpected line number"); // this line number is dependent on the line number of noSuchIdentifier
 }
 is(reached, false, "Exception needed to be thrown");

</script>
</pre>
</body>
</html>