blob: 89d24a698ccbee566e90ba16311c993538e6b54b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
---
title: 'CSP: font-src'
slug: Web/HTTP/Headers/Content-Security-Policy/font-src
tags:
- CSP
- HTTP
- 内容安全策略
- 参考
- 安全
translation_of: Web/HTTP/Headers/Content-Security-Policy/font-src
---
<div>{{HTTPSidebar}}</div>
<p>HTTP {{HTTPHeader("Content-Security-Policy")}} (CSP 内容安全策略) 中 <code><strong>font</strong></code><strong><code>-src</code></strong> 指令定义了 {{cssxref("@font-face")}} 加载字体的有效源规则。</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">CSP 版本</th>
<td>1</td>
</tr>
<tr>
<th scope="row">指令类型</th>
<td>{{Glossary("Fetch directive")}}</td>
</tr>
<tr>
<th scope="row">{{CSP("default-src")}} 替代</th>
<td>是。如果 <code><strong>font</strong></code><strong><code>-src</code></strong> 没有指定,则使用 <code>default-src</code> 指令。</td>
</tr>
</tbody>
</table>
<h2 id="语法">语法</h2>
<p><code>font-src</code> 策略可以包含一个或多个源:</p>
<pre class="syntaxbox">Content-Security-Policy: font-src <source>;
Content-Security-Policy: font-src <source> <source>;
</pre>
<h3 id="源代码">源代码</h3>
<p>{{page("Web/HTTP/Headers/Content-Security-Policy/default-src", "Sources")}}</p>
<h2 id="示例">示例</h2>
<h3 id="反例">反例</h3>
<p>给出这个 CSP 头:</p>
<pre class="brush: bash">Content-Security-Policy: font-src https://example.com/
</pre>
<p>以下的字体源将被阻止,不会加载到浏览器中:</p>
<pre class="brush: html"><style>
@font-face {
font-family: "MyFont";
src: url("https://not-example.com/font");
}
body {
font-family: "MyFont";
}
</style></pre>
<h2 id="规范">规范</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{specName("CSP 3.0", "#directive-font-src", "font-src")}}</td>
<td>{{Spec2('CSP 3.0')}}</td>
<td>无变化</td>
</tr>
<tr>
<td>{{specName("CSP 1.1", "#directive-font-src", "font-src")}}</td>
<td>{{Spec2('CSP 1.1')}}</td>
<td>首次定义</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p class="hidden">本页的兼容性表是根据结构化的数据生成的。如果你想贡献更多数据,请到 <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> 并给我们发 pull request。</p>
<p>{{Compat("http.headers.csp.font-src")}}</p>
<h2 id="See_also">See also</h2>
<ul>
<li>{{HTTPHeader("Content-Security-Policy")}}</li>
<li>{{cssxref("@font-face")}}</li>
</ul>
|