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

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

Issue 9370040: Merge 107046 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 years, 10 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 | « LayoutTests/http/tests/security/resources/cross-frame-access-frameelement-from-iframe.html ('k') | 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 /* 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 attribute [Replaceable] Navigator navigator; 54 attribute [Replaceable] Navigator navigator;
55 attribute [Replaceable] Navigator clientInformation; 55 attribute [Replaceable] Navigator clientInformation;
56 readonly attribute Crypto crypto; 56 readonly attribute Crypto crypto;
57 attribute [DoNotCheckDomainSecurity, JSCCustom, V8CustomSetter, V8Disall owShadowing, CPPCustom] Location location; 57 attribute [DoNotCheckDomainSecurity, JSCCustom, V8CustomSetter, V8Disall owShadowing, CPPCustom] Location location;
58 58
59 attribute [Replaceable, CustomGetter, V8CustomSetter] Event event; 59 attribute [Replaceable, CustomGetter, V8CustomSetter] Event event;
60 60
61 61
62 DOMSelection getSelection(); 62 DOMSelection getSelection();
63 63
64 readonly attribute [CheckNodeSecurity] Element frameElement; 64 readonly attribute [CheckAccessToNode] Element frameElement;
65 65
66 [DoNotCheckDomainSecurity] void focus(); 66 [DoNotCheckDomainSecurity] void focus();
67 [DoNotCheckDomainSecurity] void blur(); 67 [DoNotCheckDomainSecurity] void blur();
68 [DoNotCheckDomainSecurity, CallWith=ScriptExecutionContext] void close() ; 68 [DoNotCheckDomainSecurity, CallWith=ScriptExecutionContext] void close() ;
69 69
70 void print(); 70 void print();
71 void stop(); 71 void stop();
72 72
73 [Custom] DOMWindow open(in DOMString url, 73 [Custom] DOMWindow open(in DOMString url,
74 in DOMString name, 74 in DOMString name,
(...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 #endif // defined(LANGUAGE_JAVASCRIPT) 795 #endif // defined(LANGUAGE_JAVASCRIPT)
796 796
797 #if defined(V8_BINDING) && V8_BINDING 797 #if defined(V8_BINDING) && V8_BINDING
798 // window.toString() requires special handling in V8 798 // window.toString() requires special handling in V8
799 [V8DoNotCheckSignature, DoNotCheckDomainSecurity, Custom, DontEnum] DOMS tring toString(); 799 [V8DoNotCheckSignature, DoNotCheckDomainSecurity, Custom, DontEnum] DOMS tring toString();
800 #endif // defined(V8_BINDING) 800 #endif // defined(V8_BINDING)
801 }; 801 };
802 802
803 } 803 }
804 804
OLDNEW
« no previous file with comments | « LayoutTests/http/tests/security/resources/cross-frame-access-frameelement-from-iframe.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698