Merge remote-tracking branch 'origin/next' into next
This commit is contained in:
commit
f226d56481
2 changed files with 2 additions and 2 deletions
|
|
@ -10,7 +10,7 @@
|
||||||
global.m = m
|
global.m = m
|
||||||
}
|
}
|
||||||
/* eslint-enable no-undef */
|
/* eslint-enable no-undef */
|
||||||
})(typeof window !== "undefined" ? window : {}, function (global, undefined) { // eslint-disable-line
|
})(typeof window !== "undefined" ? window : this, function (global, undefined) { // eslint-disable-line
|
||||||
"use strict"
|
"use strict"
|
||||||
|
|
||||||
m.version = function () {
|
m.version = function () {
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ describe("m.trust()", function () {
|
||||||
expect(root.childNodes[3].tagName).to.equal("I")
|
expect(root.childNodes[3].tagName).to.equal("I")
|
||||||
})
|
})
|
||||||
|
|
||||||
// TODO: this currently fails.
|
// TODO: m.trust's contents are having their tags stripped.
|
||||||
xit("works with mixed trusted content in td", function () {
|
xit("works with mixed trusted content in td", function () {
|
||||||
var root = document.createElement("table")
|
var root = document.createElement("table")
|
||||||
root.appendChild(root = document.createElement("tr"))
|
root.appendChild(root = document.createElement("tr"))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue