Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2269)

Unified Diff: chrome/browser/resources/chromeos/chromevox/host/interface/abstract_mathjax.js

Issue 2939273002: DO NOT SUBMIT: what chrome/browser/resources/ could eventually look like with clang-format (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/chromevox/host/interface/abstract_mathjax.js
diff --git a/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_mathjax.js b/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_mathjax.js
index ce19c05618d505927a7e706ac32f9e2f166733c2..98fa1636d39c71d3b53783b2853e612925c75522 100644
--- a/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_mathjax.js
+++ b/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_mathjax.js
@@ -17,8 +17,7 @@ goog.require('cvox.MathJaxInterface');
* @constructor
* @implements {cvox.MathJaxInterface}
*/
-cvox.AbstractMathJax = function() {
-};
+cvox.AbstractMathJax = function() {};
/**
@@ -69,8 +68,8 @@ cvox.AbstractMathJax.prototype.configMediaWiki = goog.abstractMethod;
* an id string.
*/
cvox.AbstractMathJax.prototype.getAllTexs = function(callback) {
- var allTexs = document.
- querySelectorAll(cvox.DomUtil.altMathQuerySelector('tex'));
+ var allTexs =
+ document.querySelectorAll(cvox.DomUtil.altMathQuerySelector('tex'));
for (var i = 0, tex; tex = allTexs[i]; i++) {
this.getTex(callback, tex);
}
@@ -83,8 +82,8 @@ cvox.AbstractMathJax.prototype.getAllTexs = function(callback) {
* an id string.
*/
cvox.AbstractMathJax.prototype.getAllAsciiMaths = function(callback) {
- var allAsciiMaths = document.
- querySelectorAll(cvox.DomUtil.altMathQuerySelector('asciimath'));
+ var allAsciiMaths =
+ document.querySelectorAll(cvox.DomUtil.altMathQuerySelector('asciimath'));
for (var i = 0, tex; tex = allAsciiMaths[i]; i++) {
this.getAsciiMath(callback, tex);
}

Powered by Google App Engine
This is Rietveld 408576698