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

Unified Diff: Source/bindings/tests/idls/core/TestInterface2.idl

Issue 891633003: make window interceptors AllCanRead (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: test from issue Created 5 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 side-by-side diff with in-line comments
Download patch
Index: Source/bindings/tests/idls/core/TestInterface2.idl
diff --git a/Source/bindings/tests/idls/core/TestInterface2.idl b/Source/bindings/tests/idls/core/TestInterface2.idl
index 02de68e29664a71e36300530d76c6c301c373c3d..c1f3d20e0117f4fe868e969f3177747e10c9592b 100644
--- a/Source/bindings/tests/idls/core/TestInterface2.idl
+++ b/Source/bindings/tests/idls/core/TestInterface2.idl
@@ -45,12 +45,12 @@
[RuntimeEnabled=FeatureName] const unsigned short CONST_VALUE_1 = 1;
// Indexed property operations with an identifier
- [RaisesException] getter TestInterfaceEmpty item(unsigned long index);
+ [RaisesException, AllCanRead] getter TestInterfaceEmpty item(unsigned long index);
[RaisesException, TypeChecking=Interface] setter TestInterfaceEmpty setItem(unsigned long index, TestInterfaceEmpty value);
[RaisesException] deleter boolean deleteItem(unsigned long index);
// Named property operations with an identifier
- [RaisesException] getter TestInterfaceEmpty namedItem(DOMString name);
+ [RaisesException, AllCanRead] getter TestInterfaceEmpty namedItem(DOMString name);
[RaisesException, TypeChecking=Interface] setter TestInterfaceEmpty setNamedItem(DOMString name, TestInterfaceEmpty? value);
[RaisesException] deleter boolean deleteNamedItem(DOMString name);
« no previous file with comments | « Source/bindings/templates/interface_base.cpp ('k') | Source/bindings/tests/results/core/V8TestInterface.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698