Browsing Context
https://developer.mozilla.org/en-US/docs/Glossary/Browsing_context
- Browsing Context 는 브라우저가 Document 를 표시하는 환경이다.
- 모던 브라우저에서는 대부분 tab으로 구분된다. (하지만 때에 따라 window 혹은 페이지의 부분일 수도 있다. -> frame과 iframe의 경우)
- 브라우저의 각각 Browsing Context 에는 고유한 Session History 와 Document 가 있다.
- 각각 Browsing Context 는 연관된 Window Proxy가 있다.
Browsing Context간의 소통
- same Origin 의 Browsing Context 간의 소통은 BroadcastChannel 을 통해 열리고, 사용될 수 있다.