mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 07:18:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
30
toolkit/components/viewsource/test/browser/browser_srcdoc.js
Normal file
30
toolkit/components/viewsource/test/browser/browser_srcdoc.js
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
/* Any copyright is dedicated to the Public Domain.
|
||||
* http://creativecommons.org/publicdomain/zero/1.0/
|
||||
*/
|
||||
|
||||
const frameSource = `<a href="about:mozilla">good</a>`;
|
||||
const source = `<html><iframe srcdoc='${frameSource}' id="f"></iframe></html>`;
|
||||
|
||||
add_task(function*() {
|
||||
let url = `data:text/html,${source}`;
|
||||
yield BrowserTestUtils.withNewTab({ gBrowser, url }, checkFrameSource);
|
||||
});
|
||||
|
||||
function* checkFrameSource() {
|
||||
let sourceTab = yield openViewFrameSourceTab("#f");
|
||||
registerCleanupFunction(function() {
|
||||
gBrowser.removeTab(sourceTab);
|
||||
});
|
||||
|
||||
yield waitForSourceLoaded(sourceTab);
|
||||
|
||||
let browser = gBrowser.selectedBrowser;
|
||||
let textContent = yield ContentTask.spawn(browser, {}, function*() {
|
||||
return content.document.body.textContent;
|
||||
});
|
||||
is(textContent, frameSource, "Correct content loaded");
|
||||
let id = yield ContentTask.spawn(browser, {}, function*() {
|
||||
return content.document.body.id;
|
||||
});
|
||||
is(id, "viewsource", "View source mode enabled")
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue