aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/editor/clicktoeditwrapper_test.html
diff options
context:
space:
mode:
Diffstat (limited to 'contexts/data/lib/closure-library/closure/goog/editor/clicktoeditwrapper_test.html')
-rw-r--r--contexts/data/lib/closure-library/closure/goog/editor/clicktoeditwrapper_test.html137
1 files changed, 0 insertions, 137 deletions
diff --git a/contexts/data/lib/closure-library/closure/goog/editor/clicktoeditwrapper_test.html b/contexts/data/lib/closure-library/closure/goog/editor/clicktoeditwrapper_test.html
deleted file mode 100644
index 81f334f..0000000
--- a/contexts/data/lib/closure-library/closure/goog/editor/clicktoeditwrapper_test.html
+++ /dev/null
@@ -1,137 +0,0 @@
-<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 nicksantos@google.com (Nick Santos)
--->
-<head>
-<meta http-equiv="X-UA-Compatible" content="IE=edge">
-<title>goog.editor.ClickToEditWrapper Unit Tests</title>
-<script src='../base.js'></script>
-<script>
- goog.require('goog.editor.ClickToEditWrapper');
- goog.require('goog.editor.Field');
- goog.require('goog.editor.SeamlessField');
- goog.require('goog.testing.events');
- goog.require('goog.testing.jsunit');
- goog.require('goog.testing.MockClock');
-</script>
-</head>
-<body>
-<div id='root'>
-<div id="testField">I am text with a
-<a id='testAnchor' href='http://www.google.com'>link</a>.</div>
-</div>
-<script>
-
-var FIELD;
-var CLOCK;
-var HTML;
-
-function setUp() {
- HTML = goog.dom.getElement('root').innerHTML;
- CLOCK = new goog.testing.MockClock(true);
-
- // The following 3 lines are to get around an IE bug where it says
- // 'Incompatible markup pointers for this operation'.
- // Must be done in the setup, not teardown, or else it won't take effect for
- // the first test that is run, or any test that runs immediately after a
- // "breaking async" message from the jsunit framework.
- goog.dom.Range.clearSelection();
- window.blur();
- window.focus();
-}
-
-function setUpField(opt_isBlended) {
- FIELD = opt_isBlended ? new goog.editor.SeamlessField('testField') :
- new goog.editor.SeamlessField('testField');
-
- (new goog.editor.ClickToEditWrapper(FIELD));
-
- goog.dom.Range.clearSelection();
-}
-
-function tearDown() {
- if (FIELD) {
- FIELD.dispose();
- }
-
- CLOCK.dispose();
-
- goog.dom.getElement('root').innerHTML = HTML;
-}
-
-function testClickToEdit(opt_isBlended) {
- setUpField(opt_isBlended);
-
- var text = goog.dom.getElement('testField').firstChild;
- goog.dom.Range.createFromNodes(text, 4, text, 8).select();
-
- goog.testing.events.fireClickSequence(text.parentNode);
-
- assertFalse('Field should not be made editable immediately after clicking',
- FIELD.isLoaded());
- CLOCK.tick(1);
- assertTrue('Field should be editable', FIELD.isLoaded());
-
- var dom = FIELD.getEditableDomHelper();
- var selection = goog.dom.Range.createFromWindow(dom.getWindow());
-
- var body = FIELD.getElement();
- text = body.firstChild;
-
- assertEquals('Wrong start node', text, selection.getStartNode());
- assertEquals('Wrong end node', text, selection.getEndNode());
- assertEquals('Wrong start offset', 4, selection.getStartOffset());
- assertEquals('Wrong end offset', 8, selection.getEndOffset());
-}
-
-function testBlendedClickToEdit() {
- testClickToEdit(true);
-}
-
-
-function testClickToEditWithAnchor(opt_isBlended) {
- // We bail out if we are running on chrome+winxp because of flaky selenium
- // issues. TODO(user): Remove this assertion once we start running on the
- // JsUnit farm.
- if (goog.userAgent.product.CHROME && goog.userAgent.WINDOWS) {
- return;
- }
- setUpField(opt_isBlended);
-
- goog.dom.getElement('testAnchor').focus();
- goog.testing.events.fireClickSequence(goog.dom.getElement('testAnchor'));
-
- CLOCK.tick(1);
- assertTrue('Field should be editable', FIELD.isLoaded());
-
- var dom = FIELD.getEditableDomHelper();
- var selection = goog.dom.Range.createFromWindow(dom.getWindow());
-
- // IE and Gecko and Safari are all dumb and put the cursor
- // in different places.
- var body = FIELD.getElement();
- var text = body.firstChild;
- var link = dom.getElementsByTagNameAndClass('A', null, body)[0].firstChild;
- var isIEorWebkit = goog.userAgent.WEBKIT || goog.userAgent.IE;
- assertEquals('Wrong start node',
- isIEorWebkit ? text : link, selection.getStartNode());
- assertEquals('Wrong start offset',
- isIEorWebkit ? 17 : 0, selection.getStartOffset());
- assertEquals('Wrong end node',
- isIEorWebkit ? text : link, selection.getEndNode());
- assertEquals('Wrong end offset',
- isIEorWebkit ? 17 : 0, selection.getEndOffset());
-}
-
-function testBlendedClickToEditWithAnchor() {
- testClickToEditWithAnchor(true);
-}
-
-</script>
-</body>
-</html>