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 [Frame](https://cs.chromium.org/Source/core/frame/Frame.h) interface | |
domenic
2016/09/23 13:23:35
If you click on this you get a search results page
jochen (gone - plz use gerrit)
2016/09/23 16:42:21
test files... :(
| |
17 where the main implementation is | |
18 [LocalFrame](https://cs.chromium.org/Source/core/frame/LocalFrame.h). | |
19 | |
20 ### [Window object](https://html.spec.whatwg.org/#window) | |
21 | |
22 A Window object corresponds to the | |
16 [DOMWindow](https://cs.chromium.org/Source/core/frame/DOMWindow.h) interface | 23 [DOMWindow](https://cs.chromium.org/Source/core/frame/DOMWindow.h) interface |
17 where the main implementation is | 24 where the main implementation is |
18 [LocalDOMWindow](https://cs.chromium.org/Source/core/frame/LocalDOMWindow.h). | 25 [LocalDOMWindow](https://cs.chromium.org/Source/core/frame/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.cpp). | |
domenic
2016/09/23 13:23:35
Header file (https://cs.chromium.org/chromium/src/
dcheng
2016/09/23 16:16:14
Agree that .h would be better here for consistency
jochen (gone - plz use gerrit)
2016/09/23 16:42:21
done
| |
OLD | NEW |