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

Unified Diff: Source/bindings/tests/idls/TestSpecialOperationsAnonymous.idl

Issue 217053007: Revert of Make DOMWrapperWorld::current() return a reference instead of a pointer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Revert 213543004 too Created 6 years, 9 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/TestSpecialOperationsAnonymous.idl
diff --git a/Source/bindings/tests/idls/SVGTestInterface.idl b/Source/bindings/tests/idls/TestSpecialOperationsAnonymous.idl
similarity index 79%
copy from Source/bindings/tests/idls/SVGTestInterface.idl
copy to Source/bindings/tests/idls/TestSpecialOperationsAnonymous.idl
index 6c7511ee8e707b5ab6df922d6764484dbb2b0e7d..560450bdc2ba388584656d76749ff4764f3d0e5a 100644
--- a/Source/bindings/tests/idls/SVGTestInterface.idl
+++ b/Source/bindings/tests/idls/TestSpecialOperationsAnonymous.idl
@@ -28,12 +28,14 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+interface TestSpecialOperationsAnonymous {
+ // Anonymous indexed property operations
+ getter DOMString (unsigned long index);
+ setter DOMString (unsigned long index, DOMString value);
+ deleter boolean (unsigned long index);
-// This test files starts with 'SVG' because /^SVG/ is used as a check
-// for SVG interfaces (to use SVGNames for [Reflect] attributes)
-[
- DependentLifetime,
-] interface SVGTestInterface {
- [Reflect] attribute DOMString type; // Test SVGNames namespace
- // [Immutable] attribute SVGPoint immutablePoint; // [Immutable] is a nop
+ // Anonymous named property operations
+ getter DOMString (DOMString name);
+ setter DOMString (DOMString name, DOMString value);
+ deleter boolean (DOMString name);
};
« no previous file with comments | « Source/bindings/tests/idls/TestSpecialOperations.idl ('k') | Source/bindings/tests/idls/TestSpecialOperationsCustom.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698