Sha256: 25bc8f9d2b221a4be612704941c80ad15c44bcb7323f93041d42e1d0ffab8796

Contents?: true

Size: 1.99 KB

Versions: 6

Compression:

Stored size: 1.99 KB

Contents

<!DOCTYPE html>
<html>
<!--
Copyright 2008 The Closure Library Authors. All Rights Reserved.

Use of this source code is governed by the Apache License, Version 2.0.
See the COPYING file for details.
-->
<!-- Author:  attila@google.com (Attila Bodis) -->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
  <title>Closure Unit Tests - goog.events.Event</title>
  <script src="../base.js"></script>
  <script>
    goog.require('goog.events.Event');
    goog.require('goog.events.EventTarget');
    goog.require('goog.testing.jsunit');
  </script>
</head>
<body>
  <script>
    var e, target;

    function setUp() {
      target = new goog.events.EventTarget();
      e = new goog.events.Event('eventType', target);
    }

    function tearDown() {
      target.dispose();
      e.dispose();
    }

    function testConstructor() {
      assertNotNull('Event must not be null', e);
      assertEquals('Event type must be as expected', 'eventType', e.type);
      assertEquals('Event target must be as expected', target, e.target);
      assertEquals('Current target must be as expected', target,
          e.currentTarget);
    }

    function testStopPropagation() {
      // This test breaks encapsulation because there is no public getter for
      // propagationStopped_.
      assertFalse('Propagation must not have been stopped',
          e.propagationStopped_);
      e.stopPropagation();
      assertTrue('Propagation must have been stopped', e.propagationStopped_);
    }

    function testPreventDefault() {
      // This test breaks encapsulation because there is no public getter for
      // returnValue_.
      assertTrue('Return value must be true', e.returnValue_);
      e.preventDefault();
      assertFalse('Return value must be false', e.returnValue_);
    }

    function testDefaultPrevented() {
      assertFalse('Default action must not be prevented', e.defaultPrevented);
      e.preventDefault();
      assertTrue('Default action must be prevented', e.defaultPrevented);
    }
  </script>
</body>
</html>

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
k4compiler-0.0.1 third_party/closure-library/closure/goog/events/event_test.html
middleman-wizard-template-1.0.4 lib/middleman-wizard-template/template/closure/library/closure/goog/events/event_test.html
middleman-wizard-template-1.0.3 lib/middleman-wizard-template/template/closure/library/closure/goog/events/event_test.html
middleman-wizard-template-1.0.2 lib/middleman-wizard-template/template/closure/library/closure/goog/events/event_test.html
middleman-wizard-template-1.0.1 lib/middleman-wizard-template/template/closure/library/closure/goog/events/event_test.html
middleman-wizard-template-1.0.0.pre.1 lib/middleman-wizard-template/template/closure/library/closure/goog/events/event_test.html