aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/editor/plugins/undoredostate_test.html
diff options
context:
space:
mode:
Diffstat (limited to 'contexts/data/lib/closure-library/closure/goog/editor/plugins/undoredostate_test.html')
-rw-r--r--contexts/data/lib/closure-library/closure/goog/editor/plugins/undoredostate_test.html44
1 files changed, 0 insertions, 44 deletions
diff --git a/contexts/data/lib/closure-library/closure/goog/editor/plugins/undoredostate_test.html b/contexts/data/lib/closure-library/closure/goog/editor/plugins/undoredostate_test.html
deleted file mode 100644
index 80ec4ea..0000000
--- a/contexts/data/lib/closure-library/closure/goog/editor/plugins/undoredostate_test.html
+++ /dev/null
@@ -1,44 +0,0 @@
-goog.editor.plugins<!DOCTYPE html>
-<!--
- All Rights Reserved.
-
- @author ajp@google.com (Andy Perelson)
--->
-<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.
--->
-<head>
-<meta http-equiv="X-UA-Compatible" content="IE=edge">
-<title>Trogedit Unit Tests - goog.editor.plugins.UndoRedoState</title>
-<script src="../../base.js"></script>
-<script>
- goog.require('goog.testing.jsunit');
- goog.require('goog.editor.plugins.UndoRedoState');
-</script>
-</head>
-<body>
-
-<script>
-
-var asyncState;
-var syncState;
-
-function setUp() {
- asyncState = new goog.editor.plugins.UndoRedoState(true);
- syncState = new goog.editor.plugins.UndoRedoState(false);
-}
-
-function testIsAsynchronous() {
- assertTrue('Must return true for asynchronous state',
- asyncState.isAsynchronous());
- assertFalse('Must return false for synchronous state',
- syncState.isAsynchronous());
-}
-
-</script>
-</body>
-</html>