Commit a1f6e2da authored by Romain Courteaud's avatar Romain Courteaud

Typo

parent 97b06d20
...@@ -4246,9 +4246,9 @@ ...@@ -4246,9 +4246,9 @@
.then(function () { .then(function () {
var iframe_body = iframe.contentWindow.document.body, var iframe_body = iframe.contentWindow.document.body,
iframe_text = iframe_body.textContent; iframe_text = iframe_body.textContent;
ok(true, iframe_text.indexOf('SyntaxError') !== -1, iframe_text); ok(iframe_text.indexOf('SyntaxError') !== -1, iframe_text);
ok(true, iframe_text.indexOf('getFoo') !== -1, iframe_text); ok(iframe_text.indexOf('getFoo') !== -1, iframe_text);
ok(true, iframe_text.indexOf('error_gadget.html') !== -1, iframe_text); ok(iframe_text.indexOf('error_gadget.html') !== -1, iframe_text);
}) })
.fail(function (error) { .fail(function (error) {
ok(false, error); ok(false, error);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment