OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 attribute DOMString name; | 115 attribute DOMString name; |
116 | 116 |
117 attribute DOMString status; | 117 attribute DOMString status; |
118 [MeasureAs=WindowDefaultStatus] attribute DOMString defaultStatus; | 118 [MeasureAs=WindowDefaultStatus] attribute DOMString defaultStatus; |
119 // This attribute is an alias of defaultStatus and is necessary for legacy u
ses. | 119 // This attribute is an alias of defaultStatus and is necessary for legacy u
ses. |
120 [ImplementedAs=defaultStatus, MeasureAs=WindowDefaultstatus] attribute DOMSt
ring defaultstatus; | 120 [ImplementedAs=defaultStatus, MeasureAs=WindowDefaultstatus] attribute DOMSt
ring defaultstatus; |
121 | 121 |
122 // Self referential attributes | 122 // Self referential attributes |
123 [Replaceable, DoNotCheckSecurity] readonly attribute Window self; | 123 [Replaceable, DoNotCheckSecurity] readonly attribute Window self; |
124 [DoNotCheckSecurity, Unforgeable] readonly attribute Window window; | 124 [DoNotCheckSecurity, Unforgeable] readonly attribute Window window; |
125 [Replaceable, DoNotCheckSecurity] readonly attribute Window frames; | 125 [Replaceable, DoNotCheckSecurity] readonly attribute Window frames; |
126 | 126 |
127 [DoNotCheckSecurity, Custom=Setter] attribute Window opener; | 127 [DoNotCheckSecurity, Custom=Setter] attribute Window opener; |
128 [Replaceable, DoNotCheckSecurity] readonly attribute Window parent; | 128 [Replaceable, DoNotCheckSecurity] readonly attribute Window parent; |
129 [DoNotCheckSecurity, Unforgeable] readonly attribute Window top; | 129 [DoNotCheckSecurity, Unforgeable] readonly attribute Window top; |
130 | 130 |
131 // DOM Level 2 AbstractView Interface | 131 // DOM Level 2 AbstractView Interface |
132 readonly attribute Document document; | 132 readonly attribute Document document; |
133 | 133 |
134 // CSSOM View Module | 134 // CSSOM View Module |
135 MediaQueryList matchMedia(DOMString query); | 135 MediaQueryList matchMedia(DOMString query); |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 // FIXME: make this typedef accurate once enough of http://crbug.com/240176 | 217 // FIXME: make this typedef accurate once enough of http://crbug.com/240176 |
218 // is in place. | 218 // is in place. |
219 // FIXME: consider putting this typedef in an .idl file containing spec-wide | 219 // FIXME: consider putting this typedef in an .idl file containing spec-wide |
220 // utility type definitions. | 220 // utility type definitions. |
221 typedef MessagePort Transferable; | 221 typedef MessagePort Transferable; |
222 | 222 |
223 Window implements GlobalEventHandlers; | 223 Window implements GlobalEventHandlers; |
224 Window implements WindowBase64; | 224 Window implements WindowBase64; |
225 Window implements WindowEventHandlers; | 225 Window implements WindowEventHandlers; |
226 Window implements WindowTimers; | 226 Window implements WindowTimers; |
OLD | NEW |