eventtarget_via_w3cinterface_test.js 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // Copyright 2006 The Closure Library Authors. All Rights Reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS-IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. goog.provide('goog.events.EventTargetW3CTest');
  15. goog.setTestOnly('goog.events.EventTargetW3CTest');
  16. goog.require('goog.events.EventTarget');
  17. goog.require('goog.events.eventTargetTester');
  18. goog.require('goog.events.eventTargetTester.KeyType');
  19. goog.require('goog.events.eventTargetTester.UnlistenReturnType');
  20. goog.require('goog.testing.jsunit');
  21. function setUp() {
  22. var newListenableFn = function() { return new goog.events.EventTarget(); };
  23. var listenFn = function(src, type, listener, opt_capt, opt_handler) {
  24. src.addEventListener(type, listener, opt_capt, opt_handler);
  25. };
  26. var unlistenFn = function(src, type, listener, opt_capt, opt_handler) {
  27. src.removeEventListener(type, listener, opt_capt, opt_handler);
  28. };
  29. var dispatchEventFn = function(src, e) { return src.dispatchEvent(e); };
  30. goog.events.eventTargetTester.setUp(
  31. newListenableFn, listenFn, unlistenFn, null /* unlistenByKeyFn */,
  32. null /* listenOnceFn */, dispatchEventFn, null /* removeAllFn */,
  33. null /* getListenersFn */, null /* getListenerFn */,
  34. null /* hasListenerFn */, goog.events.eventTargetTester.KeyType.UNDEFINED,
  35. goog.events.eventTargetTester.UnlistenReturnType.UNDEFINED, true);
  36. }
  37. function tearDown() {
  38. goog.events.eventTargetTester.tearDown();
  39. }