OLD | NEW |
1 # Mapping of spec concepts to code | 1 # Mapping of spec concepts to code |
2 | 2 |
3 Blink is Chromium's implementation of the open web platform. This document | 3 Blink is Chromium's implementation of the open web platform. This document |
4 attempts to map terms and concepts found in the specification of the open web | 4 attempts to map terms and concepts found in the specification of the open web |
5 platfrom to classes and files found in Blink's source tree. | 5 platfrom to classes and files found in Blink's source tree. |
6 | 6 |
7 [TOC] | 7 [TOC] |
8 | 8 |
9 ## HTML | 9 ## HTML |
10 | 10 |
11 Concepts found in the [HTML spec](https://html.spec.whatwg.org/). | 11 Concepts found in the [HTML spec](https://html.spec.whatwg.org/). |
12 | 12 |
13 ### [browsing context](https://html.spec.whatwg.org/#browsing-context) | 13 ### [browsing context](https://html.spec.whatwg.org/#browsing-context) |
14 | 14 |
15 A browsing context corresponds to the | 15 A browsing context corresponds to the |
16 [DOMWindow](https://cs.chromium.org/Source/core/frame/DOMWindow.h) interface | 16 [Frame](https://cs.chromium.org/src/third_party/WebKit/Source/core/frame/Frame.h
) |
17 where the main implementation is | 17 interface where the main implementation is |
18 [LocalDOMWindow](https://cs.chromium.org/Source/core/frame/LocalDOMWindow.h). | 18 [LocalFrame](https://cs.chromium.org/src/third_party/WebKit/Source/core/frame/Lo
calFrame.h). |
| 19 |
| 20 ### [Window object](https://html.spec.whatwg.org/#window) |
| 21 |
| 22 A Window object corresponds to the |
| 23 [DOMWindow](https://cs.chromium.org/src/third_party/WebKit/Source/core/frame/DOM
Window.h) |
| 24 interface where the main implementation is |
| 25 [LocalDOMWindow](https://cs.chromium.org/src/third_party/WebKit/Source/core/fram
e/LocalDOMWindow.h). |
| 26 |
| 27 ### [WindowProxy](https://html.spec.whatwg.org/#windowproxy) |
| 28 |
| 29 The WindowProxy is part of the bindings implemented by a class of the [same |
| 30 name](https://cs.chromium.org/Source/bindings/core/v8/WindowProxy.h). |
OLD | NEW |