summaryrefslogtreecommitdiffstats
path: root/layout/mathml/tests/test_bug553917.html
blob: 439ddbdd68cb9e06fc414a6221402a9c08745572 (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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!DOCTYPE HTML>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=553917
-->
<html>
  <head>
    <title>Test for Bug 553917</title>
    <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
    <script type="application/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
    <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
    <script type="application/javascript">
      var stringBundleService = 
        SpecialPowers.Cc["@mozilla.org/intl/stringbundle;1"]
                    .getService(SpecialPowers.Ci.nsIStringBundleService);
      var g_bundl =
        stringBundleService.createBundle("chrome://global/locale/mathml/mathml.properties");
      
      var g_errorInfo = {
      /*<math><mroot></mroot></math>
        <math><msub></msub></math>
        <math><msup></msup></math>
        <math><mfrac></mfrac></math>
        <math><msubsup></msubsup></math>
        <math><munderover></munderover></math>*/
        ChildCountIncorrect: {
            status : [false, false, false, false, false, false],
            args : [["mroot"], ["msub"], ["msup"], ["mfrac"], ["msubsup"], ["munderover"]] },
      /*<math fontfamily="serif"></math>
        <math color="#112233"></math>
        <math background="#FFFFFF"></math>
        <math fontsize="10"></math>
        <math xlink:href="http://www.mozilla.org"></math>*/
        DeprecatedSupersededBy: { 
          status: [false, false, false, false, false],
          args: [["fontfamily","mathvariant"],["color","mathcolor"], ["background","mathbackground"], 
                ["fontsize","mathsize"], ["xlink:href","href"]] },
      /*<math><mpadded width="BAD!"></mpadded></math>
        <math><mpadded height="BAD!"></mpadded></math>
        <math><mpadded voffset="BAD!"></mpadded></math>*/
        AttributeParsingError: { 
          status: [false, false, false],
          args: [["BAD!","width","mpadded"], ["BAD!","height","mpadded"], ["BAD!","voffset","mpadded"]]
        },
      /*<math scriptlevel="BAD!"></math>
        <math scriptsizemultiplier="BAD!"></math>*/
        AttributeParsingErrorNoTag: {
          status: [false, false],
          args: [["BAD!","scriptlevel"], ["BAD!","scriptsizemultiplier"]]
        },
      /* <math><mo rspace="2..0">+</mo></math>
        <math><mo minsize="1.5notaunit">+</mo></math>
        <math><mspace width="2"/></math>
        <math><mo lspace="BADlspace">+</mo></math>
        <math><mspace height="BADheight"/></math>
        <math><mspace depth="BADdepth"/></math>*/
        LengthParsingError : {
          status: [false, false, false, false, false, false],
          args: [["2..0"], ["1.5notaunit"], ["2"],["BADlspace"],["BADheight"],["BADdepth"]]
        },
      /*<math><mmultiscripts></mmultiscripts></math>
        <math><mmultiscripts><mprescripts/><mprescripts/></mmultiscripts></math>
        <math><mmultiscripts><mi>x</mi><mi>y</mi></mmultiscripts></math>*/
        MMultiscriptsErrors: {
          status: [false, false, false],
          args: ["NoBase","DuplicateMprescripts", "SubSupMismatch"]
        },
      /*<math><mo minsize="2">+</mo></math>*/
        UnitlessValuesAreDeprecated : {
          status : [false],
          args : [[]] }};
      
      var g_errorTypes = ["ChildCountIncorrect","DeprecatedSupersededBy","AttributeParsingError",
                          "AttributeParsingErrorNoTag","LengthParsingError", "MMultiscriptsErrors",
                          "UnitlessValuesAreDeprecated"];
      
      function getErrorMessage(name,idx)
      {
        if (name != "MMultiscriptsErrors") {
          var formatParams = g_errorInfo[name].args[idx];
          if (formatParams.length > 0) {
            return g_bundl.formatStringFromName(name,formatParams,formatParams.length);
          } else {
            return g_bundl.GetStringFromName(name);
          }
        } else {
          return g_bundl.GetStringFromName(g_errorInfo[name].args[idx]);
        }
      }
    
    /** Checks the roll call to see if all expected error messages were present. */
    function processRollCall()
    {
      for (var i=0; i<g_errorTypes.length;i++) {
        for (var j = 0; j < g_errorInfo[g_errorTypes[i]].status.length; j++) {
          ok(g_errorInfo[g_errorTypes[i]].status[j],
             "\"" + getErrorMessage(g_errorTypes[i], j)
                  + "\" was expected to be in the error console.");
        }
      }
    }
    
    /** Tests a candidate to see if it is one of the expected messages and updates the 
        g_errorInfo structure if it is. */
    function doRollCall(msg)
    {
      for (var i = 0; i < g_errorTypes.length; i++) {
        for (var j = 0; j < g_errorInfo[g_errorTypes[i]].status.length; j++) {
          if (msg == getErrorMessage(g_errorTypes[i], j))
          {
            g_errorInfo[g_errorTypes[i]].status[j] = true;
          }
        }
      }
    }
    
    SpecialPowers.registerConsoleListener(
      function (msg) {
        if (msg.message == "SENTINEL") {
          processRollCall();
          SimpleTest.finish();
        } else if (msg.isScriptError) {
          doRollCall(msg.errorMessage);
        }
      });
      
    SimpleTest.waitForExplicitFinish();
  </script>
  </head>
  <body onload="SpecialPowers.postConsoleSentinel();">
    <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=553917">Mozilla Bug 553917</a>
    <!-- ChildCountIncorrect -->
    <math><mroot></mroot></math>
    <math><msub></msub></math>
    <math><msup></msup></math>
    <math><mfrac></mfrac></math>
    <math><msubsup></msubsup></math>
    <math><munderover></munderover></math>
    
    <!-- DeprecatedSupersededBy -->
    <math fontfamily="serif"></math>
    <math color="#112233"></math>
    <math background="#FFFFFF"></math>
    <math fontsize="10"></math>
    <math xlink:href="http://www.mozilla.org"></math>
    
    <!-- AttributeParsingError -->
    <math><mpadded width="BAD!"></mpadded></math>
    <math><mpadded height="BAD!"></mpadded></math>
    <math><mpadded voffset="BAD!"></mpadded></math>
    
    <!-- AttributeParsingErrorNoTag -->
    <math scriptlevel="BAD!"></math>
    <math scriptsizemultiplier="BAD!"></math>
    
    <!-- LengthParsingError -->
    <math><mo rspace="2..0">+</mo></math>
    <math><mo minsize="1.5notaunit">+</mo></math>
    <math><mspace width="2"/></math>
    <math><mo lspace="BADlspace">+</mo></math>
    <math><mspace height="BADheight"/></math>
    <math><mspace depth="BADdepth"/></math>
    
    <!-- MMultiscriptsErrors -->
    <math><mmultiscripts></mmultiscripts></math>
    <math><mmultiscripts><mprescripts/><mprescripts/></mmultiscripts></math>
    <math><mmultiscripts><mi>x</mi><mi>y</mi></mmultiscripts></math>
    
    <!-- UnitlessValuesAreDeprecated -->
    <math><mo minsize="2">+</mo></math>
  </body>
</html>