mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict";
|
|
|
|
const hiddenFrames = require("sdk/frame/hidden-frame");
|
|
const { HiddenFrame } = hiddenFrames;
|
|
|
|
exports["test Frame"] = function(assert, done) {
|
|
let url = "data:text/html;charset=utf-8,<!DOCTYPE%20html>";
|
|
|
|
let hiddenFrame = hiddenFrames.add(HiddenFrame({
|
|
onReady: function () {
|
|
assert.equal(this.element.contentWindow.location, "about:blank",
|
|
"HiddenFrame loads about:blank by default.");
|
|
|
|
function onDOMReady() {
|
|
hiddenFrame.element.removeEventListener("DOMContentLoaded", onDOMReady,
|
|
false);
|
|
assert.equal(hiddenFrame.element.contentWindow.location, url,
|
|
"HiddenFrame loads the specified content.");
|
|
done();
|
|
}
|
|
|
|
this.element.addEventListener("DOMContentLoaded", onDOMReady, false);
|
|
this.element.setAttribute("src", url);
|
|
}
|
|
}));
|
|
};
|
|
|
|
require("test").run(exports);
|