mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
26 lines
920 B
HTML
26 lines
920 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=773891
|
|
-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>This is an app for csp testing</title>
|
|
|
|
<link rel="stylesheet" type="text/css"
|
|
href="file_csp_bug773891.sjs?type=style&origin=same_origin" />
|
|
<link rel="stylesheet" type="text/css"
|
|
href="http://example.com/tests/content/base/test/file_csp_bug773891.sjs?type=style&origin=cross_origin" />
|
|
</head>
|
|
<body>
|
|
|
|
<script src="file_csp_bug773891.sjs?type=script&origin=same_origin"></script>
|
|
<script src="http://example.com/tests/content/base/test/file_csp_bug773891.sjs?type=script&origin=cross_origin"></script>
|
|
<img src="file_csp_bug773891.sjs?type=img&origin=same_origin" />
|
|
<img src="http://example.com/tests/content/base/test/file_csp_bug773891.sjs?type=img&origin=cross_origin" />
|
|
|
|
Test for CSP applied to (simulated) app.
|
|
|
|
</body>
|
|
</html>
|