Sha256: 322a7fe2ce91d89792937e97d9601da434e2bbef6cd36ef85d1c208bc741f3aa

Contents?: true

Size: 1.46 KB

Versions: 22

Compression:

Stored size: 1.46 KB

Contents

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<title>Plugin: selection</title>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<link rel="stylesheet" type="text/css" href="../../test.css" />
	<script type="text/javascript" src="../../../ckeditor.js"></script>
	<script type="text/javascript" src="../../test.js"></script>
	<script type="text/javascript">
//<![CDATA[
CKEDITOR.plugins.load( [ 'selection' ] );
//]]>
	</script>
	<script type="text/javascript">
//<![CDATA[
CKEDITOR.test.addTestCase( (function()
{
	var assert = CKEDITOR.test.assert;
	var doc = new CKEDITOR.dom.document( document );

	return {
		test_selection_ie : function()
		{
			if ( !CKEDITOR.env.ie )
				return;

			var $range = document.body.createTextRange();
			$range.findText( 'This' );
			$range.select();

			var range = doc.getSelection().getRanges()[ 0 ];
			range.select();

			var $range2 = document.selection.createRange();
			assert.areSame( 0, $range.compareEndPoints( 'StartToStart', $range2 ), 'StartToStart' );
			assert.areSame( 0, $range.compareEndPoints( 'EndToEnd', $range2 ), 'EndToEnd' );
		},

		name : document.title
	};
})());
//]]>
	</script>
</head>
<body>
	<p>
		This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">CKEditor</a>.</p>
</body>
</html>

Version data entries

22 entries across 22 versions & 6 rubygems

Version Path
browsercms-3.3.4 public/bcms/ckeditor/tests/plugins/selection/selection.html
browsercms-3.4.0.rc2 vendor/assets/javascripts/bcms/ckeditor/tests/plugins/selection/selection.html
browsercms-3.4.0.rc1 vendor/assets/javascripts/bcms/ckeditor/tests/plugins/selection/selection.html
browsercms-3.3.3 public/bcms/ckeditor/tests/plugins/selection/selection.html
browsercms-3.1.5 public/bcms/ckeditor/tests/plugins/selection/selection.html
browsercms-3.1.4 public/bcms/ckeditor/tests/plugins/selection/selection.html
browsercms-3.3.2 public/bcms/ckeditor/tests/plugins/selection/selection.html
browsercms-3.3.1 public/bcms/ckeditor/tests/plugins/selection/selection.html
browsercms-3.3.0 public/bcms/ckeditor/tests/plugins/selection/selection.html
browsercms-3.1.3 public/bcms/ckeditor/tests/plugins/selection/selection.html
browsercms-3.3.0.beta public/bcms/ckeditor/tests/plugins/selection/selection.html
bcms_content_syncing-1.0.0 public/bcms/ckeditor/tests/plugins/selection/selection.html
drujensen-browsercms-3.2.0 public/bcms/ckeditor/tests/plugins/selection/selection.html
browsercmsi-3.1.2 public/bcms/ckeditor/tests/plugins/selection/selection.html
browsercms-3.1.2 public/bcms/ckeditor/tests/plugins/selection/selection.html
browsercms-3.1.1 public/bcms/ckeditor/tests/plugins/selection/selection.html
browsercmsi-3.1.1 public/bcms/ckeditor/tests/plugins/selection/selection.html
browsercmsi-3.1.0 public/bcms/ckeditor/tests/plugins/selection/selection.html
browsercms-3.1.0 public/bcms/ckeditor/tests/plugins/selection/selection.html
bcms_fckeditor-1.0.1 public/bcms/ckeditor/tests/plugins/selection/selection.html