Replies: 1 comment 1 reply
-
现在棘手的是不能在简单的例子中复现该问题,无法通过调试来推断 Chrome 调用 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
https://developer.mozilla.org/en-US/docs/Web/API/Window/load_event
在脚本执行和有资源请求时不应该触发
load
事件,在微任务中发起的资源请求也能阻止触发load
事件,但是 Chrome 和 Firefox/Safari 似乎有一些微弱的区别:src/index.ts
中倒数第二行的load
事件处理器中设置断点当发生中断时,Firefox 已经渲染了页面内容,而 Chrome 则没有,而且 Chrome 发生中断时
import("src/app.ts")
还没有请求完呢,这是 Chrome 的 Bug 吗?Beta Was this translation helpful? Give feedback.
All reactions