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

Side by Side Diff: third_party/WebCore/page/DOMWindow.idl

Issue 10800075: Roll IDL to multivm@713 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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 | Annotate | Revision Log
OLDNEW
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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 attribute DOMString defaultstatus; 128 attribute DOMString defaultstatus;
129 #endif 129 #endif
130 130
131 // Self referential attributes 131 // Self referential attributes
132 attribute [Replaceable, DoNotCheckSecurityOnGetter] DOMWindow self; 132 attribute [Replaceable, DoNotCheckSecurityOnGetter] DOMWindow self;
133 readonly attribute [DoNotCheckSecurity, V8Unforgeable] DOMWindow window; 133 readonly attribute [DoNotCheckSecurity, V8Unforgeable] DOMWindow window;
134 attribute [Replaceable, DoNotCheckSecurityOnGetter] DOMWindow frames; 134 attribute [Replaceable, DoNotCheckSecurityOnGetter] DOMWindow frames;
135 135
136 attribute [Replaceable, DoNotCheckSecurityOnGetter, V8CustomSetter] DOMW indow opener; 136 attribute [Replaceable, DoNotCheckSecurityOnGetter, V8CustomSetter] DOMW indow opener;
137 attribute [Replaceable, DoNotCheckSecurityOnGetter] DOMWindow parent; 137 attribute [Replaceable, DoNotCheckSecurityOnGetter] DOMWindow parent;
138 attribute [Replaceable, DoNotCheckSecurityOnGetter, V8Unforgeable, V8Rea dOnly] DOMWindow top; 138 readonly attribute [DoNotCheckSecurityOnGetter, V8Unforgeable] DOMWindow top;
139 139
140 // DOM Level 2 AbstractView Interface 140 // DOM Level 2 AbstractView Interface
141 readonly attribute Document document; 141 readonly attribute Document document;
142 142
143 // CSSOM View Module 143 // CSSOM View Module
144 MediaQueryList matchMedia(in DOMString query); 144 MediaQueryList matchMedia(in DOMString query);
145 145
146 // styleMedia has been removed from the CSSOM View specification. 146 // styleMedia has been removed from the CSSOM View specification.
147 readonly attribute StyleMedia styleMedia; 147 readonly attribute StyleMedia styleMedia;
148 148
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 attribute HTMLAnchorElementConstructor HTMLAnchorElement; 399 attribute HTMLAnchorElementConstructor HTMLAnchorElement;
400 attribute HTMLAppletElementConstructor HTMLAppletElement; 400 attribute HTMLAppletElementConstructor HTMLAppletElement;
401 attribute HTMLAreaElementConstructor HTMLAreaElement; 401 attribute HTMLAreaElementConstructor HTMLAreaElement;
402 attribute HTMLBRElementConstructor HTMLBRElement; 402 attribute HTMLBRElementConstructor HTMLBRElement;
403 attribute HTMLBaseElementConstructor HTMLBaseElement; 403 attribute HTMLBaseElementConstructor HTMLBaseElement;
404 attribute HTMLBaseFontElementConstructor HTMLBaseFontElement; 404 attribute HTMLBaseFontElementConstructor HTMLBaseFontElement;
405 attribute HTMLBodyElementConstructor HTMLBodyElement; 405 attribute HTMLBodyElementConstructor HTMLBodyElement;
406 attribute HTMLButtonElementConstructor HTMLButtonElement; 406 attribute HTMLButtonElementConstructor HTMLButtonElement;
407 attribute HTMLCanvasElementConstructor HTMLCanvasElement; 407 attribute HTMLCanvasElementConstructor HTMLCanvasElement;
408 attribute HTMLDListElementConstructor HTMLDListElement; 408 attribute HTMLDListElementConstructor HTMLDListElement;
409 attribute [Conditional=DATALIST] HTMLDataListElementConstructor HTMLData ListElement; 409 attribute [Conditional=DATALIST_ELEMENT] HTMLDataListElementConstructor HTMLDataListElement;
410 attribute [Conditional=DIALOG_ELEMENT, V8EnabledPerContext=dialogElement ] HTMLDialogElementConstructor HTMLDialogElement; 410 attribute [Conditional=DIALOG_ELEMENT, V8EnabledPerContext=dialogElement ] HTMLDialogElementConstructor HTMLDialogElement;
411 attribute HTMLDirectoryElementConstructor HTMLDirectoryElement; 411 attribute HTMLDirectoryElementConstructor HTMLDirectoryElement;
412 attribute HTMLDivElementConstructor HTMLDivElement; 412 attribute HTMLDivElementConstructor HTMLDivElement;
413 attribute HTMLEmbedElementConstructor HTMLEmbedElement; 413 attribute HTMLEmbedElementConstructor HTMLEmbedElement;
414 attribute HTMLFieldSetElementConstructor HTMLFieldSetElement; 414 attribute HTMLFieldSetElementConstructor HTMLFieldSetElement;
415 attribute HTMLFontElementConstructor HTMLFontElement; 415 attribute HTMLFontElementConstructor HTMLFontElement;
416 attribute HTMLFormElementConstructor HTMLFormElement; 416 attribute HTMLFormElementConstructor HTMLFormElement;
417 attribute HTMLFrameElementConstructor HTMLFrameElement; 417 attribute HTMLFrameElementConstructor HTMLFrameElement;
418 attribute HTMLFrameSetElementConstructor HTMLFrameSetElement; 418 attribute HTMLFrameSetElementConstructor HTMLFrameSetElement;
419 attribute HTMLHRElementConstructor HTMLHRElement; 419 attribute HTMLHRElementConstructor HTMLHRElement;
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
784 #endif // defined(LANGUAGE_JAVASCRIPT) 784 #endif // defined(LANGUAGE_JAVASCRIPT)
785 785
786 #if defined(V8_BINDING) && V8_BINDING 786 #if defined(V8_BINDING) && V8_BINDING
787 // window.toString() requires special handling in V8 787 // window.toString() requires special handling in V8
788 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMSt ring toString(); 788 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMSt ring toString();
789 #endif // defined(V8_BINDING) 789 #endif // defined(V8_BINDING)
790 }; 790 };
791 791
792 } 792 }
793 793
OLDNEW
« no previous file with comments | « third_party/WebCore/inspector/InjectedScriptHost.idl ('k') | third_party/WebCore/page/NavigatorRegisterProtocolHandler.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698