| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 | 122 |
| 123 // Self referential attributes | 123 // Self referential attributes |
| 124 [Replaceable, DoNotCheckSecurity] readonly attribute Window self; | 124 [Replaceable, DoNotCheckSecurity] readonly attribute Window self; |
| 125 [DoNotCheckSecurity, Unforgeable] readonly attribute Window window; | 125 [DoNotCheckSecurity, Unforgeable] readonly attribute Window window; |
| 126 [Replaceable, DoNotCheckSecurity] readonly attribute Window frames; | 126 [Replaceable, DoNotCheckSecurity] readonly attribute Window frames; |
| 127 | 127 |
| 128 [DoNotCheckSecurity, Custom=Setter] attribute Window opener; | 128 [DoNotCheckSecurity, Custom=Setter] attribute Window opener; |
| 129 [Replaceable, DoNotCheckSecurity] readonly attribute Window parent; | 129 [Replaceable, DoNotCheckSecurity] readonly attribute Window parent; |
| 130 [DoNotCheckSecurity, Unforgeable] readonly attribute Window top; | 130 [DoNotCheckSecurity, Unforgeable] readonly attribute Window top; |
| 131 | 131 |
| 132 [RaisesException, CallWith=ExecutionContext] Worker createAnimationWorker(DO
MString url); |
| 133 |
| 132 // DOM Level 2 AbstractView Interface | 134 // DOM Level 2 AbstractView Interface |
| 133 readonly attribute Document document; | 135 readonly attribute Document document; |
| 134 | 136 |
| 135 // CSSOM View Module | 137 // CSSOM View Module |
| 136 MediaQueryList matchMedia(DOMString query); | 138 MediaQueryList matchMedia(DOMString query); |
| 137 | 139 |
| 138 // styleMedia has been removed from the CSSOM View specification. | 140 // styleMedia has been removed from the CSSOM View specification. |
| 139 readonly attribute StyleMedia styleMedia; | 141 readonly attribute StyleMedia styleMedia; |
| 140 | 142 |
| 141 // DOM Level 2 Style Interface | 143 // DOM Level 2 Style Interface |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 // FIXME: make this typedef accurate once enough of http://crbug.com/240176 | 225 // FIXME: make this typedef accurate once enough of http://crbug.com/240176 |
| 224 // is in place. | 226 // is in place. |
| 225 // FIXME: consider putting this typedef in an .idl file containing spec-wide | 227 // FIXME: consider putting this typedef in an .idl file containing spec-wide |
| 226 // utility type definitions. | 228 // utility type definitions. |
| 227 typedef MessagePort Transferable; | 229 typedef MessagePort Transferable; |
| 228 | 230 |
| 229 Window implements GlobalEventHandlers; | 231 Window implements GlobalEventHandlers; |
| 230 Window implements WindowBase64; | 232 Window implements WindowBase64; |
| 231 Window implements WindowEventHandlers; | 233 Window implements WindowEventHandlers; |
| 232 Window implements WindowTimers; | 234 Window implements WindowTimers; |
| OLD | NEW |