17 lines
697 B
HTML
17 lines
697 B
HTML
<!DOCTYPE html>
|
|
|
|
<!-- 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/. -->
|
|
|
|
<!-- This page is used to host a (remote) browser for background page
|
|
thumbnailing purposes. It's always loaded as chrome:// . -->
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<!-- This CSP has no influence on the <browser> elements used for the thumbnails. -->
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'none';" />
|
|
<title>backgroundPageThumbs.html</title>
|
|
</head>
|
|
<body></body>
|
|
</html>
|