Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: third_party/WebKit/Source/SpecMapping.md

Issue 2357263006: Next attempt at defining browsing context (Closed)
Patch Set: updates Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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).
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698