Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Jason Ren <[email protected]>
  • Loading branch information
yin1999 and jasonren0403 authored Nov 24, 2023
1 parent b9edb5b commit d9166c5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions files/zh-cn/web/api/messageport/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ _继承自父类 {{domxref("EventTarget")}} 的事件回调。_

## 示例

在下面的示例中,你可以看到一个使用 {{domxref("MessageChannel.MessageChannel","MessageChannel()")}} 构造函数创建出的新 channel.
在下面的示例中,你可以看到一个使用 {{domxref("MessageChannel.MessageChannel","MessageChannel()")}} 构造函数创建出的新通道。

当 IFrame 加载完成后,我们给 {{domxref("MessageChannel.port1")}} 注册了一个 {{domxref("MessagePort.onmessage","onmessage")}} 回调,并且使用 {{domxref("window.postMessage")}} 方法把 {{domxref("MessageChannel.port2")}} 和一条消息一起传给 IFrame.
当 IFrame 加载完成后,我们给 {{domxref("MessageChannel.port1")}} 注册了一个 {{domxref("MessagePort.onmessage","onmessage")}} 回调,并且使用 {{domxref("window.postMessage")}} 方法把 {{domxref("MessageChannel.port2")}} 和一条消息一起传给 IFrame

当从 IFrame 收到消息时,`onMessage` 方法会把消息输出到一个段落里。

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ WebSocket 扩展和子协议是在握手过程中通过头信息进行协商的
Think of an extension as compressing a file before e-mailing it to someone. Whatever you do, you're sending the _same_ data in different forms. The recipient will eventually be able to get the same data as your local copy, but it is sent differently. That's what an extension does. WebSockets defines a protocol and a simple way to send data, but an extension such as compression could allow sending the same data but in a shorter format.

> **备注:** 扩展在规范的 5.8, 9, 11.3.2, and 11.4 进行了解释
> **备注:** 扩展在规范的第 5.8、9、11.3.2 11.4 条进行了解释。
### 子协议

Expand Down
2 changes: 1 addition & 1 deletion files/zh-cn/web/api/window/ondragdrop/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ window.addEventListener("dragdrop", funcRef, useCapturing);
- `funcRef`
- : 要注册的事件处理函数。

[Gecko](/zh-CN/docs/Web/API/Window/en/Gecko)([Firefox bug 112288](https://bugzil.la/112288)) 中未实现`window.ondragdrop`属性和`ondragdrop`属性,你必须使用`addEventListener`。有关详细信息,请参见[addEventListener](/zh-CN/docs/Web/API/Window/en/DOM/element.addEventListener)
Firefox 中未实现 `window.ondragdrop` 属性和 `ondragdrop` 属性([Firefox bug 112288](https://bugzil.la/112288),你必须使用 `addEventListener`。有关详细信息,请参见 [addEventListener](/zh-CN/docs/Web/API/EventTarget/addEventListener)

## 示例

Expand Down
2 changes: 1 addition & 1 deletion files/zh-cn/web/http/headers/permissions-policy/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Permissions-Policy: <directive> <allowlist>
- `'src'`: (只在 iframe 中允许) 只要在{{HTMLElement('iframe','src','#Attributes')}} 中的 URL 和加载 iframe 用的 URL 相同,则本特性在 iframe 中允许,
- `'none'`: 从最上层到包含的内容都禁止本特性。 \<origin(s)>: 在特定的源中允许,源 URL 以空格分割。

`*`(在所有源地址启用)`或'none'`(在所有源地址禁用) 只允许单独使用,而`'self'``'src'`可以与多个源地址一起使用
`*``none` 值只允许单独使用,而 `self``src` 值可以与多个源一起使用

所有的特性都有一个如下的默认的 allowlist

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ console.log(newstr); // Cruz, Maria

这将打印 `'Cruz, Maria'`

### 使用內联函数来修改匹配到的字符
### 使用内联函数来修改匹配到的字符

在这个例子中,字符串中所有出现的大写字母都被转换为小写,并且在匹配位置前插入一个连字符。重要的是,在将匹配项作为替换返回之前,需要对匹配项进行额外的操作。

Expand Down
2 changes: 1 addition & 1 deletion files/zh-tw/learn/css/howto/css_faq/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ CSS 並不支援「以另一個樣式規則為基準」的樣式設定法。 (
- 使用 `*` 選取符
- CSS 明確性

你可以使用 [DOM 觀察器](zh_tw/DOM_%e8%a7%80%e5%af%9f%e5%99%a8)_CSS Style Rules_ 來檢查上述問題。
你可以使用 [DOM 觀察器](https://firefox-source-docs.mozilla.org/devtools-user/page_inspector/how_to/examine_and_edit_css/index.html)_CSS Style Rules_ 來檢查上述問題。

### HTML 元素層次問題

Expand Down

0 comments on commit d9166c5

Please sign in to comment.