// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
onload = function() {
chrome.test.getConfig((config) => {
const port = config.testServer.port;
var f = document.createElement('fencedframe');
const url = 'https://a.test:' + port +
'/extensions/api_test/webnavigation/fencedFrames/frame.html';
f.config = new FencedFrameConfig(url);
document.body.appendChild(f);
});
};