Index: bindings/tests/idls/core/TestInterfaceCheckSecurity.idl |
diff --git a/bindings/tests/idls/core/TestInterfaceCheckSecurity.idl b/bindings/tests/idls/core/TestInterfaceCheckSecurity.idl |
index 8fac9b8ed59fd6bea029480569289a37bbc929cb..56ead637fe141a5941fe4198339cb72a6eec7ce1 100644 |
--- a/bindings/tests/idls/core/TestInterfaceCheckSecurity.idl |
+++ b/bindings/tests/idls/core/TestInterfaceCheckSecurity.idl |
@@ -29,13 +29,15 @@ |
[ |
CheckSecurity=Frame, |
] interface TestInterfaceCheckSecurity { |
- readonly attribute long longAttribute; |
+ readonly attribute long readonlyLongAttribute; |
+ attribute long longAttribute; |
void voidMethod(); |
[DoNotCheckSecurity] attribute long doNotCheckSecurityLongAttribute; |
[DoNotCheckSecurity] readonly attribute long doNotCheckSecurityReadonlyLongAttribute; // Separate read only attribute to check attribute configuration |
[DoNotCheckSecurity=Setter] attribute long doNotCheckSecurityOnSetterLongAttribute; |
[DoNotCheckSecurity, Replaceable] readonly attribute long doNotCheckSecurityReplaceableReadonlyLongAttribute; |
+ [DoNotCheckSecurity, Replaceable, ExposeJSAccessors] readonly attribute long doNotCheckSecurityReplaceableReadonlyLongAccessor; |
[DoNotCheckSecurity] void doNotCheckSecurityVoidMethod(); |
[DoNotCheckSecurity, DoNotCheckSignature] void doNotCheckSecurityDoNotCheckSignatureVoidMethod(); |