mirror of
https://github.com/less/less.js.git
synced 2026-05-01 03:00:22 -04:00
innerText isn't available in ff/chrome/etc so use innerHTML
This commit is contained in:
@@ -54,7 +54,7 @@ var testSheet = function(sheet) {
|
||||
}, "generation of " + lessOutputId + "", 700);
|
||||
|
||||
runs(function() {
|
||||
lessOutput = lessOutputObj.innerText;
|
||||
lessOutput = lessOutputObj.innerText || lessOutputObj.innerHTML;
|
||||
});
|
||||
|
||||
waitsFor(function() {
|
||||
|
||||
Reference in New Issue
Block a user