1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
6 * @fileoverview Testing stub for MathJax.
10 goog
.provide('cvox.TestMathJax');
12 goog
.require('cvox.AbstractMathJax');
13 goog
.require('cvox.HostFactory');
18 * @extends {cvox.AbstractMathJax}
20 cvox
.TestMathJax = function() {
23 goog
.inherits(cvox
.TestMathJax
, cvox
.AbstractMathJax
);
29 cvox
.TestMathJax
.prototype.isMathjaxActive = function(callback
) { };
35 cvox
.TestMathJax
.prototype.getAllJax = function(callback
) { };
41 cvox
.TestMathJax
.prototype.registerSignal = function(
42 callback
, signal
) { };
48 cvox
.TestMathJax
.prototype.injectScripts = function() { };
54 cvox
.TestMathJax
.prototype.configMediaWiki = function() { };
60 cvox
.TestMathJax
.prototype.getTex = function(callback
, texNode
) { };
66 cvox
.TestMathJax
.prototype.getAsciiMath = function(callback
, asciiMathNode
) { };
69 /** Export platform constructor. */
70 cvox
.HostFactory
.mathJaxConstructor
=